nilaybhatt commited on
Commit
9ef250a
·
verified ·
1 Parent(s): fcb23f0

Upload fine-tuned spaCy BioClinicalBERT span categorizer

Browse files
Files changed (11) hide show
  1. .gitattributes +1 -0
  2. config.cfg +145 -0
  3. meta.json +39 -0
  4. spancat/cfg +16 -0
  5. spancat/model +3 -0
  6. tokenizer +3 -0
  7. vocab/key2row +1 -0
  8. vocab/lookups.bin +3 -0
  9. vocab/strings.json +3443 -0
  10. vocab/vectors +0 -0
  11. vocab/vectors.cfg +3 -0
.gitattributes CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ spancat/model filter=lfs diff=lfs merge=lfs -text
config.cfg ADDED
@@ -0,0 +1,145 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [paths]
2
+ train = null
3
+ dev = null
4
+ vectors = null
5
+ init_tok2vec = null
6
+
7
+ [system]
8
+ seed = 0
9
+ gpu_allocator = null
10
+
11
+ [nlp]
12
+ lang = "en"
13
+ pipeline = ["spancat"]
14
+ disabled = []
15
+ before_creation = null
16
+ after_creation = null
17
+ after_pipeline_creation = null
18
+ batch_size = 1000
19
+ tokenizer = {"@tokenizers":"spacy.Tokenizer.v1"}
20
+ vectors = {"@vectors":"spacy.Vectors.v1"}
21
+
22
+ [components]
23
+
24
+ [components.spancat]
25
+ factory = "spancat"
26
+ max_positive = null
27
+ scorer = {"@scorers":"spacy.spancat_scorer.v1"}
28
+ spans_key = "sc"
29
+ threshold = 0.35
30
+
31
+ [components.spancat.model]
32
+ @architectures = "spacy.SpanCategorizer.v1"
33
+
34
+ [components.spancat.model.reducer]
35
+ @layers = "spacy.mean_max_reducer.v1"
36
+ hidden_size = 128
37
+
38
+ [components.spancat.model.scorer]
39
+ @layers = "spacy.LinearLogistic.v1"
40
+ nO = null
41
+ nI = null
42
+
43
+ [components.spancat.model.tok2vec]
44
+ @architectures = "spacy-transformers.Tok2VecTransformer.v3"
45
+ name = "emilyalsentzer/Bio_ClinicalBERT"
46
+ grad_factor = 1.0
47
+ pooling = {"@layers":"reduce_mean.v1"}
48
+ mixed_precision = false
49
+
50
+ [components.spancat.model.tok2vec.get_spans]
51
+ @span_getters = "spacy-transformers.strided_spans.v1"
52
+ window = 128
53
+ stride = 96
54
+
55
+ [components.spancat.model.tok2vec.grad_scaler_config]
56
+
57
+ [components.spancat.model.tok2vec.tokenizer_config]
58
+ use_fast = true
59
+
60
+ [components.spancat.model.tok2vec.transformer_config]
61
+
62
+ [components.spancat.suggester]
63
+ @misc = "spacy.ngram_suggester.v1"
64
+ sizes = [1,2,3,4,5,6]
65
+
66
+ [corpora]
67
+
68
+ [corpora.dev]
69
+ @readers = "spacy.Corpus.v1"
70
+ path = ${paths.dev}
71
+ gold_preproc = false
72
+ max_length = 0
73
+ limit = 0
74
+ augmenter = null
75
+
76
+ [corpora.train]
77
+ @readers = "spacy.Corpus.v1"
78
+ path = ${paths.train}
79
+ gold_preproc = false
80
+ max_length = 0
81
+ limit = 0
82
+ augmenter = null
83
+
84
+ [training]
85
+ seed = ${system.seed}
86
+ gpu_allocator = ${system.gpu_allocator}
87
+ dropout = 0.1
88
+ accumulate_gradient = 1
89
+ patience = 1600
90
+ max_epochs = 0
91
+ max_steps = 20000
92
+ eval_frequency = 200
93
+ frozen_components = []
94
+ annotating_components = []
95
+ dev_corpus = "corpora.dev"
96
+ train_corpus = "corpora.train"
97
+ before_to_disk = null
98
+ before_update = null
99
+
100
+ [training.batcher]
101
+ @batchers = "spacy.batch_by_words.v1"
102
+ discard_oversize = false
103
+ tolerance = 0.2
104
+ get_length = null
105
+
106
+ [training.batcher.size]
107
+ @schedules = "compounding.v1"
108
+ start = 100
109
+ stop = 1000
110
+ compound = 1.001
111
+ t = 0.0
112
+
113
+ [training.logger]
114
+ @loggers = "spacy.ConsoleLogger.v1"
115
+ progress_bar = false
116
+
117
+ [training.optimizer]
118
+ @optimizers = "Adam.v1"
119
+ beta1 = 0.9
120
+ beta2 = 0.999
121
+ L2_is_weight_decay = true
122
+ L2 = 0.01
123
+ grad_clip = 1.0
124
+ use_averages = false
125
+ eps = 0.00000001
126
+ learn_rate = 0.001
127
+
128
+ [training.score_weights]
129
+ spans_sc_f = 1.0
130
+ spans_sc_p = 0.0
131
+ spans_sc_r = 0.0
132
+
133
+ [pretraining]
134
+
135
+ [initialize]
136
+ vectors = ${paths.vectors}
137
+ init_tok2vec = ${paths.init_tok2vec}
138
+ vocab_data = null
139
+ lookups = null
140
+ before_init = null
141
+ after_init = null
142
+
143
+ [initialize.components]
144
+
145
+ [initialize.tokenizer]
meta.json ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lang":"en",
3
+ "name":"pipeline",
4
+ "version":"0.0.0",
5
+ "spacy_version":">=3.8.7,<3.9.0",
6
+ "description":"",
7
+ "author":"",
8
+ "email":"",
9
+ "url":"",
10
+ "license":"",
11
+ "spacy_git_version":"4b65aa7",
12
+ "vectors":{
13
+ "width":0,
14
+ "vectors":0,
15
+ "keys":0,
16
+ "name":null,
17
+ "mode":"default"
18
+ },
19
+ "labels":{
20
+ "spancat":[
21
+ "ACTION",
22
+ "EMOTION",
23
+ "LOCATION",
24
+ "SENSORY",
25
+ "SOCIAL_INTERACTION",
26
+ "THOUGHT",
27
+ "TIME"
28
+ ]
29
+ },
30
+ "pipeline":[
31
+ "spancat"
32
+ ],
33
+ "components":[
34
+ "spancat"
35
+ ],
36
+ "disabled":[
37
+
38
+ ]
39
+ }
spancat/cfg ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "labels":[
3
+ "ACTION",
4
+ "EMOTION",
5
+ "LOCATION",
6
+ "SENSORY",
7
+ "SOCIAL_INTERACTION",
8
+ "THOUGHT",
9
+ "TIME"
10
+ ],
11
+ "spans_key":"sc",
12
+ "threshold":0.55,
13
+ "max_positive":null,
14
+ "negative_weight":null,
15
+ "allow_overlap":true
16
+ }
spancat/model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:02b7457bf919518b7ac4ed2191f67cb59b0ed1f66c20799f5cbed583e6c48262
3
+ size 438929317
tokenizer ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ ��prefix_search� �^§|^%|^=|^—|^–|^\+(?![0-9])|^…|^……|^,|^:|^;|^\!|^\?|^¿|^؟|^¡|^\(|^\)|^\[|^\]|^\{|^\}|^<|^>|^_|^#|^\*|^&|^。|^?|^!|^,|^、|^;|^:|^~|^·|^।|^،|^۔|^؛|^٪|^\.\.+|^…|^\'|^"|^”|^“|^`|^‘|^´|^’|^‚|^,|^„|^»|^«|^「|^」|^『|^』|^(|^)|^〔|^〕|^【|^】|^《|^》|^〈|^〉|^〈|^〉|^⟦|^⟧|^\$|^£|^€|^¥|^฿|^US\$|^C\$|^A\$|^₽|^﷼|^₴|^₠|^₡|^₢|^₣|^₤|^₥|^₦|^₧|^₨|^₩|^₪|^₫|^€|^₭|^₮|^₯|^₰|^₱|^₲|^₳|^₴|^₵|^₶|^₷|^₸|^₹|^₺|^₻|^₼|^₽|^₾|^₿|^[\u00A6\u00A9\u00AE\u00B0\u0482\u058D\u058E\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u09FA\u0B70\u0BF3-\u0BF8\u0BFA\u0C7F\u0D4F\u0D79\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116\u2117\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u214A\u214C\u214D\u214F\u218A\u218B\u2195-\u2199\u219C-\u219F\u21A1\u21A2\u21A4\u21A5\u21A7-\u21AD\u21AF-\u21CD\u21D0\u21D1\u21D3\u21D5-\u21F3\u2300-\u2307\u230C-\u231F\u2322-\u2328\u232B-\u237B\u237D-\u239A\u23B4-\u23DB\u23E2-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u25B6\u25B8-\u25C0\u25C2-\u25F7\u2600-\u266E\u2670-\u2767\u2794-\u27BF\u2800-\u28FF\u2B00-\u2B2F\u2B45\u2B46\u2B4D-\u2B73\u2B76-\u2B95\u2B98-\u2BC8\u2BCA-\u2BFE\u2CE5-\u2CEA\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u32FE\u3300-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA828-\uA82B\uA836\uA837\uA839\uAA77-\uAA79\uFDFD\uFFE4\uFFE8\uFFED\uFFEE\uFFFC\uFFFD\U00010137-\U0001013F\U00010179-\U00010189\U0001018C-\U0001018E\U00010190-\U0001019B\U000101A0\U000101D0-\U000101FC\U00010877\U00010878\U00010AC8\U0001173F\U00016B3C-\U00016B3F\U00016B45\U0001BC9C\U0001D000-\U0001D0F5\U0001D100-\U0001D126\U0001D129-\U0001D164\U0001D16A-\U0001D16C\U0001D183\U0001D184\U0001D18C-\U0001D1A9\U0001D1AE-\U0001D1E8\U0001D200-\U0001D241\U0001D245\U0001D300-\U0001D356\U0001D800-\U0001D9FF\U0001DA37-\U0001DA3A\U0001DA6D-\U0001DA74\U0001DA76-\U0001DA83\U0001DA85\U0001DA86\U0001ECAC\U0001F000-\U0001F02B\U0001F030-\U0001F093\U0001F0A0-\U0001F0AE\U0001F0B1-\U0001F0BF\U0001F0C1-\U0001F0CF\U0001F0D1-\U0001F0F5\U0001F110-\U0001F16B\U0001F170-\U0001F1AC\U0001F1E6-\U0001F202\U0001F210-\U0001F23B\U0001F240-\U0001F248\U0001F250\U0001F251\U0001F260-\U0001F265\U0001F300-\U0001F3FA\U0001F400-\U0001F6D4\U0001F6E0-\U0001F6EC\U0001F6F0-\U0001F6F9\U0001F700-\U0001F773\U0001F780-\U0001F7D8\U0001F800-\U0001F80B\U0001F810-\U0001F847\U0001F850-\U0001F859\U0001F860-\U0001F887\U0001F890-\U0001F8AD\U0001F900-\U0001F90B\U0001F910-\U0001F93E\U0001F940-\U0001F970\U0001F973-\U0001F976\U0001F97A\U0001F97C-\U0001F9A2\U0001F9B0-\U0001F9B9\U0001F9C0-\U0001F9C2\U0001F9D0-\U0001F9FF\U0001FA60-\U0001FA6D]�suffix_search�2�…$|……$|,$|:$|;$|\!$|\?$|¿$|؟$|¡$|\($|\)$|\[$|\]$|\{$|\}$|<$|>$|_$|#$|\*$|&$|。$|?$|!$|,$|、$|;$|:$|~$|·$|।$|،$|۔$|؛$|٪$|\.\.+$|…$|\'$|"$|”$|“$|`$|‘$|´$|’$|‚$|,$|„$|»$|«$|「$|」$|『$|』$|($|)$|〔$|〕$|【$|】$|《$|》$|〈$|〉$|〈$|〉$|⟦$|⟧$|[\u00A6\u00A9\u00AE\u00B0\u0482\u058D\u058E\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u09FA\u0B70\u0BF3-\u0BF8\u0BFA\u0C7F\u0D4F\u0D79\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116\u2117\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u214A\u214C\u214D\u214F\u218A\u218B\u2195-\u2199\u219C-\u219F\u21A1\u21A2\u21A4\u21A5\u21A7-\u21AD\u21AF-\u21CD\u21D0\u21D1\u21D3\u21D5-\u21F3\u2300-\u2307\u230C-\u231F\u2322-\u2328\u232B-\u237B\u237D-\u239A\u23B4-\u23DB\u23E2-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u25B6\u25B8-\u25C0\u25C2-\u25F7\u2600-\u266E\u2670-\u2767\u2794-\u27BF\u2800-\u28FF\u2B00-\u2B2F\u2B45\u2B46\u2B4D-\u2B73\u2B76-\u2B95\u2B98-\u2BC8\u2BCA-\u2BFE\u2CE5-\u2CEA\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u32FE\u3300-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA828-\uA82B\uA836\uA837\uA839\uAA77-\uAA79\uFDFD\uFFE4\uFFE8\uFFED\uFFEE\uFFFC\uFFFD\U00010137-\U0001013F\U00010179-\U00010189\U0001018C-\U0001018E\U00010190-\U0001019B\U000101A0\U000101D0-\U000101FC\U00010877\U00010878\U00010AC8\U0001173F\U00016B3C-\U00016B3F\U00016B45\U0001BC9C\U0001D000-\U0001D0F5\U0001D100-\U0001D126\U0001D129-\U0001D164\U0001D16A-\U0001D16C\U0001D183\U0001D184\U0001D18C-\U0001D1A9\U0001D1AE-\U0001D1E8\U0001D200-\U0001D241\U0001D245\U0001D300-\U0001D356\U0001D800-\U0001D9FF\U0001DA37-\U0001DA3A\U0001DA6D-\U0001DA74\U0001DA76-\U0001DA83\U0001DA85\U0001DA86\U0001ECAC\U0001F000-\U0001F02B\U0001F030-\U0001F093\U0001F0A0-\U0001F0AE\U0001F0B1-\U0001F0BF\U0001F0C1-\U0001F0CF\U0001F0D1-\U0001F0F5\U0001F110-\U0001F16B\U0001F170-\U0001F1AC\U0001F1E6-\U0001F202\U0001F210-\U0001F23B\U0001F240-\U0001F248\U0001F250\U0001F251\U0001F260-\U0001F265\U0001F300-\U0001F3FA\U0001F400-\U0001F6D4\U0001F6E0-\U0001F6EC\U0001F6F0-\U0001F6F9\U0001F700-\U0001F773\U0001F780-\U0001F7D8\U0001F800-\U0001F80B\U0001F810-\U0001F847\U0001F850-\U0001F859\U0001F860-\U0001F887\U0001F890-\U0001F8AD\U0001F900-\U0001F90B\U0001F910-\U0001F93E\U0001F940-\U0001F970\U0001F973-\U0001F976\U0001F97A\U0001F97C-\U0001F9A2\U0001F9B0-\U0001F9B9\U0001F9C0-\U0001F9C2\U0001F9D0-\U0001F9FF\U0001FA60-\U0001FA6D]$|'s$|'S$|’s$|’S$|—$|–$|(?<=[0-9])\+$|(?<=°[FfCcKk])\.$|(?<=[0-9])(?:\$|£|€|¥|฿|US\$|C\$|A\$|₽|﷼|₴|₠|₡|₢|₣|₤|₥|₦|₧|₨|₩|₪|₫|€|₭|₮|₯|₰|₱|₲|₳|₴|₵|₶|₷|₸|₹|₺|₻|₼|₽|₾|₿)$|(?<=[0-9])(?:km|km²|km³|m|m²|m³|dm|dm²|dm³|cm|cm²|cm³|mm|mm²|mm³|ha|µm|nm|yd|in|ft|kg|g|mg|µg|t|lb|oz|m/s|km/h|kmh|mph|hPa|Pa|mbar|mb|MB|kb|KB|gb|GB|tb|TB|T|G|M|K|%|км|км²|км³|м|м²|м³|дм|дм²|дм³|см|см²|см³|мм|мм²|мм³|нм|кг|г|мг|м/с|км/ч|кПа|Па|мбар|Кб|КБ|кб|Мб|МБ|мб|Гб|ГБ|гб|Тб|ТБ|тбكم|كم²|كم³|م|م²|م³|سم|سم²|سم³|مم|مم²|مم³|كم|غرام|جرام|جم|كغ|ملغ|كوب|اكواب)$|(?<=[0-9a-z\uFF41-\uFF5A\u00DF-\u00F6\u00F8-\u00FF\u0101\u0103\u0105\u0107\u0109\u010B\u010D\u010F\u0111\u0113\u0115\u0117\u0119\u011B\u011D\u011F\u0121\u0123\u0125\u0127\u0129\u012B\u012D\u012F\u0131\u0133\u0135\u0137\u0138\u013A\u013C\u013E\u0140\u0142\u0144\u0146\u0148\u0149\u014B\u014D\u014F\u0151\u0153\u0155\u0157\u0159\u015B\u015D\u015F\u0161\u0163\u0165\u0167\u0169\u016B\u016D\u016F\u0171\u0173\u0175\u0177\u017A\u017C\u017E\u017F\u0180\u0183\u0185\u0188\u018C\u018D\u0192\u0195\u0199-\u019B\u019E\u01A1\u01A3\u01A5\u01A8\u01AA\u01AB\u01AD\u01B0\u01B4\u01B6\u01B9\u01BA\u01BD-\u01BF\u01C6\u01C9\u01CC\u01CE\u01D0\u01D2\u01D4\u01D6\u01D8\u01DA\u01DC\u01DD\u01DF\u01E1\u01E3\u01E5\u01E7\u01E9\u01EB\u01ED\u01EF\u01F0\u01F3\u01F5\u01F9\u01FB\u01FD\u01FF\u0201\u0203\u0205\u0207\u0209\u020B\u020D\u020F\u0211\u0213\u0215\u0217\u0219\u021B\u021D\u021F\u0221\u0223\u0225\u0227\u0229\u022B\u022D\u022F\u0231\u0233-\u0239\u023C\u023F\u0240\u0242\u0247\u0249\u024B\u024D\u024F\u2C61\u2C65\u2C66\u2C68\u2C6A\u2C6C\u2C71\u2C73\u2C74\u2C76-\u2C7B\uA723\uA725\uA727\uA729\uA72B\uA72D\uA72F-\uA731\uA733\uA735\uA737\uA739\uA73B\uA73D\uA73F\uA741\uA743\uA745\uA747\uA749\uA74B\uA74D\uA74F\uA751\uA753\uA755\uA757\uA759\uA75B\uA75D\uA75F\uA761\uA763\uA765\uA767\uA769\uA76B\uA76D\uA76F\uA771-\uA778\uA77A\uA77C\uA77F\uA781\uA783\uA785\uA787\uA78C\uA78E\uA791\uA793-\uA795\uA797\uA799\uA79B\uA79D\uA79F\uA7A1\uA7A3\uA7A5\uA7A7\uA7A9\uA7AF\uA7B5\uA7B7\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E01\u1E03\u1E05\u1E07\u1E09\u1E0B\u1E0D\u1E0F\u1E11\u1E13\u1E15\u1E17\u1E19\u1E1B\u1E1D\u1E1F\u1E21\u1E23\u1E25\u1E27\u1E29\u1E2B\u1E2D\u1E2F\u1E31\u1E33\u1E35\u1E37\u1E39\u1E3B\u1E3D\u1E3F\u1E41\u1E43\u1E45\u1E47\u1E49\u1E4B\u1E4D\u1E4F\u1E51\u1E53\u1E55\u1E57\u1E59\u1E5B\u1E5D\u1E5F\u1E61\u1E63\u1E65\u1E67\u1E69\u1E6B\u1E6D\u1E6F\u1E71\u1E73\u1E75\u1E77\u1E79\u1E7B\u1E7D\u1E7F\u1E81\u1E83\u1E85\u1E87\u1E89\u1E8B\u1E8D\u1E8F\u1E91\u1E93\u1E95-\u1E9D\u1E9F\u1EA1\u1EA3\u1EA5\u1EA7\u1EA9\u1EAB\u1EAD\u1EAF\u1EB1\u1EB3\u1EB5\u1EB7\u1EB9\u1EBB\u1EBD\u1EBF\u1EC1\u1EC3\u1EC5\u1EC7\u1EC9\u1ECB\u1ECD\u1ECF\u1ED1\u1ED3\u1ED5\u1ED7\u1ED9\u1EDB\u1EDD\u1EDF\u1EE1\u1EE3\u1EE5\u1EE7\u1EE9\u1EEB\u1EED\u1EEF\u1EF1\u1EF3\u1EF5\u1EF7\u1EF9\u1EFB\u1EFD\u1EFFёа-яәөүҗңһα-ωάέίόώήύа-щюяіїєґѓѕјљњќѐѝ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F%²\-\+…|……|,|:|;|\!|\?|¿|؟|¡|\(|\)|\[|\]|\{|\}|<|>|_|#|\*|&|。|?|!|,|、|;|:|~|·|।|،|۔|؛|٪(?:\'"”“`‘´’‚,„»«「」『』()〔〕【】《》〈〉〈〉⟦⟧)])\.$|(?<=[A-Z\uFF21-\uFF3A\u00C0-\u00D6\u00D8-\u00DE\u0100\u0102\u0104\u0106\u0108\u010A\u010C\u010E\u0110\u0112\u0114\u0116\u0118\u011A\u011C\u011E\u0120\u0122\u0124\u0126\u0128\u012A\u012C\u012E\u0130\u0132\u0134\u0136\u0139\u013B\u013D\u013F\u0141\u0143\u0145\u0147\u014A\u014C\u014E\u0150\u0152\u0154\u0156\u0158\u015A\u015C\u015E\u0160\u0162\u0164\u0166\u0168\u016A\u016C\u016E\u0170\u0172\u0174\u0176\u0178\u0179\u017B\u017D\u0181\u0182\u0184\u0186\u0187\u0189-\u018B\u018E-\u0191\u0193\u0194\u0196-\u0198\u019C\u019D\u019F\u01A0\u01A2\u01A4\u01A6\u01A7\u01A9\u01AC\u01AE\u01AF\u01B1-\u01B3\u01B5\u01B7\u01B8\u01BC\u01C4\u01C7\u01CA\u01CD\u01CF\u01D1\u01D3\u01D5\u01D7\u01D9\u01DB\u01DE\u01E0\u01E2\u01E4\u01E6\u01E8\u01EA\u01EC\u01EE\u01F1\u01F4\u01F6-\u01F8\u01FA\u01FC\u01FE\u0200\u0202\u0204\u0206\u0208\u020A\u020C\u020E\u0210\u0212\u0214\u0216\u0218\u021A\u021C\u021E\u0220\u0222\u0224\u0226\u0228\u022A\u022C\u022E\u0230\u0232\u023A\u023B\u023D\u023E\u0241\u0243-\u0246\u0248\u024A\u024C\u024E\u2C60\u2C62-\u2C64\u2C67\u2C69\u2C6B\u2C6D-\u2C70\u2C72\u2C75\u2C7E\u2C7F\uA722\uA724\uA726\uA728\uA72A\uA72C\uA72E\uA732\uA734\uA736\uA738\uA73A\uA73C\uA73E\uA740\uA742\uA744\uA746\uA748\uA74A\uA74C\uA74E\uA750\uA752\uA754\uA756\uA758\uA75A\uA75C\uA75E\uA760\uA762\uA764\uA766\uA768\uA76A\uA76C\uA76E\uA779\uA77B\uA77D\uA77E\uA780\uA782\uA784\uA786\uA78B\uA78D\uA790\uA792\uA796\uA798\uA79A\uA79C\uA79E\uA7A0\uA7A2\uA7A4\uA7A6\uA7A8\uA7AA-\uA7AE\uA7B0-\uA7B4\uA7B6\uA7B8\u1E00\u1E02\u1E04\u1E06\u1E08\u1E0A\u1E0C\u1E0E\u1E10\u1E12\u1E14\u1E16\u1E18\u1E1A\u1E1C\u1E1E\u1E20\u1E22\u1E24\u1E26\u1E28\u1E2A\u1E2C\u1E2E\u1E30\u1E32\u1E34\u1E36\u1E38\u1E3A\u1E3C\u1E3E\u1E40\u1E42\u1E44\u1E46\u1E48\u1E4A\u1E4C\u1E4E\u1E50\u1E52\u1E54\u1E56\u1E58\u1E5A\u1E5C\u1E5E\u1E60\u1E62\u1E64\u1E66\u1E68\u1E6A\u1E6C\u1E6E\u1E70\u1E72\u1E74\u1E76\u1E78\u1E7A\u1E7C\u1E7E\u1E80\u1E82\u1E84\u1E86\u1E88\u1E8A\u1E8C\u1E8E\u1E90\u1E92\u1E94\u1E9E\u1EA0\u1EA2\u1EA4\u1EA6\u1EA8\u1EAA\u1EAC\u1EAE\u1EB0\u1EB2\u1EB4\u1EB6\u1EB8\u1EBA\u1EBC\u1EBE\u1EC0\u1EC2\u1EC4\u1EC6\u1EC8\u1ECA\u1ECC\u1ECE\u1ED0\u1ED2\u1ED4\u1ED6\u1ED8\u1EDA\u1EDC\u1EDE\u1EE0\u1EE2\u1EE4\u1EE6\u1EE8\u1EEA\u1EEC\u1EEE\u1EF0\u1EF2\u1EF4\u1EF6\u1EF8\u1EFA\u1EFC\u1EFEЁА-ЯӘӨҮҖҢҺΑ-ΩΆΈΊΌΏΉΎА-ЩЮЯІЇЄҐЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F][A-Z\uFF21-\uFF3A\u00C0-\u00D6\u00D8-\u00DE\u0100\u0102\u0104\u0106\u0108\u010A\u010C\u010E\u0110\u0112\u0114\u0116\u0118\u011A\u011C\u011E\u0120\u0122\u0124\u0126\u0128\u012A\u012C\u012E\u0130\u0132\u0134\u0136\u0139\u013B\u013D\u013F\u0141\u0143\u0145\u0147\u014A\u014C\u014E\u0150\u0152\u0154\u0156\u0158\u015A\u015C\u015E\u0160\u0162\u0164\u0166\u0168\u016A\u016C\u016E\u0170\u0172\u0174\u0176\u0178\u0179\u017B\u017D\u0181\u0182\u0184\u0186\u0187\u0189-\u018B\u018E-\u0191\u0193\u0194\u0196-\u0198\u019C\u019D\u019F\u01A0\u01A2\u01A4\u01A6\u01A7\u01A9\u01AC\u01AE\u01AF\u01B1-\u01B3\u01B5\u01B7\u01B8\u01BC\u01C4\u01C7\u01CA\u01CD\u01CF\u01D1\u01D3\u01D5\u01D7\u01D9\u01DB\u01DE\u01E0\u01E2\u01E4\u01E6\u01E8\u01EA\u01EC\u01EE\u01F1\u01F4\u01F6-\u01F8\u01FA\u01FC\u01FE\u0200\u0202\u0204\u0206\u0208\u020A\u020C\u020E\u0210\u0212\u0214\u0216\u0218\u021A\u021C\u021E\u0220\u0222\u0224\u0226\u0228\u022A\u022C\u022E\u0230\u0232\u023A\u023B\u023D\u023E\u0241\u0243-\u0246\u0248\u024A\u024C\u024E\u2C60\u2C62-\u2C64\u2C67\u2C69\u2C6B\u2C6D-\u2C70\u2C72\u2C75\u2C7E\u2C7F\uA722\uA724\uA726\uA728\uA72A\uA72C\uA72E\uA732\uA734\uA736\uA738\uA73A\uA73C\uA73E\uA740\uA742\uA744\uA746\uA748\uA74A\uA74C\uA74E\uA750\uA752\uA754\uA756\uA758\uA75A\uA75C\uA75E\uA760\uA762\uA764\uA766\uA768\uA76A\uA76C\uA76E\uA779\uA77B\uA77D\uA77E\uA780\uA782\uA784\uA786\uA78B\uA78D\uA790\uA792\uA796\uA798\uA79A\uA79C\uA79E\uA7A0\uA7A2\uA7A4\uA7A6\uA7A8\uA7AA-\uA7AE\uA7B0-\uA7B4\uA7B6\uA7B8\u1E00\u1E02\u1E04\u1E06\u1E08\u1E0A\u1E0C\u1E0E\u1E10\u1E12\u1E14\u1E16\u1E18\u1E1A\u1E1C\u1E1E\u1E20\u1E22\u1E24\u1E26\u1E28\u1E2A\u1E2C\u1E2E\u1E30\u1E32\u1E34\u1E36\u1E38\u1E3A\u1E3C\u1E3E\u1E40\u1E42\u1E44\u1E46\u1E48\u1E4A\u1E4C\u1E4E\u1E50\u1E52\u1E54\u1E56\u1E58\u1E5A\u1E5C\u1E5E\u1E60\u1E62\u1E64\u1E66\u1E68\u1E6A\u1E6C\u1E6E\u1E70\u1E72\u1E74\u1E76\u1E78\u1E7A\u1E7C\u1E7E\u1E80\u1E82\u1E84\u1E86\u1E88\u1E8A\u1E8C\u1E8E\u1E90\u1E92\u1E94\u1E9E\u1EA0\u1EA2\u1EA4\u1EA6\u1EA8\u1EAA\u1EAC\u1EAE\u1EB0\u1EB2\u1EB4\u1EB6\u1EB8\u1EBA\u1EBC\u1EBE\u1EC0\u1EC2\u1EC4\u1EC6\u1EC8\u1ECA\u1ECC\u1ECE\u1ED0\u1ED2\u1ED4\u1ED6\u1ED8\u1EDA\u1EDC\u1EDE\u1EE0\u1EE2\u1EE4\u1EE6\u1EE8\u1EEA\u1EEC\u1EEE\u1EF0\u1EF2\u1EF4\u1EF6\u1EF8\u1EFA\u1EFC\u1EFEЁА-ЯӘӨҮҖҢҺΑ-ΩΆΈΊΌΏΉΎА-ЩЮЯІЇЄҐЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])\.$�infix_finditer�>�\.\.+|…|[\u00A6\u00A9\u00AE\u00B0\u0482\u058D\u058E\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u09FA\u0B70\u0BF3-\u0BF8\u0BFA\u0C7F\u0D4F\u0D79\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116\u2117\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u214A\u214C\u214D\u214F\u218A\u218B\u2195-\u2199\u219C-\u219F\u21A1\u21A2\u21A4\u21A5\u21A7-\u21AD\u21AF-\u21CD\u21D0\u21D1\u21D3\u21D5-\u21F3\u2300-\u2307\u230C-\u231F\u2322-\u2328\u232B-\u237B\u237D-\u239A\u23B4-\u23DB\u23E2-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u25B6\u25B8-\u25C0\u25C2-\u25F7\u2600-\u266E\u2670-\u2767\u2794-\u27BF\u2800-\u28FF\u2B00-\u2B2F\u2B45\u2B46\u2B4D-\u2B73\u2B76-\u2B95\u2B98-\u2BC8\u2BCA-\u2BFE\u2CE5-\u2CEA\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u32FE\u3300-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA828-\uA82B\uA836\uA837\uA839\uAA77-\uAA79\uFDFD\uFFE4\uFFE8\uFFED\uFFEE\uFFFC\uFFFD\U00010137-\U0001013F\U00010179-\U00010189\U0001018C-\U0001018E\U00010190-\U0001019B\U000101A0\U000101D0-\U000101FC\U00010877\U00010878\U00010AC8\U0001173F\U00016B3C-\U00016B3F\U00016B45\U0001BC9C\U0001D000-\U0001D0F5\U0001D100-\U0001D126\U0001D129-\U0001D164\U0001D16A-\U0001D16C\U0001D183\U0001D184\U0001D18C-\U0001D1A9\U0001D1AE-\U0001D1E8\U0001D200-\U0001D241\U0001D245\U0001D300-\U0001D356\U0001D800-\U0001D9FF\U0001DA37-\U0001DA3A\U0001DA6D-\U0001DA74\U0001DA76-\U0001DA83\U0001DA85\U0001DA86\U0001ECAC\U0001F000-\U0001F02B\U0001F030-\U0001F093\U0001F0A0-\U0001F0AE\U0001F0B1-\U0001F0BF\U0001F0C1-\U0001F0CF\U0001F0D1-\U0001F0F5\U0001F110-\U0001F16B\U0001F170-\U0001F1AC\U0001F1E6-\U0001F202\U0001F210-\U0001F23B\U0001F240-\U0001F248\U0001F250\U0001F251\U0001F260-\U0001F265\U0001F300-\U0001F3FA\U0001F400-\U0001F6D4\U0001F6E0-\U0001F6EC\U0001F6F0-\U0001F6F9\U0001F700-\U0001F773\U0001F780-\U0001F7D8\U0001F800-\U0001F80B\U0001F810-\U0001F847\U0001F850-\U0001F859\U0001F860-\U0001F887\U0001F890-\U0001F8AD\U0001F900-\U0001F90B\U0001F910-\U0001F93E\U0001F940-\U0001F970\U0001F973-\U0001F976\U0001F97A\U0001F97C-\U0001F9A2\U0001F9B0-\U0001F9B9\U0001F9C0-\U0001F9C2\U0001F9D0-\U0001F9FF\U0001FA60-\U0001FA6D]|(?<=[0-9])[+\-\*^](?=[0-9-])|(?<=[a-z\uFF41-\uFF5A\u00DF-\u00F6\u00F8-\u00FF\u0101\u0103\u0105\u0107\u0109\u010B\u010D\u010F\u0111\u0113\u0115\u0117\u0119\u011B\u011D\u011F\u0121\u0123\u0125\u0127\u0129\u012B\u012D\u012F\u0131\u0133\u0135\u0137\u0138\u013A\u013C\u013E\u0140\u0142\u0144\u0146\u0148\u0149\u014B\u014D\u014F\u0151\u0153\u0155\u0157\u0159\u015B\u015D\u015F\u0161\u0163\u0165\u0167\u0169\u016B\u016D\u016F\u0171\u0173\u0175\u0177\u017A\u017C\u017E\u017F\u0180\u0183\u0185\u0188\u018C\u018D\u0192\u0195\u0199-\u019B\u019E\u01A1\u01A3\u01A5\u01A8\u01AA\u01AB\u01AD\u01B0\u01B4\u01B6\u01B9\u01BA\u01BD-\u01BF\u01C6\u01C9\u01CC\u01CE\u01D0\u01D2\u01D4\u01D6\u01D8\u01DA\u01DC\u01DD\u01DF\u01E1\u01E3\u01E5\u01E7\u01E9\u01EB\u01ED\u01EF\u01F0\u01F3\u01F5\u01F9\u01FB\u01FD\u01FF\u0201\u0203\u0205\u0207\u0209\u020B\u020D\u020F\u0211\u0213\u0215\u0217\u0219\u021B\u021D\u021F\u0221\u0223\u0225\u0227\u0229\u022B\u022D\u022F\u0231\u0233-\u0239\u023C\u023F\u0240\u0242\u0247\u0249\u024B\u024D\u024F\u2C61\u2C65\u2C66\u2C68\u2C6A\u2C6C\u2C71\u2C73\u2C74\u2C76-\u2C7B\uA723\uA725\uA727\uA729\uA72B\uA72D\uA72F-\uA731\uA733\uA735\uA737\uA739\uA73B\uA73D\uA73F\uA741\uA743\uA745\uA747\uA749\uA74B\uA74D\uA74F\uA751\uA753\uA755\uA757\uA759\uA75B\uA75D\uA75F\uA761\uA763\uA765\uA767\uA769\uA76B\uA76D\uA76F\uA771-\uA778\uA77A\uA77C\uA77F\uA781\uA783\uA785\uA787\uA78C\uA78E\uA791\uA793-\uA795\uA797\uA799\uA79B\uA79D\uA79F\uA7A1\uA7A3\uA7A5\uA7A7\uA7A9\uA7AF\uA7B5\uA7B7\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E01\u1E03\u1E05\u1E07\u1E09\u1E0B\u1E0D\u1E0F\u1E11\u1E13\u1E15\u1E17\u1E19\u1E1B\u1E1D\u1E1F\u1E21\u1E23\u1E25\u1E27\u1E29\u1E2B\u1E2D\u1E2F\u1E31\u1E33\u1E35\u1E37\u1E39\u1E3B\u1E3D\u1E3F\u1E41\u1E43\u1E45\u1E47\u1E49\u1E4B\u1E4D\u1E4F\u1E51\u1E53\u1E55\u1E57\u1E59\u1E5B\u1E5D\u1E5F\u1E61\u1E63\u1E65\u1E67\u1E69\u1E6B\u1E6D\u1E6F\u1E71\u1E73\u1E75\u1E77\u1E79\u1E7B\u1E7D\u1E7F\u1E81\u1E83\u1E85\u1E87\u1E89\u1E8B\u1E8D\u1E8F\u1E91\u1E93\u1E95-\u1E9D\u1E9F\u1EA1\u1EA3\u1EA5\u1EA7\u1EA9\u1EAB\u1EAD\u1EAF\u1EB1\u1EB3\u1EB5\u1EB7\u1EB9\u1EBB\u1EBD\u1EBF\u1EC1\u1EC3\u1EC5\u1EC7\u1EC9\u1ECB\u1ECD\u1ECF\u1ED1\u1ED3\u1ED5\u1ED7\u1ED9\u1EDB\u1EDD\u1EDF\u1EE1\u1EE3\u1EE5\u1EE7\u1EE9\u1EEB\u1EED\u1EEF\u1EF1\u1EF3\u1EF5\u1EF7\u1EF9\u1EFB\u1EFD\u1EFFёа-яәөүҗңһα-ωάέίόώήύа-щюяіїєґѓѕјљњќѐѝ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F\'"”“`‘´’‚,„»«「」『』()〔〕【】《》〈〉〈〉⟦⟧])\.(?=[A-Z\uFF21-\uFF3A\u00C0-\u00D6\u00D8-\u00DE\u0100\u0102\u0104\u0106\u0108\u010A\u010C\u010E\u0110\u0112\u0114\u0116\u0118\u011A\u011C\u011E\u0120\u0122\u0124\u0126\u0128\u012A\u012C\u012E\u0130\u0132\u0134\u0136\u0139\u013B\u013D\u013F\u0141\u0143\u0145\u0147\u014A\u014C\u014E\u0150\u0152\u0154\u0156\u0158\u015A\u015C\u015E\u0160\u0162\u0164\u0166\u0168\u016A\u016C\u016E\u0170\u0172\u0174\u0176\u0178\u0179\u017B\u017D\u0181\u0182\u0184\u0186\u0187\u0189-\u018B\u018E-\u0191\u0193\u0194\u0196-\u0198\u019C\u019D\u019F\u01A0\u01A2\u01A4\u01A6\u01A7\u01A9\u01AC\u01AE\u01AF\u01B1-\u01B3\u01B5\u01B7\u01B8\u01BC\u01C4\u01C7\u01CA\u01CD\u01CF\u01D1\u01D3\u01D5\u01D7\u01D9\u01DB\u01DE\u01E0\u01E2\u01E4\u01E6\u01E8\u01EA\u01EC\u01EE\u01F1\u01F4\u01F6-\u01F8\u01FA\u01FC\u01FE\u0200\u0202\u0204\u0206\u0208\u020A\u020C\u020E\u0210\u0212\u0214\u0216\u0218\u021A\u021C\u021E\u0220\u0222\u0224\u0226\u0228\u022A\u022C\u022E\u0230\u0232\u023A\u023B\u023D\u023E\u0241\u0243-\u0246\u0248\u024A\u024C\u024E\u2C60\u2C62-\u2C64\u2C67\u2C69\u2C6B\u2C6D-\u2C70\u2C72\u2C75\u2C7E\u2C7F\uA722\uA724\uA726\uA728\uA72A\uA72C\uA72E\uA732\uA734\uA736\uA738\uA73A\uA73C\uA73E\uA740\uA742\uA744\uA746\uA748\uA74A\uA74C\uA74E\uA750\uA752\uA754\uA756\uA758\uA75A\uA75C\uA75E\uA760\uA762\uA764\uA766\uA768\uA76A\uA76C\uA76E\uA779\uA77B\uA77D\uA77E\uA780\uA782\uA784\uA786\uA78B\uA78D\uA790\uA792\uA796\uA798\uA79A\uA79C\uA79E\uA7A0\uA7A2\uA7A4\uA7A6\uA7A8\uA7AA-\uA7AE\uA7B0-\uA7B4\uA7B6\uA7B8\u1E00\u1E02\u1E04\u1E06\u1E08\u1E0A\u1E0C\u1E0E\u1E10\u1E12\u1E14\u1E16\u1E18\u1E1A\u1E1C\u1E1E\u1E20\u1E22\u1E24\u1E26\u1E28\u1E2A\u1E2C\u1E2E\u1E30\u1E32\u1E34\u1E36\u1E38\u1E3A\u1E3C\u1E3E\u1E40\u1E42\u1E44\u1E46\u1E48\u1E4A\u1E4C\u1E4E\u1E50\u1E52\u1E54\u1E56\u1E58\u1E5A\u1E5C\u1E5E\u1E60\u1E62\u1E64\u1E66\u1E68\u1E6A\u1E6C\u1E6E\u1E70\u1E72\u1E74\u1E76\u1E78\u1E7A\u1E7C\u1E7E\u1E80\u1E82\u1E84\u1E86\u1E88\u1E8A\u1E8C\u1E8E\u1E90\u1E92\u1E94\u1E9E\u1EA0\u1EA2\u1EA4\u1EA6\u1EA8\u1EAA\u1EAC\u1EAE\u1EB0\u1EB2\u1EB4\u1EB6\u1EB8\u1EBA\u1EBC\u1EBE\u1EC0\u1EC2\u1EC4\u1EC6\u1EC8\u1ECA\u1ECC\u1ECE\u1ED0\u1ED2\u1ED4\u1ED6\u1ED8\u1EDA\u1EDC\u1EDE\u1EE0\u1EE2\u1EE4\u1EE6\u1EE8\u1EEA\u1EEC\u1EEE\u1EF0\u1EF2\u1EF4\u1EF6\u1EF8\u1EFA\u1EFC\u1EFEЁА-ЯӘӨҮҖҢҺΑ-ΩΆΈΊΌΏΉΎА-ЩЮЯІЇЄҐЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F\'"”“`‘´’‚,„»«「」『』()〔〕【】《》〈〉〈〉⟦⟧])|(?<=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F]),(?=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])|(?<=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F0-9])(?:-|–|—|--|---|——|~)(?=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])|(?<=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F0-9])[:<>=/](?=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])�token_match��url_match�
2
+ ��A�
3
+ � ��A� �'��A�'�''��A�''�'Cause��A�'CauseC�because�'Cos��A�'CosC�because�'Coz��A�'CozC�because�'Cuz��A�'CuzC�because�'S��A�'SC�'s�'bout��A�'boutC�about�'cause��A�'causeC�because�'cos��A�'cosC�because�'coz��A�'cozC�because�'cuz��A�'cuzC�because�'d��A�'d�'em��A�'emC�them�'ll��A�'llC�will�'nuff��A�'nuffC�enough�'re��A�'reC�are�'s��A�'sC�'s�(*_*)��A�(*_*)�(-8��A�(-8�(-:��A�(-:�(-;��A�(-;�(-_-)��A�(-_-)�(._.)��A�(._.)�(:��A�(:�(;��A�(;�(=��A�(=�(>_<)��A�(>_<)�(^_^)��A�(^_^)�(o:��A�(o:�(¬_¬)��A�(¬_¬)�(ಠ_ಠ)��A�(ಠ_ಠ)�(╯°□°)╯︵┻━┻��A�(╯°□°)╯︵┻━┻�)-:��A�)-:�):��A�):�-_-��A�-_-�-__-��A�-__-�._.��A�._.�0.0��A�0.0�0.o��A�0.o�0_0��A�0_0�0_o��A�0_o�10a.m.��A�10�A�a.m.C�a.m.�10am��A�10�A�amC�a.m.�10p.m.��A�10�A�p.m.C�p.m.�10pm��A�10�A�pmC�p.m.�11a.m.��A�11�A�a.m.C�a.m.�11am��A�11�A�amC�a.m.�11p.m.��A�11�A�p.m.C�p.m.�11pm��A�11�A�pmC�p.m.�12a.m.��A�12�A�a.m.C�a.m.�12am��A�12�A�amC�a.m.�12p.m.��A�12�A�p.m.C�p.m.�12pm��A�12�A�pmC�p.m.�1a.m.��A�1�A�a.m.C�a.m.�1am��A�1�A�amC�a.m.�1p.m.��A�1�A�p.m.C�p.m.�1pm��A�1�A�pmC�p.m.�2a.m.��A�2�A�a.m.C�a.m.�2am��A�2�A�amC�a.m.�2p.m.��A�2�A�p.m.C�p.m.�2pm��A�2�A�pmC�p.m.�3a.m.��A�3�A�a.m.C�a.m.�3am��A�3�A�amC�a.m.�3p.m.��A�3�A�p.m.C�p.m.�3pm��A�3�A�pmC�p.m.�4a.m.��A�4�A�a.m.C�a.m.�4am��A�4�A�amC�a.m.�4p.m.��A�4�A�p.m.C�p.m.�4pm��A�4�A�pmC�p.m.�5a.m.��A�5�A�a.m.C�a.m.�5am��A�5�A�amC�a.m.�5p.m.��A�5�A�p.m.C�p.m.�5pm��A�5�A�pmC�p.m.�6a.m.��A�6�A�a.m.C�a.m.�6am��A�6�A�amC�a.m.�6p.m.��A�6�A�p.m.C�p.m.�6pm��A�6�A�pmC�p.m.�7a.m.��A�7�A�a.m.C�a.m.�7am��A�7�A�amC�a.m.�7p.m.��A�7�A�p.m.C�p.m.�7pm��A�7�A�pmC�p.m.�8)��A�8)�8-)��A�8-)�8-D��A�8-D�8D��A�8D�8a.m.��A�8�A�a.m.C�a.m.�8am��A�8�A�amC�a.m.�8p.m.��A�8�A�p.m.C�p.m.�8pm��A�8�A�pmC�p.m.�9a.m.��A�9�A�a.m.C�a.m.�9am��A�9�A�amC�a.m.�9p.m.��A�9�A�p.m.C�p.m.�9pm��A�9�A�pmC�p.m.�:'(��A�:'(�:')��A�:')�:'-(��A�:'-(�:'-)��A�:'-)�:(��A�:(�:((��A�:((�:(((��A�:(((�:()��A�:()�:)��A�:)�:))��A�:))�:)))��A�:)))�:*��A�:*�:-(��A�:-(�:-((��A�:-((�:-(((��A�:-(((�:-)��A�:-)�:-))��A�:-))�:-)))��A�:-)))�:-*��A�:-*�:-/��A�:-/�:-0��A�:-0�:-3��A�:-3�:->��A�:->�:-D��A�:-D�:-O��A�:-O�:-P��A�:-P�:-X��A�:-X�:-]��A�:-]�:-o��A�:-o�:-p��A�:-p�:-x��A�:-x�:-|��A�:-|�:-}��A�:-}�:/��A�:/�:0��A�:0�:1��A�:1�:3��A�:3�:>��A�:>�:D��A�:D�:O��A�:O�:P��A�:P�:X��A�:X�:]��A�:]�:o��A�:o�:o)��A�:o)�:p��A�:p�:x��A�:x�:|��A�:|�:}��A�:}�:’(��A�:’(�:’)��A�:’)�:’-(��A�:’-(�:’-)��A�:’-)�;)��A�;)�;-)��A�;-)�;-D��A�;-D�;D��A�;D�;_;��A�;_;�<.<��A�<.<�</3��A�</3�<3��A�<3�<33��A�<33�<333��A�<333�<space>��A�<space>�=(��A�=(�=)��A�=)�=/��A�=/�=3��A�=3�=D��A�=D�=[��A�=[�=]��A�=]�=|��A�=|�>.<��A�>.<�>.>��A�>.>�>:(��A�>:(�>:o��A�>:o�><(((*>��A�><(((*>�@_@��A�@_@�Adm.��A�Adm.�Ain't��A�Ai�A�n'tC�not�Aint��A�Ai�A�ntC�not�Ain’t��A�Ai�A�n’tC�not�Ak.��A�Ak.C�Alaska�Ala.��A�Ala.C�Alabama�Apr.��A�Apr.C�April�Aren't��A�AreC�are�A�n'tC�not�Arent��A�AreC�are�A�ntC�not�Aren’t��A�AreC�are�A�n’tC�not�Ariz.��A�Ariz.C�Arizona�Ark.��A�Ark.C�Arkansas�Aug.��A�Aug.C�August�Bros.��A�Bros.�C'mon��A�C'mC�come�A�on�C++��A�C++�Calif.��A�Calif.C�California�Can't��A�CaC�can�A�n'tC�not�Can't've��A�CaC�can�A�n'tC�not�A�'veC�have�Cannot��A�CanC�can�A�not�Cant��A�CaC�can�A�ntC�not�Cantve��A�CaC�can�A�ntC�not�A�veC�have�Can’t��A�CaC�can�A�n’tC�not�Can’t’ve��A�CaC�can�A�n’tC�not�A�’veC�have�Co.��A�Co.�Colo.��A�Colo.C�Colorado�Conn.��A�Conn.C�Connecticut�Corp.��A�Corp.�Could've��A�CouldC�could�A�'ve�Couldn't��A�CouldC�could�A�n'tC�not�Couldn't've��A�CouldC�could�A�n'tC�not�A�'veC�have�Couldnt��A�CouldC�could�A�ntC�not�Couldntve��A�CouldC�could�A�ntC�not�A�veC�have�Couldn’t��A�CouldC�could�A�n’tC�not�Couldn’t’ve��A�CouldC�could�A�n’tC�not�A�’veC�have�Couldve��A�CouldC�could�A�ve�Could’ve��A�CouldC�could�A�’ve�C’mon��A�C’mC�come�A�on�D.C.��A�D.C.�Daren't��A�DareC�dare�A�n'tC�not�Darent��A�DareC�dare�A�ntC�not�Daren’t��A�DareC�dare�A�n’tC�not�Dec.��A�Dec.C�December�Del.��A�Del.C�Delaware�Didn't��A�DidC�do�A�n'tC�not�Didn't've��A�DidC�do�A�n'tC�not�A�'veC�have�Didnt��A�DidC�do�A�ntC�not�Didntve��A�DidC�do�A�ntC�not�A�veC�have�Didn’t��A�DidC�do�A�n’tC�not�Didn’t’ve��A�DidC�do�A�n’tC�not�A�’veC�have�Doesn't��A�DoesC�does�A�n'tC�not�Doesn't've��A�DoesC�does�A�n'tC�not�A�'veC�have�Doesnt��A�DoesC�does�A�ntC�not�Doesntve��A�DoesC�does�A�ntC�not�A�veC�have�Doesn’t��A�DoesC�does�A�n’tC�not�Doesn’t’ve��A�DoesC�does�A�n’tC�not�A�’veC�have�Doin��A�DoinC�doing�Doin'��A�Doin'C�doing�Doin’��A�Doin’C�doing�Don't��A�DoC�do�A�n'tC�not�Don't've��A�DoC�do�A�n'tC�not�A�'veC�have�Dont��A�DoC�do�A�ntC�not�Dontve��A�DoC�do�A�ntC�not�A�veC�have�Don’t��A�DoC�do�A�n’tC�not�Don’t’ve��A�DoC�do�A�n’tC�not�A�’veC�have�Dr.��A�Dr.�E.G.��A�E.G.�E.g.��A�E.g.�Feb.��A�Feb.C�February�Fla.��A�Fla.C�Florida�Ga.��A�Ga.C�Georgia�Gen.��A�Gen.�Goin��A�GoinC�going�Goin'��A�Goin'C�going�Goin’��A�Goin’C�going�Gonna��A�GonC�going�A�naC�to�Gotta��A�GotC�got�A�taC�to�Gov.��A�Gov.�Hadn't��A�HadC�have�A�n'tC�not�Hadn't've��A�HadC�have�A�n'tC�not�A�'veC�have�Hadnt��A�HadC�have�A�ntC�not�Hadntve��A�HadC�have�A�ntC�not�A�veC�have�Hadn’t��A�HadC�have�A�n’tC�not�Hadn’t’ve��A�HadC�have�A�n’tC�not�A�’veC�have�Hasn't��A�HasC�has�A�n'tC�not�Hasnt��A�HasC�has�A�ntC�not�Hasn’t��A�HasC�has�A�n’tC�not�Haven't��A�HaveC�have�A�n'tC�not�Havent��A�HaveC�have�A�ntC�not�Haven’t��A�HaveC�have�A�n’tC�not�Havin��A�HavinC�having�Havin'��A�Havin'C�having�Havin’��A�Havin’C�having�He'd��A�HeC�he�A�'dC�'d�He'd've��A�HeC�he�A�'dC�would�A�'veC�have�He'll��A�HeC�he�A�'llC�will�He'll've��A�HeC�he�A�'llC�will�A�'veC�have�He's��A�HeC�he�A�'sC�'s�Hed��A�HeC�he�A�dC�'d�Hedve��A�HeC�he�A�dC�would�A�veC�have�Hellve��A�HeC�he�A�llC�will�A�veC�have�Hes��A�HeC�he�A�s�He’d��A�HeC�he�A�’dC�'d�He’d’ve��A�HeC�he�A�’dC�would�A�’veC�have�He’ll��A�HeC�he�A�’llC�will�He’ll’ve��A�HeC�he�A�’llC�will�A�’veC�have�He’s��A�HeC�he�A�’sC�'s�How'd��A�HowC�how�A�'dC�'d�How'd've��A�HowC�how�A�'dC�would�A�'veC�have�How'd'y��A�HowC�how�A�'d�A�'yC�you�How'll��A�HowC�how�A�'llC�will�How'll've��A�HowC�how�A�'llC�will�A�'veC�have�How're��A�HowC�how�A�'reC�are�How's��A�HowC�how�A�'sC�'s�How've��A�HowC�how�A�'ve�Howd��A�HowC�how�A�dC�'d�Howdve��A�HowC�how�A�dC�would�A�veC�have�Howll��A�HowC�how�A�llC�will�Howllve��A�HowC�how�A�llC�will�A�veC�have�Howre��A�HowC�how�A�reC�are�Hows��A�HowC�how�A�s�Howve��A�How�A�veC�have�How’d��A�HowC�how�A�’dC�'d�How’d’ve��A�HowC�how�A�’dC�would�A�’veC�have�How’d’y��A�HowC�how�A�’d�A�’yC�you�How’ll��A�HowC�how�A�’llC�will�How’ll’ve��A�HowC�how�A�’llC�will�A�’veC�have�How’re��A�HowC�how�A�’reC�are�How’s��A�HowC�how�A�’sC�'s�How’ve��A�HowC�how�A�’ve�I'd��A�IC�i�A�'dC�'d�I'd've��A�IC�i�A�'dC�would�A�'veC�have�I'll��A�IC�i�A�'llC�will�I'll've��A�IC�i�A�'llC�will�A�'veC�have�I'm��A�IC�i�A�'mC�am�I'ma��A�IC�i�A�'mC�am�A�aC�gonna�I've��A�IC�i�A�'veC�have�I.E.��A�I.E.�I.e.��A�I.e.�Ia.��A�Ia.C�Iowa�Id��A�IC�i�A�dC�'d�Id.��A�Id.C�Idaho�Idve��A�IC�i�A�dC�would�A�veC�have�Ill.��A�Ill.C�Illinois�Illve��A�IC�i�A�llC�will�A�veC�have�Im��A�IC�i�A�m�Ima��A�IC�i�A�mC�am�A�aC�gonna�Inc.��A�Inc.�Ind.��A�Ind.C�Indiana�Isn't��A�IsC�is�A�n'tC�not�Isnt��A�IsC�is�A�ntC�not�Isn’t��A�IsC�is�A�n’tC�not�It'd��A�ItC�it�A�'dC�'d�It'd've��A�ItC�it�A�'dC�would�A�'veC�have�It'll��A�ItC�it�A�'llC�will�It'll've��A�ItC�it�A�'llC�will�A�'veC�have�It's��A�ItC�it�A�'sC�'s�Itd��A�ItC�it�A�dC�'d�Itdve��A�ItC�it�A�dC�would�A�veC�have�Itll��A�ItC�it�A�llC�will�Itllve��A�ItC�it�A�llC�will�A�veC�have�It’d��A�ItC�it�A�’dC�'d�It’d’ve��A�ItC�it�A�’dC�would�A�’veC�have�It’ll��A�ItC�it�A�’llC�will�It’ll’ve��A�ItC�it�A�’llC�will�A�’veC�have�It’s��A�ItC�it�A�’sC�'s�Ive��A�IC�i�A�veC�have�I’d��A�IC�i�A�’dC�'d�I’d’ve��A�IC�i�A�’dC�would�A�’veC�have�I’ll��A�IC�i�A�’llC�will�I’ll’ve��A�IC�i�A�’llC�will�A�’veC�have�I’m��A�IC�i�A�’mC�am�I’ma��A�IC�i�A�’mC�am�A�aC�gonna�I’ve��A�IC�i�A�’veC�have�Jan.��A�Jan.C�January�Jr.��A�Jr.�Jul.��A�Jul.C�July�Jun.��A�Jun.C�June�Kan.��A�Kan.C�Kansas�Kans.��A�Kans.C�Kansas�Ky.��A�Ky.C�Kentucky�La.��A�La.C�Louisiana�Let's��A�LetC�let�A�'sC�us�Let’s��A�LetC�let�A�’sC�us�Lovin��A�LovinC�loving�Lovin'��A�Lovin'C�loving�Lovin’��A�Lovin’C�loving�Ltd.��A�Ltd.�Ma'am��A�Ma'amC�madam�Mar.��A�Mar.C�March�Mass.��A�Mass.C�Massachusetts�Mayn't��A�MayC�may�A�n'tC�not�Mayn't've��A�MayC�may�A�n'tC�not�A�'veC�have�Maynt��A�MayC�may�A�ntC�not�Mayntve��A�MayC�may�A�ntC�not�A�veC�have�Mayn’t��A�MayC�may�A�n’tC�not�Mayn’t’ve��A�MayC�may�A�n’tC�not�A�’veC�have�Ma’am��A�Ma’amC�madam�Md.��A�Md.�Messrs.��A�Messrs.�Mich.��A�Mich.C�Michigan�Might've��A�MightC�might�A�'ve�Mightn't��A�MightC�might�A�n'tC�not�Mightn't've��A�MightC�might�A�n'tC�not�A�'veC�have�Mightnt��A�MightC�might�A�ntC�not�Mightntve��A�MightC�might�A�ntC�not�A�veC�have�Mightn’t��A�MightC�might�A�n’tC�not�Mightn’t’ve��A�MightC�might�A�n’tC�not�A�’veC�have�Mightve��A�MightC�might�A�ve�Might’ve��A�MightC�might�A�’ve�Minn.��A�Minn.C�Minnesota�Miss.��A�Miss.C�Mississippi�Mo.��A�Mo.�Mont.��A�Mont.�Mr.��A�Mr.�Mrs.��A�Mrs.�Ms.��A�Ms.�Mt.��A�Mt.C�Mount�Must've��A�MustC�must�A�'ve�Mustn't��A�MustC�must�A�n'tC�not�Mustn't've��A�MustC�must�A�n'tC�not�A�'veC�have�Mustnt��A�MustC�must�A�ntC�not�Mustntve��A�MustC�must�A�ntC�not�A�veC�have�Mustn’t��A�MustC�must�A�n’tC�not�Mustn’t’ve��A�MustC�must�A�n’tC�not�A�’veC�have�Mustve��A�MustC�must�A�ve�Must’ve��A�MustC�must�A�’ve�N.C.��A�N.C.C�North Carolina�N.D.��A�N.D.C�North Dakota�N.H.��A�N.H.C�New Hampshire�N.J.��A�N.J.C�New Jersey�N.M.��A�N.M.C�New Mexico�N.Y.��A�N.Y.C�New York�Neb.��A�Neb.C�Nebraska�Nebr.��A�Nebr.C�Nebraska�Needn't��A�NeedC�need�A�n'tC�not�Needn't've��A�NeedC�need�A�n'tC�not�A�'veC�have�Neednt��A�NeedC�need�A�ntC�not�Needntve��A�NeedC�need�A�ntC�not�A�veC�have�Needn’t��A�NeedC�need�A�n’tC�not�Needn’t’ve��A�NeedC�need�A�n’tC�not�A�’veC�have�Nev.��A�Nev.C�Nevada�Not've��A�NotC�not�A�'veC�have�Nothin��A�NothinC�nothing�Nothin'��A�Nothin'C�nothing�Nothin’��A�Nothin’C�nothing�Notve��A�NotC�not�A�veC�have�Not’ve��A�NotC�not�A�’veC�have�Nov.��A�Nov.C�November�Nuthin��A�NuthinC�nothing�Nuthin'��A�Nuthin'C�nothing�Nuthin’��A�Nuthin’C�nothing�O'clock��A�O'clockC�o'clock�O.O��A�O.O�O.o��A�O.o�O_O��A�O_O�O_o��A�O_o�Oct.��A�Oct.C�October�Okla.��A�Okla.C�Oklahoma�Ol��A�OlC�old�Ol'��A�Ol'C�old�Ol’��A�Ol’C�old�Ore.��A�Ore.C�Oregon�Oughtn't��A�OughtC�ought�A�n'tC�not�Oughtn't've��A�OughtC�ought�A�n'tC�not�A�'veC�have�Oughtnt��A�OughtC�ought�A�ntC�not�Oughtntve��A�OughtC�ought�A�ntC�not�A�veC�have�Oughtn’t��A�OughtC�ought�A�n’tC�not�Oughtn’t’ve��A�OughtC�ought�A�n’tC�not�A�’veC�have�O’clock��A�O’clockC�o'clock�Pa.��A�Pa.C�Pennsylvania�Ph.D.��A�Ph.D.�Prof.��A�Prof.�Rep.��A�Rep.�Rev.��A�Rev.�S.C.��A�S.C.C�South Carolina�Sen.��A�Sen.�Sep.��A�Sep.C�September�Sept.��A�Sept.C�September�Shan't��A�ShaC�shall�A�n'tC�not�Shan't've��A�ShaC�shall�A�n'tC�not�A�'veC�have�Shant��A�ShaC�shall�A�ntC�not�Shantve��A�ShaC�shall�A�ntC�not�A�veC�have�Shan’t��A�ShaC�shall�A�n’tC�not�Shan’t’ve��A�ShaC�shall�A�n’tC�not�A�’veC�have�She'd��A�SheC�she�A�'dC�'d�She'd've��A�SheC�she�A�'dC�would�A�'veC�have�She'll��A�SheC�she�A�'llC�will�She'll've��A�SheC�she�A�'llC�will�A�'veC�have�She's��A�SheC�she�A�'sC�'s�Shedve��A�SheC�she�A�dC�would�A�veC�have�Shellve��A�SheC�she�A�llC�will�A�veC�have�Shes��A�SheC�she�A�s�She’d��A�SheC�she�A�’dC�'d�She’d’ve��A�SheC�she�A�’dC�would�A�’veC�have�She’ll��A�SheC�she�A�’llC�will�She’ll’ve��A�SheC�she�A�’llC�will�A�’veC�have�She’s��A�SheC�she�A�’sC�'s�Should've��A�ShouldC�should�A�'ve�Shouldn't��A�ShouldC�should�A�n'tC�not�Shouldn't've��A�ShouldC�should�A�n'tC�not�A�'veC�have�Shouldnt��A�ShouldC�should�A�ntC�not�Shouldntve��A�ShouldC�should�A�ntC�not�A�veC�have�Shouldn’t��A�ShouldC�should�A�n’tC�not�Shouldn’t’ve��A�ShouldC�should�A�n’tC�not�A�’veC�have�Shouldve��A�ShouldC�should�A�ve�Should’ve��A�ShouldC�should�A�’ve�Somethin��A�SomethinC�something�Somethin'��A�Somethin'C�something�Somethin’��A�Somethin’C�something�St.��A�St.�Tenn.��A�Tenn.C�Tennessee�That'd��A�ThatC�that�A�'dC�'d�That'd've��A�ThatC�that�A�'dC�would�A�'veC�have�That'll��A�ThatC�that�A�'llC�will�That'll've��A�ThatC�that�A�'llC�will�A�'veC�have�That's��A�ThatC�that�A�'sC�'s�Thatd��A�ThatC�that�A�dC�'d�Thatdve��A�ThatC�that�A�dC�would�A�veC�have�Thatll��A�ThatC�that�A�llC�will�Thatllve��A�ThatC�that�A�llC�will�A�veC�have�Thats��A�ThatC�that�A�s�That’d��A�ThatC�that�A�’dC�'d�That’d’ve��A�ThatC�that�A�’dC�would�A�’veC�have�That’ll��A�ThatC�that�A�’llC�will�That’ll’ve��A�ThatC�that�A�’llC�will�A�’veC�have�That’s��A�ThatC�that�A�’sC�'s�There'd��A�ThereC�there�A�'dC�'d�There'd've��A�ThereC�there�A�'dC�would�A�'veC�have�There'll��A�ThereC�there�A�'llC�will�There'll've��A�ThereC�there�A�'llC�will�A�'veC�have�There're��A�ThereC�there�A�'reC�are�There's��A�ThereC�there�A�'sC�'s�There've��A�ThereC�there�A�'ve�Thered��A�ThereC�there�A�dC�'d�Theredve��A�ThereC�there�A�dC�would�A�veC�have�Therell��A�ThereC�there�A�llC�will�Therellve��A�ThereC�there�A�llC�will�A�veC�have�Therere��A�ThereC�there�A�reC�are�Theres��A�ThereC�there�A�s�Thereve��A�There�A�veC�have�There’d��A�ThereC�there�A�’dC�'d�There’d’ve��A�ThereC�there�A�’dC�would�A�’veC�have�There’ll��A�ThereC�there�A�’llC�will�There’ll’ve��A�ThereC�there�A�’llC�will�A�’veC�have�There’re��A�ThereC�there�A�’reC�are�There’s��A�ThereC�there�A�’sC�'s�There’ve��A�ThereC�there�A�’ve�These'd��A�TheseC�these�A�'dC�'d�These'd've��A�TheseC�these�A�'dC�would�A�'veC�have�These'll��A�TheseC�these�A�'llC�will�These'll've��A�TheseC�these�A�'llC�will�A�'veC�have�These're��A�TheseC�these�A�'reC�are�These've��A�TheseC�these�A�'ve�Thesed��A�TheseC�these�A�dC�'d�Thesedve��A�TheseC�these�A�dC�would�A�veC�have�Thesell��A�TheseC�these�A�llC�will�Thesellve��A�TheseC�these�A�llC�will�A�veC�have�Thesere��A�TheseC�these�A�reC�are�Theseve��A�These�A�veC�have�These’d��A�TheseC�these�A�’dC�'d�These’d’ve��A�TheseC�these�A�’dC�would�A�’veC�have�These’ll��A�TheseC�these�A�’llC�will�These’ll’ve��A�TheseC�these�A�’llC�will�A�’veC�have�These’re��A�TheseC�these�A�’reC�are�These’ve��A�TheseC�these�A�’ve�They'd��A�TheyC�they�A�'dC�'d�They'd've��A�TheyC�they�A�'dC�would�A�'veC�have�They'll��A�TheyC�they�A�'llC�will�They'll've��A�TheyC�they�A�'llC�will�A�'veC�have�They're��A�TheyC�they�A�'reC�are�They've��A�TheyC�they�A�'veC�have�Theyd��A�TheyC�they�A�dC�'d�Theydve��A�TheyC�they�A�dC�would�A�veC�have�Theyll��A�TheyC�they�A�llC�will�Theyllve��A�TheyC�they�A�llC�will�A�veC�have�Theyre��A�TheyC�they�A�reC�are�Theyve��A�TheyC�they�A�veC�have�They’d��A�TheyC�they�A�’dC�'d�They’d’ve��A�TheyC�they�A�’dC�would�A�’veC�have�They’ll��A�TheyC�they�A�’llC�will�They’ll’ve��A�TheyC�they�A�’llC�will�A�’veC�have�They’re��A�TheyC�they�A�’reC�are�They’ve��A�TheyC�they�A�’veC�have�This'd��A�ThisC�this�A�'dC�'d�This'd've��A�ThisC�this�A�'dC�would�A�'veC�have�This'll��A�ThisC�this�A�'llC�will�This'll've��A�ThisC�this�A�'llC�will�A�'veC�have�This's��A�ThisC�this�A�'sC�'s�Thisd��A�ThisC�this�A�dC�'d�Thisdve��A�ThisC�this�A�dC�would�A�veC�have�Thisll��A�ThisC�this�A�llC�will�Thisllve��A�ThisC�this�A�llC�will�A�veC�have�Thiss��A�ThisC�this�A�s�This’d��A�ThisC�this�A�’dC�'d�This’d’ve��A�ThisC�this�A�’dC�would�A�’veC�have�This’ll��A�ThisC�this�A�’llC�will�This’ll’ve��A�ThisC�this�A�’llC�will�A�’veC�have�This’s��A�ThisC�this�A�’sC�'s�Those'd��A�ThoseC�those�A�'dC�'d�Those'd've��A�ThoseC�those�A�'dC�would�A�'veC�have�Those'll��A�ThoseC�those�A�'llC�will�Those'll've��A�ThoseC�those�A�'llC�will�A�'veC�have�Those're��A�ThoseC�those�A�'reC�are�Those've��A�ThoseC�those�A�'ve�Thosed��A�ThoseC�those�A�dC�'d�Thosedve��A�ThoseC�those�A�dC�would�A�veC�have�Thosell��A�ThoseC�those�A�llC�will�Thosellve��A�ThoseC�those�A�llC�will�A�veC�have�Thosere��A�ThoseC�those�A�reC�are�Thoseve��A�Those�A�veC�have�Those’d��A�ThoseC�those�A�’dC�'d�Those’d’ve��A�ThoseC�those�A�’dC�would�A�’veC�have�Those’ll��A�ThoseC�those�A�’llC�will�Those’ll’ve��A�ThoseC�those�A�’llC�will�A�’veC�have�Those’re��A�ThoseC�those�A�’reC�are�Those’ve��A�ThoseC�those�A�’ve�V.V��A�V.V�V_V��A�V_V�Va.��A�Va.C�Virginia�Wash.��A�Wash.C�Washington�Wasn't��A�WasC�was�A�n'tC�not�Wasnt��A�WasC�was�A�ntC�not�Wasn’t��A�WasC�was�A�n’tC�not�We'd��A�WeC�we�A�'dC�'d�We'd've��A�WeC�we�A�'dC�would�A�'veC�have�We'll��A�WeC�we�A�'llC�will�We'll've��A�WeC�we�A�'llC�will�A�'veC�have�We're��A�WeC�we�A�'reC�are�We've��A�WeC�we�A�'veC�have�Wed��A�WeC�we�A�dC�'d�Wedve��A�WeC�we�A�dC�would�A�veC�have�Wellve��A�WeC�we�A�llC�will�A�veC�have�Weren't��A�WereC�were�A�n'tC�not�Werent��A�WereC�were�A�ntC�not�Weren’t��A�WereC�were�A�n’tC�not�Weve��A�WeC�we�A�veC�have�We’d��A�WeC�we�A�’dC�'d�We’d’ve��A�WeC�we�A�’dC�would�A�’veC�have�We’ll��A�WeC�we�A�’llC�will�We’ll’ve��A�WeC�we�A�’llC�will�A�’veC�have�We’re��A�WeC�we�A�’reC�are�We’ve��A�WeC�we�A�’veC�have�What'd��A�WhatC�what�A�'dC�'d�What'd've��A�WhatC�what�A�'dC�would�A�'veC�have�What'll��A�WhatC�what�A�'llC�will�What'll've��A�WhatC�what�A�'llC�will�A�'veC�have�What're��A�WhatC�what�A�'reC�are�What's��A�WhatC�what�A�'sC�'s�What've��A�WhatC�what�A�'ve�Whatd��A�WhatC�what�A�dC�'d�Whatdve��A�WhatC�what�A�dC�would�A�veC�have�Whatll��A�WhatC�what�A�llC�will�Whatllve��A�WhatC�what�A�llC�will�A�veC�have�Whatre��A�WhatC�what�A�reC�are�Whats��A�WhatC�what�A�s�Whatve��A�What�A�veC�have�What’d��A�WhatC�what�A�’dC�'d�What’d’ve��A�WhatC�what�A�’dC�would�A�’veC�have�What’ll��A�WhatC�what�A�’llC�will�What’ll’ve��A�WhatC�what�A�’llC�will�A�’veC�have�What’re��A�WhatC�what�A�’reC�are�What’s��A�WhatC�what�A�’sC�'s�What’ve��A�WhatC�what�A�’ve�When'd��A�WhenC�when�A�'dC�'d�When'd've��A�WhenC�when�A�'dC�would�A�'veC�have�When'll��A�WhenC�when�A�'llC�will�When'll've��A�WhenC�when�A�'llC�will�A�'veC�have�When're��A�WhenC�when�A�'reC�are�When's��A�WhenC�when�A�'sC�'s�When've��A�WhenC�when�A�'ve�Whend��A�WhenC�when�A�dC�'d�Whendve��A�WhenC�when�A�dC�would�A�veC�have�Whenll��A�WhenC�when�A�llC�will�Whenllve��A�WhenC�when�A�llC�will�A�veC�have�Whenre��A�WhenC�when�A�reC�are�Whens��A�WhenC�when�A�s�Whenve��A�When�A�veC�have�When’d��A�WhenC�when�A�’dC�'d�When’d’ve��A�WhenC�when�A�’dC�would�A�’veC�have�When’ll��A�WhenC�when�A�’llC�will�When’ll’ve��A�WhenC�when�A�’llC�will�A�’veC�have�When’re��A�WhenC�when�A�’reC�are�When’s��A�WhenC�when�A�’sC�'s�When’ve��A�WhenC�when�A�’ve�Where'd��A�WhereC�where�A�'dC�'d�Where'd've��A�WhereC�where�A�'dC�would�A�'veC�have�Where'll��A�WhereC�where�A�'llC�will�Where'll've��A�WhereC�where�A�'llC�will�A�'veC�have�Where're��A�WhereC�where�A�'reC�are�Where's��A�WhereC�where�A�'sC�'s�Where've��A�WhereC�where�A�'ve�Whered��A�WhereC�where�A�dC�'d�Wheredve��A�WhereC�where�A�dC�would�A�veC�have�Wherell��A�WhereC�where�A�llC�will�Wherellve��A�WhereC�where�A�llC�will�A�veC�have�Wherere��A�WhereC�where�A�reC�are�Wheres��A�WhereC�where�A�s�Whereve��A�Where�A�veC�have�Where’d��A�WhereC�where�A�’dC�'d�Where’d’ve��A�WhereC�where�A�’dC�would�A�’veC�have�Where’ll��A�WhereC�where�A�’llC�will�Where’ll’ve��A�WhereC�where�A�’llC�will�A�’veC�have�Where’re��A�WhereC�where�A�’reC�are�Where’s��A�WhereC�where�A�’sC�'s�Where’ve��A�WhereC�where�A�’ve�Who'd��A�WhoC�who�A�'dC�'d�Who'd've��A�WhoC�who�A�'dC�would�A�'veC�have�Who'll��A�WhoC�who�A�'llC�will�Who'll've��A�WhoC�who�A�'llC�will�A�'veC�have�Who're��A�WhoC�who�A�'reC�are�Who's��A�WhoC�who�A�'sC�'s�Who've��A�WhoC�who�A�'ve�Whod��A�WhoC�who�A�dC�'d�Whodve��A�WhoC�who�A�dC�would�A�veC�have�Wholl��A�WhoC�who�A�llC�will�Whollve��A�WhoC�who�A�llC�will�A�veC�have�Whos��A�WhoC�who�A�s�Whove��A�Who�A�veC�have�Who’d��A�WhoC�who�A�’dC�'d�Who’d’ve��A�WhoC�who�A�’dC�would�A�’veC�have�Who’ll��A�WhoC�who�A�’llC�will�Who’ll’ve��A�WhoC�who�A�’llC�will�A�’veC�have�Who’re��A�WhoC�who�A�’reC�are�Who’s��A�WhoC�who�A�’sC�'s�Who’ve��A�WhoC�who�A�’ve�Why'd��A�WhyC�why�A�'dC�'d�Why'd've��A�WhyC�why�A�'dC�would�A�'veC�have�Why'll��A�WhyC�why�A�'llC�will�Why'll've��A�WhyC�why�A�'llC�will�A�'veC�have�Why're��A�WhyC�why�A�'reC�are�Why's��A�WhyC�why�A�'sC�'s�Why've��A�WhyC�why�A�'ve�Whyd��A�WhyC�why�A�dC�'d�Whydve��A�WhyC�why�A�dC�would�A�veC�have�Whyll��A�WhyC�why�A�llC�will�Whyllve��A�WhyC�why�A�llC�will�A�veC�have�Whyre��A�WhyC�why�A�reC�are�Whys��A�WhyC�why�A�s�Whyve��A�Why�A�veC�have�Why’d��A�WhyC�why�A�’dC�'d�Why’d’ve��A�WhyC�why�A�’dC�would�A�’veC�have�Why’ll��A�WhyC�why�A�’llC�will�Why’ll’ve��A�WhyC�why�A�’llC�will�A�’veC�have�Why’re��A�WhyC�why�A�’reC�are�Why’s��A�WhyC�why�A�’sC�'s�Why’ve��A�WhyC�why�A�’ve�Wis.��A�Wis.C�Wisconsin�Won't��A�WoC�will�A�n'tC�not�Won't've��A�WoC�will�A�n'tC�not�A�'veC�have�Wont��A�WoC�will�A�ntC�not�Wontve��A�WoC�will�A�ntC�not�A�veC�have�Won’t��A�WoC�will�A�n’tC�not�Won’t’ve��A�WoC�will�A�n’tC�not�A�’veC�have�Would've��A�WouldC�would�A�'ve�Wouldn't��A�WouldC�would�A�n'tC�not�Wouldn't've��A�WouldC�would�A�n'tC�not�A�'veC�have�Wouldnt��A�WouldC�would�A�ntC�not�Wouldntve��A�WouldC�would�A�ntC�not�A�veC�have�Wouldn’t��A�WouldC�would�A�n’tC�not�Wouldn’t’ve��A�WouldC�would�A�n’tC�not�A�’veC�have�Wouldve��A�WouldC�would�A�ve�Would’ve��A�WouldC�would�A�’ve�XD��A�XD�XDD��A�XDD�You'd��A�YouC�you�A�'dC�'d�You'd've��A�YouC�you�A�'dC�would�A�'veC�have�You'll��A�YouC�you�A�'llC�will�You'll've��A�YouC�you�A�'llC�will�A�'veC�have�You're��A�YouC�you�A�'reC�are�You've��A�YouC�you�A�'veC�have�Youd��A�YouC�you�A�dC�'d�Youdve��A�YouC�you�A�dC�would�A�veC�have�Youll��A�YouC�you�A�llC�will�Youllve��A�YouC�you�A�llC�will�A�veC�have�Youre��A�YouC�you�A�reC�are�Youve��A�YouC�you�A�veC�have�You’d��A�YouC�you�A�’dC�'d�You’d’ve��A�YouC�you�A�’dC�would�A�’veC�have�You’ll��A�YouC�you�A�’llC�will�You’ll’ve��A�YouC�you�A�’llC�will�A�’veC�have�You’re��A�YouC�you�A�’reC�are�You’ve��A�YouC�you�A�’veC�have�[-:��A�[-:�[:��A�[:�[=��A�[=�\")��A�\")�\n��A�\n�\t��A�\t�]=��A�]=�^_^��A�^_^�^__^��A�^__^�^___^��A�^___^�a.��A�a.�a.m.��A�a.m.�ain't��A�ai�A�n'tC�not�aint��A�ai�A�ntC�not�ain’t��A�ai�A�n’tC�not�and/or��A�and/orC�and/or�aren't��A�areC�are�A�n'tC�not�arent��A�areC�are�A�ntC�not�aren’t��A�areC�are�A�n’tC�not�b.��A�b.�c'mon��A�c'mC�come�A�on�c.��A�c.�can't��A�caC�can�A�n'tC�not�can't've��A�caC�can�A�n'tC�not�A�'veC�have�cannot��A�can�A�not�cant��A�caC�can�A�ntC�not�cantve��A�caC�can�A�ntC�not�A�veC�have�can’t��A�caC�can�A�n’tC�not�can’t’ve��A�caC�can�A�n’tC�not�A�’veC�have�co.��A�co.�could've��A�couldC�could�A�'ve�couldn't��A�couldC�could�A�n'tC�not�couldn't've��A�couldC�could�A�n'tC�not�A�'veC�have�couldnt��A�couldC�could�A�ntC�not�couldntve��A�couldC�could�A�ntC�not�A�veC�have�couldn’t��A�couldC�could�A�n’tC�not�couldn’t’ve��A�couldC�could�A�n’tC�not�A�’veC�have�couldve��A�couldC�could�A�ve�could’ve��A�couldC�could�A�’ve�c’mon��A�c’mC�come�A�on�d.��A�d.�daren't��A�dareC�dare�A�n'tC�not�darent��A�dareC�dare�A�ntC�not�daren’t��A�dareC�dare�A�n’tC�not�didn't��A�didC�do�A�n'tC�not�didn't've��A�didC�do�A�n'tC�not�A�'veC�have�didnt��A�didC�do�A�ntC�not�didntve��A�didC�do�A�ntC�not�A�veC�have�didn’t��A�didC�do�A�n’tC�not�didn’t’ve��A�didC�do�A�n’tC�not�A�’veC�have�doesn't��A�doesC�does�A�n'tC�not�doesn't've��A�doesC�does�A�n'tC�not�A�'veC�have�doesnt��A�doesC�does�A�ntC�not�doesntve��A�doesC�does�A�ntC�not�A�veC�have�doesn’t��A�doesC�does�A�n’tC�not�doesn’t’ve��A�doesC�does�A�n’tC�not�A�’veC�have�doin��A�doinC�doing�doin'��A�doin'C�doing�doin’��A�doin’C�doing�don't��A�doC�do�A�n'tC�not�don't've��A�doC�do�A�n'tC�not�A�'veC�have�dont��A�doC�do�A�ntC�not�dontve��A�doC�do�A�ntC�not�A�veC�have�don’t��A�doC�do�A�n’tC�not�don’t’ve��A�doC�do�A�n’tC�not�A�’veC�have�e.��A�e.�e.g.��A�e.g.�em��A�emC�them�f.��A�f.�g.��A�g.�goin��A�goinC�going�goin'��A�goin'C�going�goin’��A�goin’C�going�gonna��A�gonC�going�A�naC�to�gotta��A�got�A�taC�to�h.��A�h.�hadn't��A�hadC�have�A�n'tC�not�hadn't've��A�hadC�have�A�n'tC�not�A�'veC�have�hadnt��A�hadC�have�A�ntC�not�hadntve��A�hadC�have�A�ntC�not�A�veC�have�hadn’t��A�hadC�have�A�n’tC�not�hadn’t’ve��A�hadC�have�A�n’tC�not�A�’veC�have�hasn't��A�hasC�has�A�n'tC�not�hasnt��A�hasC�has�A�ntC�not�hasn’t��A�hasC�has�A�n’tC�not�haven't��A�haveC�have�A�n'tC�not�havent��A�haveC�have�A�ntC�not�haven’t��A�haveC�have�A�n’tC�not�havin��A�havinC�having�havin'��A�havin'C�having�havin’��A�havin’C�having�he'd��A�heC�he�A�'dC�'d�he'd've��A�heC�he�A�'dC�would�A�'veC�have�he'll��A�heC�he�A�'llC�will�he'll've��A�heC�he�A�'llC�will�A�'veC�have�he's��A�heC�he�A�'sC�'s�hed��A�heC�he�A�dC�'d�hedve��A�heC�he�A�dC�would�A�veC�have�hellve��A�heC�he�A�llC�will�A�veC�have�hes��A�heC�he�A�s�he’d��A�heC�he�A�’dC�'d�he’d’ve��A�heC�he�A�’dC�would�A�’veC�have�he’ll��A�heC�he�A�’llC�will�he’ll’ve��A�heC�he�A�’llC�will�A�’veC�have�he’s��A�heC�he�A�’sC�'s�how'd��A�howC�how�A�'dC�'d�how'd've��A�howC�how�A�'dC�would�A�'veC�have�how'd'y��A�how�A�'d�A�'yC�you�how'll��A�howC�how�A�'llC�will�how'll've��A�howC�how�A�'llC�will�A�'veC�have�how're��A�howC�how�A�'reC�are�how's��A�howC�how�A�'sC�'s�how've��A�howC�how�A�'ve�howd��A�howC�how�A�dC�'d�howdve��A�howC�how�A�dC�would�A�veC�have�howll��A�howC�how�A�llC�will�howllve��A�howC�how�A�llC�will�A�veC�have�howre��A�howC�how�A�reC�are�hows��A�howC�how�A�s�howve��A�how�A�veC�have�how’d��A�howC�how�A�’dC�'d�how’d’ve��A�howC�how�A���dC�would�A�’veC�have�how’d’y��A�how�A�’d�A�’yC�you�how’ll��A�howC�how�A�’llC�will�how’ll’ve��A�howC�how�A�’llC�will�A�’veC�have�how’re��A�howC�how�A�’reC�are�how’s��A�howC�how�A�’sC�'s�how’ve��A�howC�how�A�’ve�i'd��A�iC�i�A�'dC�'d�i'd've��A�iC�i�A�'dC�would�A�'veC�have�i'll��A�iC�i�A�'llC�will�i'll've��A�iC�i�A�'llC�will�A�'veC�have�i'm��A�iC�i�A�'mC�am�i'ma��A�iC�i�A�'mC�am�A�aC�gonna�i've��A�iC�i�A�'veC�have�i.��A�i.�i.e.��A�i.e.�id��A�iC�i�A�dC�'d�idve��A�iC�i�A�dC�would�A�veC�have�illve��A�iC�i�A�llC�will�A�veC�have�im��A�iC�i�A�m�ima��A�iC�i�A�mC�am�A�aC�gonna�isn't��A�isC�is�A�n'tC�not�isnt��A�isC�is�A�ntC�not�isn’t��A�isC�is�A�n’tC�not�it'd��A�itC�it�A�'dC�'d�it'd've��A�itC�it�A�'dC�would�A�'veC�have�it'll��A�itC�it�A�'llC�will�it'll've��A�itC�it�A�'llC�will�A�'veC�have�it's��A�itC�it�A�'sC�'s�itd��A�itC�it�A�dC�'d�itdve��A�itC�it�A�dC�would�A�veC�have�itll��A�itC�it�A�llC�will�itllve��A�itC�it�A�llC�will�A�veC�have�it’d��A�itC�it�A�’dC�'d�it’d’ve��A�itC�it�A�’dC�would�A�’veC�have�it’ll��A�itC�it�A�’llC�will�it’ll’ve��A�itC�it�A�’llC�will�A�’veC�have�it’s��A�itC�it�A�’sC�'s�ive��A�iC�i�A�veC�have�i’d��A�iC�i�A�’dC�'d�i’d’ve��A�iC�i�A�’dC�would�A�’veC�have�i’ll��A�iC�i�A�’llC�will�i’ll’ve��A�iC�i�A�’llC�will�A�’veC�have�i’m��A�iC�i�A�’mC�am�i’ma��A�iC�i�A�’mC�am�A�aC�gonna�i’ve��A�iC�i�A�’veC�have�j.��A�j.�k.��A�k.�l.��A�l.�let's��A�let�A�'sC�us�let’s��A�let�A�’sC�us�ll��A�llC�will�lovin��A�lovinC�loving�lovin'��A�lovin'C�loving�lovin’��A�lovin’C�loving�m.��A�m.�ma'am��A�ma'amC�madam�mayn't��A�mayC�may�A�n'tC�not�mayn't've��A�mayC�may�A�n'tC�not�A�'veC�have�maynt��A�mayC�may�A�ntC�not�mayntve��A�mayC�may�A�ntC�not�A�veC�have�mayn’t��A�mayC�may�A�n’tC�not�mayn’t’ve��A�mayC�may�A�n’tC�not�A�’veC�have�ma’am��A�ma’amC�madam�might've��A�mightC�might�A�'ve�mightn't��A�mightC�might�A�n'tC�not�mightn't've��A�mightC�might�A�n'tC�not�A�'veC�have�mightnt��A�mightC�might�A�ntC�not�mightntve��A�mightC�might�A�ntC�not�A�veC�have�mightn’t��A�mightC�might�A�n’tC�not�mightn’t’ve��A�mightC�might�A�n’tC�not�A�’veC�have�mightve��A�mightC�might�A�ve�might’ve��A�mightC�might�A�’ve�must've��A�mustC�must�A�'ve�mustn't��A�mustC�must�A�n'tC�not�mustn't've��A�mustC�must�A�n'tC�not�A�'veC�have�mustnt��A�mustC�must�A�ntC�not�mustntve��A�mustC�must�A�ntC�not�A�veC�have�mustn’t��A�mustC�must�A�n’tC�not�mustn’t’ve��A�mustC�must�A�n’tC�not�A�’veC�have�mustve��A�mustC�must�A�ve�must’ve��A�mustC�must�A�’ve�n.��A�n.�needn't��A�needC�need�A�n'tC�not�needn't've��A�needC�need�A�n'tC�not�A�'veC�have�neednt��A�needC�need�A�ntC�not�needntve��A�needC�need�A�ntC�not�A�veC�have�needn’t��A�needC�need�A�n’tC�not�needn’t’ve��A�needC�need�A�n’tC�not�A�’veC�have�not've��A�not�A�'veC�have�nothin��A�nothinC�nothing�nothin'��A�nothin'C�nothing�nothin’��A�nothin’C�nothing�notve��A�not�A�veC�have�not’ve��A�not�A�’veC�have�nuff��A�nuffC�enough�nuthin��A�nuthinC�nothing�nuthin'��A�nuthin'C�nothing�nuthin’��A�nuthin’C�nothing�o'clock��A�o'clockC�o'clock�o.��A�o.�o.0��A�o.0�o.O��A�o.O�o.o��A�o.o�o_0��A�o_0�o_O��A�o_O�o_o��A�o_o�ol��A�olC�old�ol'��A�ol'C�old�ol’��A�ol’C�old�oughtn't��A�oughtC�ought�A�n'tC�not�oughtn't've��A�oughtC�ought�A�n'tC�not�A�'veC�have�oughtnt��A�oughtC�ought�A�ntC�not�oughtntve��A�oughtC�ought�A�ntC�not�A�veC�have�oughtn’t��A�oughtC�ought�A�n’tC�not�oughtn’t’ve��A�oughtC�ought�A�n’tC�not�A�’veC�have�o’clock��A�o’clockC�o'clock�p.��A�p.�p.m.��A�p.m.�q.��A�q.�r.��A�r.�s.��A�s.�shan't��A�shaC�shall�A�n'tC�not�shan't've��A�shaC�shall�A�n'tC�not�A�'veC�have�shant��A�shaC�shall�A�ntC�not�shantve��A�shaC�shall�A�ntC�not�A�veC�have�shan’t��A�shaC�shall�A�n’tC�not�shan’t’ve��A�shaC�shall�A�n’tC�not�A�’veC�have�she'd��A�sheC�she�A�'dC�'d�she'd've��A�sheC�she�A�'dC�would�A�'veC�have�she'll��A�sheC�she�A�'llC�will�she'll've��A�sheC�she�A�'llC�will�A�'veC�have�she's��A�sheC�she�A�'sC�'s�shedve��A�sheC�she�A�dC�would�A�veC�have�shellve��A�sheC�she�A�llC�will�A�veC�have�shes��A�sheC�she�A�s�she’d��A�sheC�she�A�’dC�'d�she’d’ve��A�sheC�she�A�’dC�would�A�’veC�have�she’ll��A�sheC�she�A�’llC�will�she’ll’ve��A�sheC�she�A�’llC�will�A�’veC�have�she’s��A�sheC�she�A�’sC�'s�should've��A�shouldC�should�A�'ve�shouldn't��A�shouldC�should�A�n'tC�not�shouldn't've��A�shouldC�should�A�n'tC�not�A�'veC�have�shouldnt��A�shouldC�should�A�ntC�not�shouldntve��A�shouldC�should�A�ntC�not�A�veC�have�shouldn’t��A�shouldC�should�A�n’tC�not�shouldn’t’ve��A�shouldC�should�A�n’tC�not�A�’veC�have�shouldve��A�shouldC�should�A�ve�should’ve��A�shouldC�should�A�’ve�somethin��A�somethinC�something�somethin'��A�somethin'C�something�somethin’��A�somethin’C�something�t.��A�t.�that'd��A�thatC�that�A�'dC�'d�that'd've��A�thatC�that�A�'dC�would�A�'veC�have�that'll��A�thatC�that�A�'llC�will�that'll've��A�thatC�that�A�'llC�will�A�'veC�have�that's��A�thatC�that�A�'sC�'s�thatd��A�thatC�that�A�dC�'d�thatdve��A�thatC�that�A�dC�would�A�veC�have�thatll��A�thatC�that�A�llC�will�thatllve��A�thatC�that�A�llC�will�A�veC�have�thats��A�thatC�that�A�s�that’d��A�thatC�that�A�’dC�'d�that’d’ve��A�thatC�that�A�’dC�would�A�’veC�have�that’ll��A�thatC�that�A�’llC�will�that’ll’ve��A�thatC�that�A�’llC�will�A�’veC�have�that’s��A�thatC�that�A�’sC�'s�there'd��A�thereC�there�A�'dC�'d�there'd've��A�thereC�there�A�'dC�would�A�'veC�have�there'll��A�thereC�there�A�'llC�will�there'll've��A�thereC�there�A�'llC�will�A�'veC�have�there're��A�thereC�there�A�'reC�are�there's��A�thereC�there�A�'sC�'s�there've��A�thereC�there�A�'ve�thered��A�thereC�there�A�dC�'d�theredve��A�thereC�there�A�dC�would�A�veC�have�therell��A�thereC�there�A�llC�will�therellve��A�thereC�there�A�llC�will�A�veC�have�therere��A�thereC�there�A�reC�are�theres��A�thereC�there�A�s�thereve��A�there�A�veC�have�there’d��A�thereC�there�A�’dC�'d�there’d’ve��A�thereC�there�A�’dC�would�A�’veC�have�there’ll��A�thereC�there�A�’llC�will�there’ll’ve��A�thereC�there�A�’llC�will�A�’veC�have�there’re��A�thereC�there�A�’reC�are�there’s��A�thereC�there�A�’sC�'s�there’ve��A�thereC�there�A�’ve�these'd��A�theseC�these�A�'dC�'d�these'd've��A�theseC�these�A�'dC�would�A�'veC�have�these'll��A�theseC�these�A�'llC�will�these'll've��A�theseC�these�A�'llC�will�A�'veC�have�these're��A�theseC�these�A�'reC�are�these've��A�theseC�these�A�'ve�thesed��A�theseC�these�A�dC�'d�thesedve��A�theseC�these�A�dC�would�A�veC�have�thesell��A�theseC�these�A�llC�will�thesellve��A�theseC�these�A�llC�will�A�veC�have�thesere��A�theseC�these�A�reC�are�theseve��A�these�A�veC�have�these’d��A�theseC�these�A�’dC�'d�these’d’ve��A�theseC�these�A�’dC�would�A�’veC�have�these’ll��A�theseC�these�A�’llC�will�these’ll’ve��A�theseC�these�A�’llC�will�A�’veC�have�these’re��A�theseC�these�A�’reC�are�these’ve��A�theseC�these�A�’ve�they'd��A�theyC�they�A�'dC�'d�they'd've��A�theyC�they�A�'dC�would�A�'veC�have�they'll��A�theyC�they�A�'llC�will�they'll've��A�theyC�they�A�'llC�will�A�'veC�have�they're��A�theyC�they�A�'reC�are�they've��A�theyC�they�A�'veC�have�theyd��A�theyC�they�A�dC�'d�theydve��A�theyC�they�A�dC�would�A�veC�have�theyll��A�theyC�they�A�llC�will�theyllve��A�theyC�they�A�llC�will�A�veC�have�theyre��A�theyC�they�A�reC�are�theyve��A�theyC�they�A�veC�have�they’d��A�theyC�they�A�’dC�'d�they’d’ve��A�theyC�they�A�’dC�would�A�’veC�have�they’ll��A�theyC�they�A�’llC�will�they’ll’ve��A�theyC�they�A�’llC�will�A�’veC�have�they’re��A�theyC�they�A�’reC�are�they’ve��A�theyC�they�A�’veC�have�this'd��A�thisC�this�A�'dC�'d�this'd've��A�thisC�this�A�'dC�would�A�'veC�have�this'll��A�thisC�this�A�'llC�will�this'll've��A�thisC�this�A�'llC�will�A�'veC�have�this's��A�thisC�this�A�'sC�'s�thisd��A�thisC�this�A�dC�'d�thisdve��A�thisC�this�A�dC�would�A�veC�have�thisll��A�thisC�this�A�llC�will�thisllve��A�thisC�this�A�llC�will�A�veC�have�thiss��A�thisC�this�A�s�this’d��A�thisC�this�A�’dC�'d�this’d’ve��A�thisC�this�A�’dC�would�A�’veC�have�this’ll��A�thisC�this�A�’llC�will�this’ll’ve��A�thisC�this�A�’llC�will�A�’veC�have�this’s��A�thisC�this�A�’sC�'s�those'd��A�thoseC�those�A�'dC�'d�those'd've��A�thoseC�those�A�'dC�would�A�'veC�have�those'll��A�thoseC�those�A�'llC�will�those'll've��A�thoseC�those�A�'llC�will�A�'veC�have�those're��A�thoseC�those�A�'reC�are�those've��A�thoseC�those�A�'ve�thosed��A�thoseC�those�A�dC�'d�thosedve��A�thoseC�those�A�dC�would�A�veC�have�thosell��A�thoseC�those�A�llC�will�thosellve��A�thoseC�those�A�llC�will�A�veC�have�thosere��A�thoseC�those�A�reC�are�thoseve��A�those�A�veC�have�those’d��A�thoseC�those�A�’dC�'d�those’d’ve��A�thoseC�those�A�’dC�would�A�’veC�have�those’ll��A�thoseC�those�A�’llC�will�those’ll’ve��A�thoseC�those�A�’llC�will�A�’veC�have�those’re��A�thoseC�those�A�’reC�are�those’ve��A�thoseC�those�A�’ve�u.��A�u.�v.��A�v.�v.s.��A�v.s.�v.v��A�v.v�v_v��A�v_v�vs.��A�vs.�w.��A�w.�w/o��A�w/oC�without�wasn't��A�wasC�was�A�n'tC�not�wasnt��A�wasC�was�A�ntC�not�wasn’t��A�wasC�was�A�n’tC�not�we'd��A�weC�we�A�'dC�'d�we'd've��A�weC�we�A�'dC�would�A�'veC�have�we'll��A�weC�we�A�'llC�will�we'll've��A�weC�we�A�'llC�will�A�'veC�have�we're��A�weC�we�A�'reC�are�we've��A�weC�we�A�'veC�have�wed��A�weC�we�A�dC�'d�wedve��A�weC�we�A�dC�would�A�veC�have�wellve��A�weC�we�A�llC�will�A�veC�have�weren't��A�wereC�were�A�n'tC�not�werent��A�wereC�were�A�ntC�not�weren’t��A�wereC�were�A�n’tC�not�weve��A�weC�we�A�veC�have�we’d��A�weC�we�A�’dC�'d�we’d’ve��A�weC�we�A�’dC�would�A�’veC�have�we’ll��A�weC�we�A�’llC�will�we’ll’ve��A�weC�we�A�’llC�will�A�’veC�have�we’re��A�weC�we�A�’reC�are�we’ve��A�weC�we�A�’veC�have�what'd��A�whatC�what�A�'dC�'d�what'd've��A�whatC�what�A�'dC�would�A�'veC�have�what'll��A�whatC�what�A�'llC�will�what'll've��A�whatC�what�A�'llC�will�A�'veC�have�what're��A�whatC�what�A�'reC�are�what's��A�whatC�what�A�'sC�'s�what've��A�whatC�what�A�'ve�whatd��A�whatC�what�A�dC�'d�whatdve��A�whatC�what�A�dC�would�A�veC�have�whatll��A�whatC�what�A�llC�will�whatllve��A�whatC�what�A�llC�will�A�veC�have�whatre��A�whatC�what�A�reC�are�whats��A�whatC�what�A�s�whatve��A�what�A�veC�have�what’d��A�whatC�what�A�’dC�'d�what’d’ve��A�whatC�what�A�’dC�would�A�’veC�have�what’ll��A�whatC�what�A�’llC�will�what’ll’ve��A�whatC�what�A�’llC�will�A�’veC�have�what’re��A�whatC�what�A�’reC�are�what’s��A�whatC�what�A�’sC�'s�what’ve��A�whatC�what�A�’ve�when'd��A�whenC�when�A�'dC�'d�when'd've��A�whenC�when�A�'dC�would�A�'veC�have�when'll��A�whenC�when�A�'llC�will�when'll've��A�whenC�when�A�'llC�will�A�'veC�have�when're��A�whenC�when�A�'reC�are�when's��A�whenC�when�A�'sC�'s�when've��A�whenC�when�A�'ve�whend��A�whenC�when�A�dC�'d�whendve��A�whenC�when�A�dC�would�A�veC�have�whenll��A�whenC�when�A�llC�will�whenllve��A�whenC�when�A�llC�will�A�veC�have�whenre��A�whenC�when�A�reC�are�whens��A�whenC�when�A�s�whenve��A�when�A�veC�have�when’d��A�whenC�when�A�’dC�'d�when’d’ve��A�whenC�when�A�’dC�would�A�’veC�have�when’ll��A�whenC�when�A�’llC�will�when’ll’ve��A�whenC�when�A�’llC�will�A�’veC�have�when’re��A�whenC�when�A�’reC�are�when’s��A�whenC�when�A�’sC�'s�when’ve��A�whenC�when�A�’ve�where'd��A�whereC�where�A�'dC�'d�where'd've��A�whereC�where�A�'dC�would�A�'veC�have�where'll��A�whereC�where�A�'llC�will�where'll've��A�whereC�where�A�'llC�will�A�'veC�have�where're��A�whereC�where�A�'reC�are�where's��A�whereC�where�A�'sC�'s�where've��A�whereC�where�A�'ve�whered��A�whereC�where�A�dC�'d�wheredve��A�whereC�where�A�dC�would�A�veC�have�wherell��A�whereC�where�A�llC�will�wherellve��A�whereC�where�A�llC�will�A�veC�have�wherere��A�whereC�where�A�reC�are�wheres��A�whereC�where�A�s�whereve��A�where�A�veC�have�where’d��A�whereC�where�A�’dC�'d�where’d’ve��A�whereC�where�A�’dC�would�A�’veC�have�where’ll��A�whereC�where�A�’llC�will�where’ll’ve��A�whereC�where�A�’llC�will�A�’veC�have�where’re��A�whereC�where�A�’reC�are�where’s��A�whereC�where�A�’sC�'s�where’ve��A�whereC�where�A�’ve�who'd��A�whoC�who�A�'dC�'d�who'd've��A�whoC�who�A�'dC�would�A�'veC�have�who'll��A�whoC�who�A�'llC�will�who'll've��A�whoC�who�A�'llC�will�A�'veC�have�who're��A�whoC�who�A�'reC�are�who's��A�whoC�who�A�'sC�'s�who've��A�whoC�who�A�'ve�whod��A�whoC�who�A�dC�'d�whodve��A�whoC�who�A�dC�would�A�veC�have�wholl��A�whoC�who�A�llC�will�whollve��A�whoC�who�A�llC�will�A�veC�have�whos��A�whoC�who�A�s�whove��A�who�A�veC�have�who’d��A�whoC�who�A�’dC�'d�who’d’ve��A�whoC�who�A�’dC�would�A�’veC�have�who’ll��A�whoC�who�A�’llC�will�who’ll’ve��A�whoC�who�A�’llC�will�A�’veC�have�who’re��A�whoC�who�A�’reC�are�who’s��A�whoC�who�A�’sC�'s�who’ve��A�whoC�who�A�’ve�why'd��A�whyC�why�A�'dC�'d�why'd've��A�whyC�why�A�'dC�would�A�'veC�have�why'll��A�whyC�why�A�'llC�will�why'll've��A�whyC�why�A�'llC�will�A�'veC�have�why're��A�whyC�why�A�'reC�are�why's��A�whyC�why�A�'sC�'s�why've��A�whyC�why�A�'ve�whyd��A�whyC�why�A�dC�'d�whydve��A�whyC�why�A�dC�would�A�veC�have�whyll��A�whyC�why�A�llC�will�whyllve��A�whyC�why�A�llC�will�A�veC�have�whyre��A�whyC�why�A�reC�are�whys��A�whyC�why�A�s�whyve��A�why�A�veC�have�why’d��A�whyC�why�A�’dC�'d�why’d’ve��A�whyC�why�A�’dC�would�A�’veC�have�why’ll��A�whyC�why�A�’llC�will�why’ll’ve��A�whyC�why�A�’llC�will�A�’veC�have�why’re��A�whyC�why�A�’reC�are�why’s��A�whyC�why�A�’sC�'s�why’ve��A�whyC�why�A�’ve�won't��A�woC�will�A�n'tC�not�won't've��A�woC�will�A�n'tC�not�A�'veC�have�wont��A�woC�will�A�ntC�not�wontve��A�woC�will�A�ntC�not�A�veC�have�won’t��A�woC�will�A�n’tC�not�won’t’ve��A�woC�will�A�n’tC�not�A�’veC�have�would've��A�wouldC�would�A�'ve�wouldn't��A�wouldC�would�A�n'tC�not�wouldn't've��A�wouldC�would�A�n'tC�not�A�'veC�have�wouldnt��A�wouldC�would�A�ntC�not�wouldntve��A�wouldC�would�A�ntC�not�A�veC�have�wouldn’t��A�wouldC�would�A�n’tC�not�wouldn’t’ve��A�wouldC�would�A�n’tC�not�A�’veC�have�wouldve��A�wouldC�would�A�ve�would’ve��A�wouldC�would�A�’ve�x.��A�x.�xD��A�xD�xDD��A�xDD�y'all��A�y'C�you�A�all�y.��A�y.�yall��A�yC�you�A�all�you'd��A�youC�you�A�'dC�'d�you'd've��A�youC�you�A�'dC�would�A�'veC�have�you'll��A�youC�you�A�'llC�will�you'll've��A�youC�you�A�'llC�will�A�'veC�have�you're��A�youC�you�A�'reC�are�you've��A�youC�you�A�'veC�have�youd��A�youC�you�A�dC�'d�youdve��A�youC�you�A�dC�would�A�veC�have�youll��A�youC�you�A�llC�will�youllve��A�youC�you�A�llC�will�A�veC�have�youre��A�youC�you�A�reC�are�youve��A�youC�you�A�veC�have�you’d��A�youC�you�A�’dC�'d�you’d’ve��A�youC�you�A�’dC�would�A�’veC�have�you’ll��A�youC�you�A�’llC�will�you’ll’ve��A�youC�you�A�’llC�will�A�’veC�have�you’re��A�youC�you�A�’reC�are�you’ve��A�youC�you�A�’veC�have�y’all��A�y’C�you�A�all�z.��A�z.� ��A� C� �¯\(ツ)/¯��A�¯\(ツ)/¯�°C.��A�°�A�C�A�.�°F.��A�°�A�F�A�.�°K.��A�°�A�K�A�.�°c.��A�°�A�c�A�.�°f.��A�°�A�f�A�.�°k.��A�°�A�k�A�.�ä.��A�ä.�ö.��A�ö.�ü.��A�ü.�ಠ_ಠ��A�ಠ_ಠ�ಠ︵ಠ��A�ಠ︵ಠ�—��A�—�‘S��A�‘SC�'s�‘s��A�‘sC�'s�’��A�’�’Cause��A�’CauseC�because�’Cos��A�’CosC�because�’Coz��A�’CozC�because�’Cuz��A�’CuzC�because�’S��A�’SC�'s�’bout��A�’boutC�about�’cause��A�’causeC�because�’cos��A�’cosC�because�’coz��A�’cozC�because�’cuz��A�’cuzC�because�’d��A�’d�’em��A�’emC�them�’ll��A�’llC�will�’nuff��A�’nuffC�enough�’re��A�’reC�are�’s��A�’sC�'s�’’��A�’’�faster_heuristics�
vocab/key2row ADDED
@@ -0,0 +1 @@
 
 
1
+
vocab/lookups.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:76be8b528d0075f7aae98d6fa57a6d3c83ae480a8469e668d7b0af968995ac71
3
+ size 1
vocab/strings.json ADDED
@@ -0,0 +1,3443 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ "\t",
3
+ "\n",
4
+ " ",
5
+ " ",
6
+ "!",
7
+ "\"",
8
+ "$",
9
+ "%",
10
+ "&",
11
+ "'",
12
+ "''",
13
+ "'-(",
14
+ "'-)",
15
+ "'Cause",
16
+ "'Cos",
17
+ "'Coz",
18
+ "'Cuz",
19
+ "'S",
20
+ "'X",
21
+ "'Xxx",
22
+ "'Xxxxx",
23
+ "'am",
24
+ "'bout",
25
+ "'cause",
26
+ "'cos",
27
+ "'coz",
28
+ "'cuz",
29
+ "'d",
30
+ "'em",
31
+ "'ll",
32
+ "'m",
33
+ "'nuff",
34
+ "'re",
35
+ "'s",
36
+ "'ve",
37
+ "'x",
38
+ "'xx",
39
+ "'xxx",
40
+ "'xxxx",
41
+ "'y",
42
+ "(",
43
+ "(((",
44
+ "(*>",
45
+ "(*_*)",
46
+ "(-8",
47
+ "(-:",
48
+ "(-;",
49
+ "(-_-)",
50
+ "(-d",
51
+ "(._.)",
52
+ "(:",
53
+ "(;",
54
+ "(=",
55
+ "(>_<)",
56
+ "(^_^)",
57
+ "(o:",
58
+ "(x:",
59
+ "(x_x)",
60
+ "(\u00ac_\u00ac)",
61
+ "(\u0ca0_\u0ca0)",
62
+ "(\u256f\u00b0\u25a1\u00b0\uff09\u256f\ufe35\u253b\u2501\u253b",
63
+ ")",
64
+ ")))",
65
+ ")-:",
66
+ ")/\u00af",
67
+ "):",
68
+ "*",
69
+ ",",
70
+ "-",
71
+ "-((",
72
+ "-))",
73
+ "-/",
74
+ "-0",
75
+ "-3",
76
+ "-8",
77
+ "-D",
78
+ "-O",
79
+ "-P",
80
+ "-X",
81
+ "-_-",
82
+ "-__-",
83
+ "-d",
84
+ "-o",
85
+ "-p",
86
+ "-x",
87
+ "-|",
88
+ ".",
89
+ ".C.",
90
+ ".D.",
91
+ ".E.",
92
+ ".G.",
93
+ ".H.",
94
+ ".J.",
95
+ ".M.",
96
+ ".Y.",
97
+ "._.",
98
+ ".e.",
99
+ ".g.",
100
+ ".m.",
101
+ ".s.",
102
+ "/",
103
+ "/10",
104
+ "/3",
105
+ "/d",
106
+ "/or",
107
+ "0",
108
+ "0.0",
109
+ "0.o",
110
+ "000",
111
+ "0_0",
112
+ "0_o",
113
+ "1",
114
+ "10",
115
+ "100",
116
+ "10a.m",
117
+ "10a.m.",
118
+ "10p.m",
119
+ "10p.m.",
120
+ "11",
121
+ "11a.m",
122
+ "11a.m.",
123
+ "11p.m",
124
+ "11p.m.",
125
+ "12",
126
+ "125",
127
+ "12a.m",
128
+ "12a.m.",
129
+ "12p.m",
130
+ "12p.m.",
131
+ "14",
132
+ "15",
133
+ "16",
134
+ "18",
135
+ "1a.m",
136
+ "1a.m.",
137
+ "1p.m",
138
+ "1p.m.",
139
+ "2",
140
+ "20",
141
+ "200",
142
+ "25,000",
143
+ "2a.m",
144
+ "2a.m.",
145
+ "2p.m",
146
+ "2p.m.",
147
+ "3",
148
+ "30",
149
+ "33",
150
+ "333",
151
+ "3:45",
152
+ "3a.m",
153
+ "3a.m.",
154
+ "3p.m",
155
+ "3p.m.",
156
+ "3x",
157
+ "4",
158
+ "4:00",
159
+ "4:10",
160
+ "4:30",
161
+ "4a.m",
162
+ "4a.m.",
163
+ "4p.m",
164
+ "4p.m.",
165
+ "5",
166
+ "5/6/10",
167
+ "50",
168
+ "5a.m",
169
+ "5a.m.",
170
+ "5p.m",
171
+ "5p.m.",
172
+ "6",
173
+ "6a.m",
174
+ "6a.m.",
175
+ "6p.m",
176
+ "6p.m.",
177
+ "7",
178
+ "70s",
179
+ "7a.m",
180
+ "7a.m.",
181
+ "7p.m",
182
+ "7p.m.",
183
+ "8",
184
+ "8)",
185
+ "8-",
186
+ "8-)",
187
+ "8-D",
188
+ "8-d",
189
+ "80",
190
+ "84",
191
+ "8D",
192
+ "8a.m",
193
+ "8a.m.",
194
+ "8d",
195
+ "8p.m",
196
+ "8p.m.",
197
+ "9",
198
+ "90",
199
+ "91",
200
+ "9a.m",
201
+ "9a.m.",
202
+ "9p.m",
203
+ "9p.m.",
204
+ ":",
205
+ ":'(",
206
+ ":')",
207
+ ":'-(",
208
+ ":'-)",
209
+ ":(",
210
+ ":((",
211
+ ":(((",
212
+ ":()",
213
+ ":)",
214
+ ":))",
215
+ ":)))",
216
+ ":*",
217
+ ":-(",
218
+ ":-((",
219
+ ":-(((",
220
+ ":-)",
221
+ ":-))",
222
+ ":-)))",
223
+ ":-*",
224
+ ":-/",
225
+ ":-0",
226
+ ":-3",
227
+ ":->",
228
+ ":-D",
229
+ ":-O",
230
+ ":-P",
231
+ ":-X",
232
+ ":-]",
233
+ ":-d",
234
+ ":-o",
235
+ ":-p",
236
+ ":-x",
237
+ ":-|",
238
+ ":-}",
239
+ ":/",
240
+ ":0",
241
+ ":00",
242
+ ":1",
243
+ ":10",
244
+ ":3",
245
+ ":30",
246
+ ":45",
247
+ ":>",
248
+ ":D",
249
+ ":O",
250
+ ":P",
251
+ ":X",
252
+ ":]",
253
+ ":d",
254
+ ":o",
255
+ ":o)",
256
+ ":p",
257
+ ":x",
258
+ ":x)",
259
+ ":|",
260
+ ":}",
261
+ ":\u2019(",
262
+ ":\u2019)",
263
+ ":\u2019-(",
264
+ ":\u2019-)",
265
+ ";",
266
+ ";)",
267
+ ";-)",
268
+ ";-D",
269
+ ";-X",
270
+ ";-d",
271
+ ";D",
272
+ ";X",
273
+ ";_;",
274
+ ";d",
275
+ "<",
276
+ "<.<",
277
+ "</3",
278
+ "</d",
279
+ "<3",
280
+ "<33",
281
+ "<333",
282
+ "<d",
283
+ "<dd",
284
+ "<ddd",
285
+ "<space>",
286
+ "<xxxx>",
287
+ "=",
288
+ "=(",
289
+ "=)",
290
+ "=/",
291
+ "=3",
292
+ "=D",
293
+ "=X",
294
+ "=[",
295
+ "=]",
296
+ "=d",
297
+ "=|",
298
+ ">",
299
+ ">.<",
300
+ ">.>",
301
+ ">:(",
302
+ ">:o",
303
+ ">:x",
304
+ "><(((*>",
305
+ "@",
306
+ "@_@",
307
+ "A",
308
+ "ACTION",
309
+ "About",
310
+ "Adm",
311
+ "Adm.",
312
+ "After",
313
+ "Ai",
314
+ "Airbnb",
315
+ "Ak",
316
+ "Ak.",
317
+ "Ala",
318
+ "Ala.",
319
+ "Alabama",
320
+ "Alaska",
321
+ "Aldis",
322
+ "Also",
323
+ "And",
324
+ "Appetit",
325
+ "Apr",
326
+ "Apr.",
327
+ "April",
328
+ "Are",
329
+ "Ariz",
330
+ "Ariz.",
331
+ "Arizona",
332
+ "Ark",
333
+ "Ark.",
334
+ "Arkansas",
335
+ "Arrives",
336
+ "Artichoke",
337
+ "As",
338
+ "At",
339
+ "Attending",
340
+ "Attends",
341
+ "Aug",
342
+ "Aug.",
343
+ "August",
344
+ "Avoids",
345
+ "Azamara",
346
+ "B",
347
+ "Barcelona",
348
+ "Beach_A",
349
+ "Begins",
350
+ "Berry",
351
+ "Best",
352
+ "Beverage",
353
+ "Bon",
354
+ "Boxing",
355
+ "Brings",
356
+ "Bros",
357
+ "Bros.",
358
+ "Bux",
359
+ "By",
360
+ "C",
361
+ "C'm",
362
+ "C++",
363
+ "C.",
364
+ "CT",
365
+ "Ca",
366
+ "Calif",
367
+ "Calif.",
368
+ "California",
369
+ "Calls",
370
+ "Can",
371
+ "Car",
372
+ "Carlo",
373
+ "Carries",
374
+ "Catches",
375
+ "Cause",
376
+ "Chats",
377
+ "Chicago",
378
+ "Chucks",
379
+ "City_A",
380
+ "Cleaning",
381
+ "Cleans",
382
+ "Climbs",
383
+ "Closes",
384
+ "Club",
385
+ "Co",
386
+ "Co.",
387
+ "Colo",
388
+ "Colo.",
389
+ "Colorado",
390
+ "Completes",
391
+ "Completing",
392
+ "Conn",
393
+ "Conn.",
394
+ "Connecticut",
395
+ "Corp",
396
+ "Corp.",
397
+ "Cos",
398
+ "Could",
399
+ "Coz",
400
+ "Cuz",
401
+ "C\u2019m",
402
+ "D",
403
+ "D.",
404
+ "D.C.",
405
+ "DAY",
406
+ "Dare",
407
+ "David",
408
+ "Day",
409
+ "Dec",
410
+ "Dec.",
411
+ "December",
412
+ "Deep",
413
+ "Del",
414
+ "Del.",
415
+ "Delaware",
416
+ "Delta",
417
+ "Depot",
418
+ "Dessert",
419
+ "Determines",
420
+ "Did",
421
+ "Do",
422
+ "Does",
423
+ "Doin",
424
+ "Doin'",
425
+ "Doin\u2019",
426
+ "Dr",
427
+ "Dr.",
428
+ "Drive",
429
+ "Drives",
430
+ "E",
431
+ "E.G.",
432
+ "E.g",
433
+ "E.g.",
434
+ "EMOTION",
435
+ "ERY",
436
+ "Each",
437
+ "Eats",
438
+ "Enters",
439
+ "Europe",
440
+ "Evening",
441
+ "Event",
442
+ "Eventually",
443
+ "Everyone",
444
+ "Exits",
445
+ "Express",
446
+ "F",
447
+ "F.",
448
+ "Fe",
449
+ "Feb",
450
+ "Feb.",
451
+ "February",
452
+ "Fills",
453
+ "Finally",
454
+ "Finishes",
455
+ "First",
456
+ "Fla",
457
+ "Fla.",
458
+ "Florida",
459
+ "Folds",
460
+ "Food",
461
+ "Four",
462
+ "France",
463
+ "Friday",
464
+ "Friend",
465
+ "G",
466
+ "Ga",
467
+ "Ga.",
468
+ "Gathers",
469
+ "Gen",
470
+ "Gen.",
471
+ "Genoa",
472
+ "Georgia",
473
+ "Get",
474
+ "Gets",
475
+ "Go",
476
+ "Goes",
477
+ "Goin",
478
+ "Goin'",
479
+ "Going",
480
+ "Goin\u2019",
481
+ "Gon",
482
+ "Got",
483
+ "Gov",
484
+ "Gov.",
485
+ "Grabs",
486
+ "Greets",
487
+ "Grills",
488
+ "Grocery",
489
+ "H",
490
+ "Had",
491
+ "Has",
492
+ "Have",
493
+ "Haven",
494
+ "Havin",
495
+ "Havin'",
496
+ "Havin\u2019",
497
+ "He",
498
+ "He's",
499
+ "Heads",
500
+ "Her",
501
+ "He\u2019s",
502
+ "Him",
503
+ "His",
504
+ "Holds",
505
+ "Home",
506
+ "Household",
507
+ "How",
508
+ "How's",
509
+ "How\u2019s",
510
+ "I",
511
+ "I.E.",
512
+ "I.e",
513
+ "I.e.",
514
+ "IMAGERY",
515
+ "Ia",
516
+ "Ia.",
517
+ "Id",
518
+ "Id.",
519
+ "Idaho",
520
+ "Ill",
521
+ "Ill.",
522
+ "Illinois",
523
+ "Imagery",
524
+ "In",
525
+ "Inc",
526
+ "Inc.",
527
+ "Ind",
528
+ "Ind.",
529
+ "Indiana",
530
+ "Inserts",
531
+ "Iowa",
532
+ "Is",
533
+ "Island",
534
+ "It",
535
+ "It's",
536
+ "Italy",
537
+ "It\u2019s",
538
+ "J",
539
+ "JFK",
540
+ "Jan",
541
+ "Jan.",
542
+ "January",
543
+ "Jr",
544
+ "Jr.",
545
+ "Jul",
546
+ "Jul.",
547
+ "July",
548
+ "Jun",
549
+ "Jun.",
550
+ "June",
551
+ "K",
552
+ "K.",
553
+ "Kan",
554
+ "Kan.",
555
+ "Kans",
556
+ "Kans.",
557
+ "Kansas",
558
+ "Kentucky",
559
+ "Kindle",
560
+ "Ky",
561
+ "Ky.",
562
+ "L",
563
+ "LOCATION",
564
+ "La",
565
+ "La.",
566
+ "Lays",
567
+ "Leaves",
568
+ "Let",
569
+ "Let's",
570
+ "Let\u2019s",
571
+ "Lights",
572
+ "Long",
573
+ "Looks",
574
+ "Louisiana",
575
+ "Lovin",
576
+ "Lovin'",
577
+ "Lovin\u2019",
578
+ "Ltd",
579
+ "Ltd.",
580
+ "M",
581
+ "Ma'am",
582
+ "Main",
583
+ "Makes",
584
+ "Making",
585
+ "Mar",
586
+ "Mar.",
587
+ "March",
588
+ "Mart",
589
+ "Mass",
590
+ "Mass.",
591
+ "Massachusetts",
592
+ "May",
593
+ "Ma\u2019am",
594
+ "Md",
595
+ "Md.",
596
+ "Mediterranean",
597
+ "Messrs",
598
+ "Messrs.",
599
+ "Mich",
600
+ "Mich.",
601
+ "Michigan",
602
+ "Might",
603
+ "Minn",
604
+ "Minn.",
605
+ "Minnesota",
606
+ "Miss",
607
+ "Miss.",
608
+ "Mississippi",
609
+ "Mo",
610
+ "Mo.",
611
+ "Mont",
612
+ "Mont.",
613
+ "Monte",
614
+ "Mops",
615
+ "Morning",
616
+ "Mount",
617
+ "Moves",
618
+ "Mowing",
619
+ "Mr",
620
+ "Mr.",
621
+ "Mrs",
622
+ "Mrs.",
623
+ "Ms",
624
+ "Ms.",
625
+ "Mt",
626
+ "Mt.",
627
+ "Must",
628
+ "N",
629
+ "N.C.",
630
+ "N.D.",
631
+ "N.H.",
632
+ "N.J.",
633
+ "N.M.",
634
+ "N.Y.",
635
+ "Nantucket",
636
+ "National",
637
+ "Neb",
638
+ "Neb.",
639
+ "Nebr",
640
+ "Nebr.",
641
+ "Nebraska",
642
+ "Need",
643
+ "Nev",
644
+ "Nev.",
645
+ "Nevada",
646
+ "New",
647
+ "New Hampshire",
648
+ "New Jersey",
649
+ "New Mexico",
650
+ "New York",
651
+ "Next",
652
+ "North Carolina",
653
+ "North Dakota",
654
+ "Not",
655
+ "Nothin",
656
+ "Nothin'",
657
+ "Nothin\u2019",
658
+ "Nov",
659
+ "Nov.",
660
+ "November",
661
+ "Now",
662
+ "Nuthin",
663
+ "Nuthin'",
664
+ "Nuthin\u2019",
665
+ "O",
666
+ "O'clock",
667
+ "O.O",
668
+ "O.o",
669
+ "OF",
670
+ "ONS",
671
+ "O_O",
672
+ "O_o",
673
+ "Oct",
674
+ "Oct.",
675
+ "October",
676
+ "Ok",
677
+ "Okla",
678
+ "Okla.",
679
+ "Oklahoma",
680
+ "Ol",
681
+ "Ol'",
682
+ "Ol\u2019",
683
+ "On",
684
+ "Once",
685
+ "Opens",
686
+ "Ore",
687
+ "Ore.",
688
+ "Oregon",
689
+ "Ought",
690
+ "Outdoor",
691
+ "O\u2019clock",
692
+ "P",
693
+ "PD",
694
+ "PIN",
695
+ "Pa",
696
+ "Pa.",
697
+ "Packing",
698
+ "Packs",
699
+ "Painting",
700
+ "Park",
701
+ "Parkinson",
702
+ "Parkinsons",
703
+ "Parks",
704
+ "Pass",
705
+ "Pennsylvania",
706
+ "Ph",
707
+ "Ph.D.",
708
+ "Piza",
709
+ "Places",
710
+ "Planning",
711
+ "Plans",
712
+ "Plugs",
713
+ "Plum",
714
+ "Point",
715
+ "Prints",
716
+ "Prof",
717
+ "Prof.",
718
+ "Prosecco",
719
+ "Puerto",
720
+ "Pulls",
721
+ "Puts",
722
+ "Q",
723
+ "Quickly",
724
+ "R",
725
+ "Rakes",
726
+ "Realizes",
727
+ "Rep",
728
+ "Rep.",
729
+ "Returns",
730
+ "Rev",
731
+ "Rev.",
732
+ "Rico",
733
+ "Rinses",
734
+ "Rock",
735
+ "Romanian",
736
+ "Rome",
737
+ "Running",
738
+ "Runs",
739
+ "S",
740
+ "S.C.",
741
+ "SENSORY",
742
+ "SOCIAL_INTERACTION",
743
+ "Santa",
744
+ "Says",
745
+ "Scans",
746
+ "Seaport",
747
+ "Sees",
748
+ "Selects",
749
+ "Sen",
750
+ "Sen.",
751
+ "Sends",
752
+ "Sep",
753
+ "Sep.",
754
+ "Sept",
755
+ "Sept.",
756
+ "September",
757
+ "Sets",
758
+ "Sha",
759
+ "She",
760
+ "She's",
761
+ "She\u2019s",
762
+ "Shop",
763
+ "Should",
764
+ "Show",
765
+ "Shows",
766
+ "So",
767
+ "Social",
768
+ "Some",
769
+ "Somethin",
770
+ "Somethin'",
771
+ "Somethin\u2019",
772
+ "South Carolina",
773
+ "St",
774
+ "St.",
775
+ "Stamford",
776
+ "Staples",
777
+ "Starbucks",
778
+ "Starts",
779
+ "Steady",
780
+ "Stop",
781
+ "Stops",
782
+ "Stuffs",
783
+ "Swims",
784
+ "Swipes",
785
+ "T",
786
+ "THOUGHT",
787
+ "TO",
788
+ "TRANSITIONS",
789
+ "TRAVEL",
790
+ "TSA",
791
+ "Tahuda",
792
+ "Take",
793
+ "Takes",
794
+ "Talks",
795
+ "Tarp",
796
+ "Task",
797
+ "Tenn",
798
+ "Tenn.",
799
+ "Tennessee",
800
+ "Tesla",
801
+ "Thanksgiving",
802
+ "That",
803
+ "That's",
804
+ "That\u2019s",
805
+ "The",
806
+ "Their",
807
+ "Then",
808
+ "There",
809
+ "There's",
810
+ "There\u2019s",
811
+ "These",
812
+ "They",
813
+ "This",
814
+ "This's",
815
+ "This\u2019s",
816
+ "Thoroughly",
817
+ "Those",
818
+ "Throughly",
819
+ "Throws",
820
+ "Thursday",
821
+ "Time",
822
+ "Todds",
823
+ "Traveling",
824
+ "Triathlon",
825
+ "Tries",
826
+ "Turns",
827
+ "Two",
828
+ "U",
829
+ "Uber",
830
+ "Unlock",
831
+ "Uses",
832
+ "Using",
833
+ "V",
834
+ "V.V",
835
+ "VEL",
836
+ "V_V",
837
+ "Va",
838
+ "Va.",
839
+ "Village",
840
+ "Virginia",
841
+ "W",
842
+ "Waits",
843
+ "Wake",
844
+ "Walks",
845
+ "Was",
846
+ "Wash",
847
+ "Wash.",
848
+ "Washington",
849
+ "We",
850
+ "Wednesday",
851
+ "Were",
852
+ "West",
853
+ "What",
854
+ "What's",
855
+ "What\u2019s",
856
+ "When",
857
+ "When's",
858
+ "When\u2019s",
859
+ "Where",
860
+ "Where's",
861
+ "Where\u2019s",
862
+ "Who",
863
+ "Who's",
864
+ "Who\u2019s",
865
+ "Why",
866
+ "Why's",
867
+ "Why\u2019s",
868
+ "Windex",
869
+ "Wipes",
870
+ "Wis",
871
+ "Wis.",
872
+ "Wisconsin",
873
+ "With",
874
+ "Wo",
875
+ "Would",
876
+ "Writes",
877
+ "X'x",
878
+ "X'xxxx",
879
+ "X++",
880
+ "X.",
881
+ "X.X",
882
+ "X.X.",
883
+ "X.x",
884
+ "X.x.",
885
+ "XD",
886
+ "XDD",
887
+ "XX",
888
+ "XXX",
889
+ "XXXX",
890
+ "X_X",
891
+ "X_x",
892
+ "Xx",
893
+ "Xx'",
894
+ "Xx'x",
895
+ "Xx'xx",
896
+ "Xx.",
897
+ "Xx.X.",
898
+ "Xxx",
899
+ "Xxx'x",
900
+ "Xxx.",
901
+ "Xxxx",
902
+ "Xxxx'",
903
+ "Xxxx'x",
904
+ "Xxxx.",
905
+ "Xxxx_X",
906
+ "Xxxxx",
907
+ "Xxxxx'",
908
+ "Xxxxx'x",
909
+ "Xxxxx.",
910
+ "Xxxxx_X",
911
+ "Xxxxx\u2019",
912
+ "Xxxxx\u2019x",
913
+ "Xxxx\u2019",
914
+ "Xxxx\u2019x",
915
+ "Xxx\u2019x",
916
+ "Xx\u2019",
917
+ "Xx\u2019x",
918
+ "Xx\u2019xx",
919
+ "X\u2019x",
920
+ "X\u2019xxxx",
921
+ "Y",
922
+ "Yacht",
923
+ "Yardwork",
924
+ "York",
925
+ "You",
926
+ "Your",
927
+ "Z",
928
+ "Ziplock",
929
+ "[",
930
+ "[-:",
931
+ "[:",
932
+ "[=",
933
+ "\\",
934
+ "\\\")",
935
+ "\\n",
936
+ "\\t",
937
+ "\\x",
938
+ "]",
939
+ "]=",
940
+ "^",
941
+ "^_^",
942
+ "^__^",
943
+ "^___^",
944
+ "_*)",
945
+ "_-)",
946
+ "_.)",
947
+ "_<)",
948
+ "_^)",
949
+ "__-",
950
+ "__^",
951
+ "_\u00ac)",
952
+ "_\u0ca0)",
953
+ "a",
954
+ "a.",
955
+ "a.m",
956
+ "a.m.",
957
+ "about",
958
+ "abs",
959
+ "accidentally",
960
+ "accommodate",
961
+ "ace",
962
+ "ach",
963
+ "ack",
964
+ "across",
965
+ "act",
966
+ "acts",
967
+ "ad",
968
+ "add",
969
+ "addresses",
970
+ "adds",
971
+ "ade",
972
+ "adm",
973
+ "adm.",
974
+ "administrators",
975
+ "admire",
976
+ "admits",
977
+ "ads",
978
+ "advertisements",
979
+ "ady",
980
+ "afar",
981
+ "afs",
982
+ "after",
983
+ "afternoon",
984
+ "again",
985
+ "against",
986
+ "age",
987
+ "ago",
988
+ "ags",
989
+ "ai",
990
+ "ail",
991
+ "ain",
992
+ "air",
993
+ "airbnb",
994
+ "airport",
995
+ "aisle",
996
+ "ak",
997
+ "ak.",
998
+ "ake",
999
+ "aks",
1000
+ "ala",
1001
+ "ala.",
1002
+ "alcoholic",
1003
+ "aldis",
1004
+ "ale",
1005
+ "alk",
1006
+ "all",
1007
+ "already",
1008
+ "als",
1009
+ "also",
1010
+ "aly",
1011
+ "am",
1012
+ "ame",
1013
+ "among",
1014
+ "an",
1015
+ "an.",
1016
+ "ana",
1017
+ "and",
1018
+ "and/or",
1019
+ "ane",
1020
+ "animals",
1021
+ "ank",
1022
+ "announce",
1023
+ "annual",
1024
+ "another",
1025
+ "ans",
1026
+ "ant",
1027
+ "anthem",
1028
+ "antique",
1029
+ "anxiety",
1030
+ "any",
1031
+ "anyone",
1032
+ "apart",
1033
+ "ape",
1034
+ "appetit",
1035
+ "appetizer",
1036
+ "apple",
1037
+ "apples",
1038
+ "appropriate",
1039
+ "apr",
1040
+ "apr.",
1041
+ "ar.",
1042
+ "ara",
1043
+ "ard",
1044
+ "are",
1045
+ "area",
1046
+ "arf",
1047
+ "ariz",
1048
+ "ariz.",
1049
+ "ark",
1050
+ "ark.",
1051
+ "arm",
1052
+ "arms",
1053
+ "around",
1054
+ "arp",
1055
+ "arrange",
1056
+ "arrive",
1057
+ "arrived",
1058
+ "arrives",
1059
+ "arriving",
1060
+ "ars",
1061
+ "art",
1062
+ "artichoke",
1063
+ "artist",
1064
+ "artwork",
1065
+ "ary",
1066
+ "as",
1067
+ "ase",
1068
+ "ash",
1069
+ "ask",
1070
+ "asking",
1071
+ "asks",
1072
+ "ass",
1073
+ "assembly",
1074
+ "assignment",
1075
+ "assistant",
1076
+ "assisted",
1077
+ "associations",
1078
+ "assorted",
1079
+ "ast",
1080
+ "at",
1081
+ "ate",
1082
+ "ath",
1083
+ "ato",
1084
+ "ats",
1085
+ "attached",
1086
+ "attending",
1087
+ "attends",
1088
+ "attractive",
1089
+ "auditorium",
1090
+ "aug",
1091
+ "aug.",
1092
+ "ava",
1093
+ "available",
1094
+ "ave",
1095
+ "avoids",
1096
+ "avy",
1097
+ "away",
1098
+ "awn",
1099
+ "aws",
1100
+ "axi",
1101
+ "ays",
1102
+ "azamara",
1103
+ "b",
1104
+ "b.",
1105
+ "back",
1106
+ "backpack",
1107
+ "backs",
1108
+ "backyard",
1109
+ "bag",
1110
+ "bagels",
1111
+ "bags",
1112
+ "banana",
1113
+ "bananas",
1114
+ "bar",
1115
+ "barbeque",
1116
+ "barcelona",
1117
+ "baseboards",
1118
+ "basement",
1119
+ "bathing",
1120
+ "bathroom",
1121
+ "batteries",
1122
+ "battery",
1123
+ "be",
1124
+ "beach",
1125
+ "beach_a",
1126
+ "beaches",
1127
+ "beans",
1128
+ "beautiful",
1129
+ "beauty",
1130
+ "because",
1131
+ "bed",
1132
+ "bedroom",
1133
+ "beef",
1134
+ "been",
1135
+ "beer",
1136
+ "before",
1137
+ "begin",
1138
+ "begins",
1139
+ "behind",
1140
+ "being",
1141
+ "belong",
1142
+ "below",
1143
+ "bench",
1144
+ "ber",
1145
+ "berry",
1146
+ "bes",
1147
+ "best",
1148
+ "between",
1149
+ "beverage",
1150
+ "big",
1151
+ "bike",
1152
+ "bit",
1153
+ "ble",
1154
+ "blender",
1155
+ "blocks",
1156
+ "blower",
1157
+ "blowing",
1158
+ "blows",
1159
+ "blue",
1160
+ "bly",
1161
+ "bnb",
1162
+ "board",
1163
+ "boardwalk",
1164
+ "boat",
1165
+ "body",
1166
+ "bon",
1167
+ "book",
1168
+ "booth",
1169
+ "booths",
1170
+ "bor",
1171
+ "borrow",
1172
+ "both",
1173
+ "bottle",
1174
+ "bottles",
1175
+ "bout",
1176
+ "bowl",
1177
+ "box",
1178
+ "boxes",
1179
+ "boxing",
1180
+ "br.",
1181
+ "branch",
1182
+ "bras",
1183
+ "bread",
1184
+ "break",
1185
+ "breakfast",
1186
+ "breath",
1187
+ "brewing",
1188
+ "brides",
1189
+ "bridge",
1190
+ "briefly",
1191
+ "bring",
1192
+ "bringing",
1193
+ "brings",
1194
+ "broccoli",
1195
+ "broiled",
1196
+ "bros",
1197
+ "bros.",
1198
+ "brother",
1199
+ "brush",
1200
+ "brushes",
1201
+ "buffet",
1202
+ "bug",
1203
+ "building",
1204
+ "bundles",
1205
+ "buoys",
1206
+ "burgers",
1207
+ "burning",
1208
+ "burrito",
1209
+ "bus",
1210
+ "bushes",
1211
+ "but",
1212
+ "butter",
1213
+ "bux",
1214
+ "buy",
1215
+ "buys",
1216
+ "by",
1217
+ "bye",
1218
+ "c",
1219
+ "c'm",
1220
+ "c++",
1221
+ "c.",
1222
+ "ca",
1223
+ "cacao",
1224
+ "cafeteria",
1225
+ "cal",
1226
+ "calif",
1227
+ "calif.",
1228
+ "call",
1229
+ "called",
1230
+ "calls",
1231
+ "can",
1232
+ "candy",
1233
+ "cantaloupe",
1234
+ "canvas",
1235
+ "cao",
1236
+ "cap",
1237
+ "car",
1238
+ "card",
1239
+ "carlo",
1240
+ "carriage",
1241
+ "carries",
1242
+ "carrots",
1243
+ "cars",
1244
+ "cart",
1245
+ "cash",
1246
+ "cashier",
1247
+ "castle",
1248
+ "cat",
1249
+ "catch",
1250
+ "catches",
1251
+ "catching",
1252
+ "cats",
1253
+ "cause",
1254
+ "cava",
1255
+ "cco",
1256
+ "ce>",
1257
+ "cedar",
1258
+ "cellar",
1259
+ "center",
1260
+ "cer",
1261
+ "ceremony",
1262
+ "ces",
1263
+ "cet",
1264
+ "ch.",
1265
+ "cha",
1266
+ "chairs",
1267
+ "chandelier",
1268
+ "change",
1269
+ "changes",
1270
+ "chant",
1271
+ "charcoal",
1272
+ "charge",
1273
+ "charger",
1274
+ "chat",
1275
+ "chats",
1276
+ "chatting",
1277
+ "check",
1278
+ "checking",
1279
+ "checkout",
1280
+ "checks",
1281
+ "cheese",
1282
+ "cheeses",
1283
+ "chicago",
1284
+ "chicken",
1285
+ "chips",
1286
+ "choose",
1287
+ "chop",
1288
+ "chopped",
1289
+ "chores",
1290
+ "cht",
1291
+ "chucks",
1292
+ "church",
1293
+ "cider",
1294
+ "cinderblocks",
1295
+ "circle",
1296
+ "city_a",
1297
+ "cks",
1298
+ "clarity",
1299
+ "class",
1300
+ "classroom",
1301
+ "cle",
1302
+ "clean",
1303
+ "cleaning",
1304
+ "cleans",
1305
+ "clearing",
1306
+ "clerk",
1307
+ "climb",
1308
+ "climbs",
1309
+ "clippings",
1310
+ "close",
1311
+ "closed",
1312
+ "closes",
1313
+ "closet",
1314
+ "clothes",
1315
+ "club",
1316
+ "co",
1317
+ "co.",
1318
+ "coach",
1319
+ "coast",
1320
+ "cod",
1321
+ "code",
1322
+ "coffee",
1323
+ "coiled",
1324
+ "cold",
1325
+ "coleslaw",
1326
+ "collect",
1327
+ "collectable",
1328
+ "colo",
1329
+ "colo.",
1330
+ "color",
1331
+ "columns",
1332
+ "come",
1333
+ "comes",
1334
+ "coming",
1335
+ "commence",
1336
+ "company",
1337
+ "competitors",
1338
+ "complete",
1339
+ "completed",
1340
+ "completes",
1341
+ "completing",
1342
+ "computer",
1343
+ "concerns",
1344
+ "concrete",
1345
+ "condensed",
1346
+ "conference",
1347
+ "confirm",
1348
+ "confirms",
1349
+ "conn",
1350
+ "conn.",
1351
+ "connecticut",
1352
+ "contact",
1353
+ "contacts",
1354
+ "container",
1355
+ "continues",
1356
+ "conversation",
1357
+ "conversations",
1358
+ "cook",
1359
+ "cooked",
1360
+ "cooking",
1361
+ "cooks",
1362
+ "cooldown",
1363
+ "copy",
1364
+ "cord",
1365
+ "corp",
1366
+ "corp.",
1367
+ "correct",
1368
+ "correctly",
1369
+ "cos",
1370
+ "couches",
1371
+ "could",
1372
+ "counter",
1373
+ "countertop",
1374
+ "countertops",
1375
+ "couple",
1376
+ "coupled",
1377
+ "couples",
1378
+ "coupons",
1379
+ "course",
1380
+ "cover",
1381
+ "covering",
1382
+ "cow",
1383
+ "coz",
1384
+ "crack",
1385
+ "crackers",
1386
+ "cranberry",
1387
+ "crates",
1388
+ "cream",
1389
+ "create",
1390
+ "creating",
1391
+ "credit",
1392
+ "crew",
1393
+ "crowded",
1394
+ "cruise",
1395
+ "crumbs",
1396
+ "ct",
1397
+ "ct.",
1398
+ "cts",
1399
+ "current",
1400
+ "customer",
1401
+ "cut",
1402
+ "cuts",
1403
+ "cutting",
1404
+ "cuz",
1405
+ "c\u2019m",
1406
+ "d",
1407
+ "d)",
1408
+ "d-",
1409
+ "d-)",
1410
+ "d-X",
1411
+ "d.",
1412
+ "d.c.",
1413
+ "d.d",
1414
+ "d.x",
1415
+ "d/d/dd",
1416
+ "d:dd",
1417
+ "dX",
1418
+ "d_d",
1419
+ "d_x",
1420
+ "daily",
1421
+ "dairy",
1422
+ "dancing",
1423
+ "dar",
1424
+ "dare",
1425
+ "darkness",
1426
+ "dash",
1427
+ "dashboard",
1428
+ "date",
1429
+ "daughter",
1430
+ "daughterinlaws",
1431
+ "david",
1432
+ "day",
1433
+ "days",
1434
+ "dd",
1435
+ "dd,ddd",
1436
+ "ddd",
1437
+ "dds",
1438
+ "ddx",
1439
+ "ddx.x",
1440
+ "ddx.x.",
1441
+ "ddy",
1442
+ "dead",
1443
+ "debit",
1444
+ "dec",
1445
+ "dec.",
1446
+ "decides",
1447
+ "ded",
1448
+ "deep",
1449
+ "deflate",
1450
+ "deflated",
1451
+ "defroster",
1452
+ "del",
1453
+ "del.",
1454
+ "deli",
1455
+ "delta",
1456
+ "den",
1457
+ "dental",
1458
+ "deodorant",
1459
+ "depart",
1460
+ "depot",
1461
+ "der",
1462
+ "des",
1463
+ "describes",
1464
+ "design",
1465
+ "designer",
1466
+ "desk",
1467
+ "dessert",
1468
+ "destination",
1469
+ "detaches",
1470
+ "determine",
1471
+ "determines",
1472
+ "dex",
1473
+ "dge",
1474
+ "did",
1475
+ "die",
1476
+ "different",
1477
+ "difficult",
1478
+ "dimensions",
1479
+ "dining",
1480
+ "dinner",
1481
+ "dirty",
1482
+ "dis",
1483
+ "disassembling",
1484
+ "discuss",
1485
+ "dish",
1486
+ "dishes",
1487
+ "disorientation",
1488
+ "dit",
1489
+ "dle",
1490
+ "dm.",
1491
+ "do",
1492
+ "dock",
1493
+ "does",
1494
+ "doeuvres",
1495
+ "dog",
1496
+ "dogs",
1497
+ "doin",
1498
+ "doin'",
1499
+ "doing",
1500
+ "doin\u2019",
1501
+ "donates",
1502
+ "done",
1503
+ "door",
1504
+ "doors",
1505
+ "dopamine",
1506
+ "dor",
1507
+ "dotted",
1508
+ "down",
1509
+ "downstairs",
1510
+ "downtown",
1511
+ "dozen",
1512
+ "dr",
1513
+ "dr.",
1514
+ "dressed",
1515
+ "dresses",
1516
+ "dried",
1517
+ "drink",
1518
+ "drinks",
1519
+ "drive",
1520
+ "driver",
1521
+ "drives",
1522
+ "driveway",
1523
+ "driving",
1524
+ "drops",
1525
+ "drove",
1526
+ "dry",
1527
+ "dryer",
1528
+ "during",
1529
+ "dustbuster",
1530
+ "duties",
1531
+ "dx",
1532
+ "dx.x",
1533
+ "dx.x.",
1534
+ "e",
1535
+ "e's",
1536
+ "e.",
1537
+ "e.g",
1538
+ "e.g.",
1539
+ "each",
1540
+ "ead",
1541
+ "eaf",
1542
+ "eak",
1543
+ "eal",
1544
+ "eam",
1545
+ "ean",
1546
+ "ear",
1547
+ "earbuds",
1548
+ "early",
1549
+ "earphones",
1550
+ "eas",
1551
+ "eat",
1552
+ "eating",
1553
+ "eats",
1554
+ "eb.",
1555
+ "ebr",
1556
+ "ec.",
1557
+ "ece",
1558
+ "eck",
1559
+ "ect",
1560
+ "edge",
1561
+ "edges",
1562
+ "eds",
1563
+ "eed",
1564
+ "eef",
1565
+ "eel",
1566
+ "een",
1567
+ "eep",
1568
+ "eer",
1569
+ "ees",
1570
+ "eet",
1571
+ "efs",
1572
+ "eft",
1573
+ "egg",
1574
+ "eggs",
1575
+ "eir",
1576
+ "eks",
1577
+ "el.",
1578
+ "eld",
1579
+ "electricity",
1580
+ "elf",
1581
+ "eli",
1582
+ "ell",
1583
+ "elp",
1584
+ "els",
1585
+ "elt",
1586
+ "ely",
1587
+ "em",
1588
+ "email",
1589
+ "empty",
1590
+ "emptying",
1591
+ "ems",
1592
+ "en",
1593
+ "en.",
1594
+ "end",
1595
+ "ends",
1596
+ "engaging",
1597
+ "engine",
1598
+ "enjoy",
1599
+ "enjoying",
1600
+ "enjoys",
1601
+ "enn",
1602
+ "enough",
1603
+ "ens",
1604
+ "ensures",
1605
+ "ent",
1606
+ "enter",
1607
+ "enters",
1608
+ "entire",
1609
+ "entrance",
1610
+ "entry",
1611
+ "ep.",
1612
+ "eps",
1613
+ "ept",
1614
+ "ere",
1615
+ "erk",
1616
+ "ern",
1617
+ "errands",
1618
+ "ers",
1619
+ "ert",
1620
+ "ery",
1621
+ "escalator",
1622
+ "ese",
1623
+ "esh",
1624
+ "esk",
1625
+ "ess",
1626
+ "est",
1627
+ "etc",
1628
+ "ete",
1629
+ "eth",
1630
+ "ets",
1631
+ "ety",
1632
+ "europe",
1633
+ "ev.",
1634
+ "evening",
1635
+ "event",
1636
+ "events",
1637
+ "eventually",
1638
+ "every",
1639
+ "everyone",
1640
+ "everything",
1641
+ "excited",
1642
+ "exercise",
1643
+ "exit",
1644
+ "exits",
1645
+ "experiences",
1646
+ "expiration",
1647
+ "express",
1648
+ "expressionist",
1649
+ "ext",
1650
+ "extension",
1651
+ "extra",
1652
+ "eyeglasses",
1653
+ "eys",
1654
+ "e\u2019s",
1655
+ "f",
1656
+ "f.",
1657
+ "face",
1658
+ "fact",
1659
+ "families",
1660
+ "family",
1661
+ "fantastic",
1662
+ "far",
1663
+ "farm",
1664
+ "farmer",
1665
+ "father",
1666
+ "faucet",
1667
+ "favorite",
1668
+ "fe",
1669
+ "feb",
1670
+ "feb.",
1671
+ "fed",
1672
+ "fee",
1673
+ "feeds",
1674
+ "feeling",
1675
+ "feels",
1676
+ "feet",
1677
+ "felt",
1678
+ "female",
1679
+ "fenders",
1680
+ "fes",
1681
+ "festival",
1682
+ "fet",
1683
+ "few",
1684
+ "ffs",
1685
+ "fiance",
1686
+ "field",
1687
+ "filet",
1688
+ "fills",
1689
+ "final",
1690
+ "finally",
1691
+ "find",
1692
+ "finds",
1693
+ "fingertips",
1694
+ "finishes",
1695
+ "first",
1696
+ "fish",
1697
+ "fit",
1698
+ "fix",
1699
+ "fla",
1700
+ "fla.",
1701
+ "flash",
1702
+ "fle",
1703
+ "flight",
1704
+ "flip",
1705
+ "flipping",
1706
+ "floor",
1707
+ "floors",
1708
+ "flops",
1709
+ "floss",
1710
+ "flour",
1711
+ "flowers",
1712
+ "flowing",
1713
+ "fly",
1714
+ "flyer",
1715
+ "flyers",
1716
+ "folded",
1717
+ "folding",
1718
+ "folds",
1719
+ "follow",
1720
+ "following",
1721
+ "food",
1722
+ "for",
1723
+ "forks",
1724
+ "forwards",
1725
+ "found",
1726
+ "four",
1727
+ "france",
1728
+ "fresh",
1729
+ "friday",
1730
+ "fridge",
1731
+ "friend",
1732
+ "friends",
1733
+ "from",
1734
+ "front",
1735
+ "frost",
1736
+ "fruit",
1737
+ "frustrated",
1738
+ "ful",
1739
+ "full",
1740
+ "fun",
1741
+ "fundraising",
1742
+ "furniture",
1743
+ "fury",
1744
+ "g",
1745
+ "g.",
1746
+ "ga",
1747
+ "ga.",
1748
+ "gallery",
1749
+ "gan",
1750
+ "garage",
1751
+ "garden",
1752
+ "gardening",
1753
+ "gardens",
1754
+ "gate",
1755
+ "gathers",
1756
+ "ged",
1757
+ "gen",
1758
+ "gen.",
1759
+ "generic",
1760
+ "genoa",
1761
+ "ger",
1762
+ "ges",
1763
+ "get",
1764
+ "gets",
1765
+ "ggs",
1766
+ "ght",
1767
+ "gie",
1768
+ "gin",
1769
+ "give",
1770
+ "gives",
1771
+ "giving",
1772
+ "glass",
1773
+ "glasses",
1774
+ "gloves",
1775
+ "gna",
1776
+ "go",
1777
+ "goes",
1778
+ "goin",
1779
+ "goin'",
1780
+ "going",
1781
+ "goin\u2019",
1782
+ "gon",
1783
+ "gonna",
1784
+ "good",
1785
+ "goodbye",
1786
+ "goodie",
1787
+ "got",
1788
+ "gov",
1789
+ "gov.",
1790
+ "gown",
1791
+ "grab",
1792
+ "grabbed",
1793
+ "grabs",
1794
+ "gradually",
1795
+ "grain",
1796
+ "grandchild",
1797
+ "grandchildren",
1798
+ "grandchildrens",
1799
+ "granddaughters",
1800
+ "grandparent",
1801
+ "grandparents",
1802
+ "graphic",
1803
+ "grass",
1804
+ "grassy",
1805
+ "gravy",
1806
+ "gray",
1807
+ "great",
1808
+ "green",
1809
+ "greens",
1810
+ "greet",
1811
+ "greeting",
1812
+ "greets",
1813
+ "grill",
1814
+ "grills",
1815
+ "groceries",
1816
+ "grocery",
1817
+ "ground",
1818
+ "group",
1819
+ "groups",
1820
+ "grown",
1821
+ "guests",
1822
+ "gutters",
1823
+ "gym",
1824
+ "h",
1825
+ "h.",
1826
+ "h_A",
1827
+ "had",
1828
+ "hair",
1829
+ "hamburgers",
1830
+ "han",
1831
+ "hand",
1832
+ "handicap",
1833
+ "hanging",
1834
+ "harbor",
1835
+ "has",
1836
+ "hat",
1837
+ "hats",
1838
+ "have",
1839
+ "haven",
1840
+ "havin",
1841
+ "havin'",
1842
+ "having",
1843
+ "havin\u2019",
1844
+ "he",
1845
+ "he's",
1846
+ "head",
1847
+ "headed",
1848
+ "heads",
1849
+ "health",
1850
+ "heavier",
1851
+ "heavy",
1852
+ "heavyset",
1853
+ "hed",
1854
+ "held",
1855
+ "hello",
1856
+ "help",
1857
+ "hem",
1858
+ "hen",
1859
+ "her",
1860
+ "hes",
1861
+ "hew",
1862
+ "hey",
1863
+ "he\u2019s",
1864
+ "hic",
1865
+ "high",
1866
+ "highway",
1867
+ "him",
1868
+ "himself",
1869
+ "hin",
1870
+ "hip",
1871
+ "his",
1872
+ "hly",
1873
+ "holds",
1874
+ "holey",
1875
+ "holiday",
1876
+ "home",
1877
+ "homemade",
1878
+ "hood",
1879
+ "hook",
1880
+ "hooks",
1881
+ "hop",
1882
+ "hoping",
1883
+ "hops",
1884
+ "hors",
1885
+ "hosts",
1886
+ "hot",
1887
+ "hour",
1888
+ "hours",
1889
+ "house",
1890
+ "household",
1891
+ "how",
1892
+ "how's",
1893
+ "how\u2019s",
1894
+ "hts",
1895
+ "huddle",
1896
+ "hugging",
1897
+ "hugs",
1898
+ "husband",
1899
+ "i",
1900
+ "i.",
1901
+ "i.e",
1902
+ "i.e.",
1903
+ "ia",
1904
+ "ia.",
1905
+ "ial",
1906
+ "ian",
1907
+ "ibs",
1908
+ "ice",
1909
+ "ich",
1910
+ "ick",
1911
+ "ico",
1912
+ "id",
1913
+ "id.",
1914
+ "ide",
1915
+ "ids",
1916
+ "ied",
1917
+ "ier",
1918
+ "ies",
1919
+ "iew",
1920
+ "if",
1921
+ "if.",
1922
+ "ife",
1923
+ "igh",
1924
+ "ign",
1925
+ "ike",
1926
+ "ild",
1927
+ "ile",
1928
+ "ilk",
1929
+ "ill",
1930
+ "ill.",
1931
+ "ily",
1932
+ "image",
1933
+ "imagery",
1934
+ "imb",
1935
+ "ime",
1936
+ "immediately",
1937
+ "ims",
1938
+ "in",
1939
+ "in'",
1940
+ "inc",
1941
+ "inc.",
1942
+ "includes",
1943
+ "including",
1944
+ "increase",
1945
+ "ind",
1946
+ "ind.",
1947
+ "ine",
1948
+ "inflated",
1949
+ "ing",
1950
+ "ingredients",
1951
+ "initiating",
1952
+ "ink",
1953
+ "inn",
1954
+ "ins",
1955
+ "inserts",
1956
+ "inside",
1957
+ "instead",
1958
+ "instructor",
1959
+ "int",
1960
+ "interaction",
1961
+ "into",
1962
+ "invitations",
1963
+ "invited",
1964
+ "inviting",
1965
+ "iny",
1966
+ "in\u2019",
1967
+ "iod",
1968
+ "ion",
1969
+ "ipe",
1970
+ "ips",
1971
+ "ipt",
1972
+ "ire",
1973
+ "irises",
1974
+ "irm",
1975
+ "irons",
1976
+ "irs",
1977
+ "irt",
1978
+ "iry",
1979
+ "is",
1980
+ "is.",
1981
+ "ise",
1982
+ "ish",
1983
+ "island",
1984
+ "iss",
1985
+ "ist",
1986
+ "isu",
1987
+ "it",
1988
+ "it's",
1989
+ "italy",
1990
+ "ite",
1991
+ "item",
1992
+ "items",
1993
+ "ith",
1994
+ "ito",
1995
+ "its",
1996
+ "itself",
1997
+ "ity",
1998
+ "it\u2019s",
1999
+ "ium",
2000
+ "ive",
2001
+ "iz.",
2002
+ "iza",
2003
+ "ize",
2004
+ "j",
2005
+ "j.",
2006
+ "jacket",
2007
+ "jan",
2008
+ "jan.",
2009
+ "jeans",
2010
+ "jelly",
2011
+ "jfk",
2012
+ "job",
2013
+ "jog",
2014
+ "journal",
2015
+ "joy",
2016
+ "jr",
2017
+ "jr.",
2018
+ "juice",
2019
+ "juices",
2020
+ "jul",
2021
+ "jul.",
2022
+ "july",
2023
+ "jump",
2024
+ "jumps",
2025
+ "jun",
2026
+ "jun.",
2027
+ "just",
2028
+ "k",
2029
+ "k.",
2030
+ "kan",
2031
+ "kan.",
2032
+ "kans",
2033
+ "kans.",
2034
+ "ked",
2035
+ "keep",
2036
+ "ken",
2037
+ "ker",
2038
+ "kes",
2039
+ "ket",
2040
+ "key",
2041
+ "keys",
2042
+ "kids",
2043
+ "kill",
2044
+ "kindle",
2045
+ "kisses",
2046
+ "kitchen",
2047
+ "kite",
2048
+ "kla",
2049
+ "kly",
2050
+ "knife",
2051
+ "knives",
2052
+ "knocking",
2053
+ "know",
2054
+ "knows",
2055
+ "kombucha",
2056
+ "ky",
2057
+ "ky.",
2058
+ "l",
2059
+ "l.",
2060
+ "la",
2061
+ "la.",
2062
+ "labeled",
2063
+ "lad",
2064
+ "ladder",
2065
+ "land",
2066
+ "lane",
2067
+ "laptop",
2068
+ "lar",
2069
+ "large",
2070
+ "lasagna",
2071
+ "lasts",
2072
+ "late",
2073
+ "later",
2074
+ "laundry",
2075
+ "law",
2076
+ "lawn",
2077
+ "lay",
2078
+ "layers",
2079
+ "lays",
2080
+ "lds",
2081
+ "lead",
2082
+ "leading",
2083
+ "leads",
2084
+ "leaf",
2085
+ "leafs",
2086
+ "lean",
2087
+ "leaning",
2088
+ "leave",
2089
+ "leaves",
2090
+ "led",
2091
+ "left",
2092
+ "len",
2093
+ "lengthens",
2094
+ "lenses",
2095
+ "ler",
2096
+ "les",
2097
+ "let",
2098
+ "let's",
2099
+ "lets",
2100
+ "lettuce",
2101
+ "let\u2019s",
2102
+ "ley",
2103
+ "library",
2104
+ "lic",
2105
+ "lif",
2106
+ "life",
2107
+ "light",
2108
+ "lighting",
2109
+ "lights",
2110
+ "like",
2111
+ "line",
2112
+ "lines",
2113
+ "links",
2114
+ "lip",
2115
+ "liquids",
2116
+ "list",
2117
+ "listens",
2118
+ "lists",
2119
+ "little",
2120
+ "living",
2121
+ "lks",
2122
+ "ll",
2123
+ "ll.",
2124
+ "lla",
2125
+ "llo",
2126
+ "lls",
2127
+ "lly",
2128
+ "lo.",
2129
+ "loads",
2130
+ "loaves",
2131
+ "local",
2132
+ "location",
2133
+ "locks",
2134
+ "logs",
2135
+ "loin",
2136
+ "lon",
2137
+ "long",
2138
+ "longer",
2139
+ "longest",
2140
+ "look",
2141
+ "looking",
2142
+ "looks",
2143
+ "lor",
2144
+ "lot",
2145
+ "lots",
2146
+ "loves",
2147
+ "lovin",
2148
+ "lovin'",
2149
+ "loving",
2150
+ "lovin\u2019",
2151
+ "low",
2152
+ "lso",
2153
+ "lta",
2154
+ "ltd",
2155
+ "ltd.",
2156
+ "lth",
2157
+ "lub",
2158
+ "lue",
2159
+ "lum",
2160
+ "lunches",
2161
+ "m",
2162
+ "m.",
2163
+ "ma'am",
2164
+ "macaroni",
2165
+ "madam",
2166
+ "magnet",
2167
+ "main",
2168
+ "make",
2169
+ "makes",
2170
+ "making",
2171
+ "male",
2172
+ "man",
2173
+ "managing",
2174
+ "manicotti",
2175
+ "manure",
2176
+ "many",
2177
+ "mar",
2178
+ "mar.",
2179
+ "markers",
2180
+ "mart",
2181
+ "mashed",
2182
+ "mass",
2183
+ "mass.",
2184
+ "matching",
2185
+ "may",
2186
+ "ma\u2019am",
2187
+ "mbs",
2188
+ "md",
2189
+ "md.",
2190
+ "meaning",
2191
+ "measure",
2192
+ "meat",
2193
+ "meats",
2194
+ "mechanic",
2195
+ "med",
2196
+ "medications",
2197
+ "mediterranean",
2198
+ "meet",
2199
+ "meets",
2200
+ "members",
2201
+ "mention",
2202
+ "mentions",
2203
+ "mer",
2204
+ "mes",
2205
+ "mesh",
2206
+ "messrs",
2207
+ "messrs.",
2208
+ "met",
2209
+ "mich",
2210
+ "mich.",
2211
+ "michigan",
2212
+ "microwaves",
2213
+ "might",
2214
+ "mile",
2215
+ "miles",
2216
+ "milk",
2217
+ "minn",
2218
+ "minn.",
2219
+ "minute",
2220
+ "minutes",
2221
+ "mirror",
2222
+ "miss",
2223
+ "miss.",
2224
+ "mix",
2225
+ "mixed",
2226
+ "mixes",
2227
+ "mixture",
2228
+ "mns",
2229
+ "mo",
2230
+ "mo.",
2231
+ "moisturizer",
2232
+ "moms",
2233
+ "mont",
2234
+ "mont.",
2235
+ "monte",
2236
+ "moorings",
2237
+ "mops",
2238
+ "morning",
2239
+ "mother",
2240
+ "mouthwash",
2241
+ "move",
2242
+ "moved",
2243
+ "moves",
2244
+ "movie",
2245
+ "moving",
2246
+ "mower",
2247
+ "mowing",
2248
+ "mows",
2249
+ "mozzarella",
2250
+ "mps",
2251
+ "mr",
2252
+ "mr.",
2253
+ "mrs",
2254
+ "mrs.",
2255
+ "ms",
2256
+ "ms.",
2257
+ "mt",
2258
+ "mt.",
2259
+ "mudroom",
2260
+ "muffins",
2261
+ "mushroom",
2262
+ "mushrooms",
2263
+ "music",
2264
+ "must",
2265
+ "n",
2266
+ "n's",
2267
+ "n't",
2268
+ "n.",
2269
+ "n.c.",
2270
+ "n.d.",
2271
+ "n.h.",
2272
+ "n.j.",
2273
+ "n.m.",
2274
+ "n.y.",
2275
+ "na",
2276
+ "nal",
2277
+ "names",
2278
+ "nantucket",
2279
+ "napkins",
2280
+ "nas",
2281
+ "nation",
2282
+ "national",
2283
+ "nc.",
2284
+ "nce",
2285
+ "nch",
2286
+ "nd.",
2287
+ "nds",
2288
+ "ndy",
2289
+ "near",
2290
+ "nearby",
2291
+ "nearest",
2292
+ "neb",
2293
+ "neb.",
2294
+ "nebr",
2295
+ "nebr.",
2296
+ "ned",
2297
+ "need",
2298
+ "needed",
2299
+ "needs",
2300
+ "neighbor",
2301
+ "neighboring",
2302
+ "neighbors",
2303
+ "nephew",
2304
+ "ner",
2305
+ "nes",
2306
+ "net",
2307
+ "netting",
2308
+ "nev",
2309
+ "nev.",
2310
+ "new",
2311
+ "next",
2312
+ "nge",
2313
+ "ngs",
2314
+ "nic",
2315
+ "nice",
2316
+ "nicer",
2317
+ "night",
2318
+ "nights",
2319
+ "nks",
2320
+ "nn.",
2321
+ "nny",
2322
+ "noa",
2323
+ "non",
2324
+ "noodles",
2325
+ "not",
2326
+ "notepad",
2327
+ "nothin",
2328
+ "nothin'",
2329
+ "nothing",
2330
+ "nothin\u2019",
2331
+ "notices",
2332
+ "nov",
2333
+ "nov.",
2334
+ "now",
2335
+ "ns.",
2336
+ "nst",
2337
+ "nt",
2338
+ "nt.",
2339
+ "nta",
2340
+ "nte",
2341
+ "nto",
2342
+ "nts",
2343
+ "nuff",
2344
+ "nuthin",
2345
+ "nuthin'",
2346
+ "nuthin\u2019",
2347
+ "n\u2019s",
2348
+ "n\u2019t",
2349
+ "o",
2350
+ "o'clock",
2351
+ "o's",
2352
+ "o.",
2353
+ "o.0",
2354
+ "o.O",
2355
+ "o.o",
2356
+ "o_0",
2357
+ "o_O",
2358
+ "o_o",
2359
+ "oad",
2360
+ "oal",
2361
+ "oap",
2362
+ "oat",
2363
+ "oatmeal",
2364
+ "objects",
2365
+ "ock",
2366
+ "oct",
2367
+ "oct.",
2368
+ "oda",
2369
+ "ode",
2370
+ "ody",
2371
+ "oes",
2372
+ "of",
2373
+ "of.",
2374
+ "ofa",
2375
+ "off",
2376
+ "office",
2377
+ "officiant",
2378
+ "ogs",
2379
+ "oil",
2380
+ "oin",
2381
+ "ok",
2382
+ "oke",
2383
+ "okla",
2384
+ "okla.",
2385
+ "oks",
2386
+ "ol",
2387
+ "ol'",
2388
+ "old",
2389
+ "older",
2390
+ "ole",
2391
+ "oli",
2392
+ "olives",
2393
+ "olo",
2394
+ "ol\u2019",
2395
+ "ome",
2396
+ "oms",
2397
+ "on",
2398
+ "ona",
2399
+ "once",
2400
+ "ond",
2401
+ "one",
2402
+ "ong",
2403
+ "oni",
2404
+ "online",
2405
+ "onn",
2406
+ "ons",
2407
+ "ont",
2408
+ "onto",
2409
+ "ony",
2410
+ "ood",
2411
+ "oof",
2412
+ "ook",
2413
+ "ool",
2414
+ "oom",
2415
+ "oon",
2416
+ "oop",
2417
+ "oor",
2418
+ "oot",
2419
+ "ope",
2420
+ "open",
2421
+ "opening",
2422
+ "opens",
2423
+ "ops",
2424
+ "opy",
2425
+ "or",
2426
+ "orange",
2427
+ "ord",
2428
+ "order",
2429
+ "ordered",
2430
+ "orders",
2431
+ "ore",
2432
+ "ore.",
2433
+ "organize",
2434
+ "original",
2435
+ "ork",
2436
+ "orp",
2437
+ "ors",
2438
+ "ort",
2439
+ "ory",
2440
+ "os.",
2441
+ "ose",
2442
+ "oss",
2443
+ "ost",
2444
+ "ote",
2445
+ "oth",
2446
+ "other",
2447
+ "others",
2448
+ "ots",
2449
+ "ought",
2450
+ "ounce",
2451
+ "ounces",
2452
+ "oup",
2453
+ "our",
2454
+ "ous",
2455
+ "out",
2456
+ "outdoor",
2457
+ "outfit",
2458
+ "outside",
2459
+ "ov.",
2460
+ "ove",
2461
+ "oven",
2462
+ "over",
2463
+ "owl",
2464
+ "own",
2465
+ "owners",
2466
+ "ows",
2467
+ "oys",
2468
+ "o\u2019clock",
2469
+ "o\u2019s",
2470
+ "p",
2471
+ "p.",
2472
+ "p.m",
2473
+ "p.m.",
2474
+ "pa",
2475
+ "pa.",
2476
+ "pace",
2477
+ "pack",
2478
+ "package",
2479
+ "packaged",
2480
+ "packages",
2481
+ "packing",
2482
+ "packs",
2483
+ "pad",
2484
+ "pads",
2485
+ "paint",
2486
+ "painted",
2487
+ "painting",
2488
+ "pairs",
2489
+ "pal",
2490
+ "pantry",
2491
+ "paper",
2492
+ "paperwork",
2493
+ "park",
2494
+ "parking",
2495
+ "parkinson",
2496
+ "parkinsons",
2497
+ "parks",
2498
+ "parmesan",
2499
+ "parsley",
2500
+ "particular",
2501
+ "parts",
2502
+ "pass",
2503
+ "passenger",
2504
+ "passes",
2505
+ "past",
2506
+ "pasta",
2507
+ "path",
2508
+ "patients",
2509
+ "patio",
2510
+ "pattern",
2511
+ "pay",
2512
+ "pd",
2513
+ "ped",
2514
+ "peeks",
2515
+ "pen",
2516
+ "people",
2517
+ "pepperoni",
2518
+ "peppers",
2519
+ "per",
2520
+ "perimeter",
2521
+ "period",
2522
+ "personally",
2523
+ "pes",
2524
+ "ph",
2525
+ "ph.d.",
2526
+ "phone",
2527
+ "phy",
2528
+ "pick",
2529
+ "picked",
2530
+ "picking",
2531
+ "pickles",
2532
+ "picks",
2533
+ "picnic",
2534
+ "piece",
2535
+ "pieces",
2536
+ "pier",
2537
+ "pies",
2538
+ "pile",
2539
+ "piles",
2540
+ "pill",
2541
+ "pills",
2542
+ "pin",
2543
+ "pints",
2544
+ "piza",
2545
+ "place",
2546
+ "placement",
2547
+ "places",
2548
+ "plain",
2549
+ "plane",
2550
+ "planning",
2551
+ "plans",
2552
+ "plants",
2553
+ "plaque",
2554
+ "plastic",
2555
+ "plate",
2556
+ "plates",
2557
+ "playing",
2558
+ "ple",
2559
+ "plugs",
2560
+ "plum",
2561
+ "plushies",
2562
+ "pm",
2563
+ "point",
2564
+ "polish",
2565
+ "poo",
2566
+ "poop",
2567
+ "pop",
2568
+ "popsicle",
2569
+ "pork",
2570
+ "port",
2571
+ "ports",
2572
+ "post",
2573
+ "posts",
2574
+ "pot",
2575
+ "potato",
2576
+ "potatoes",
2577
+ "pots",
2578
+ "pound",
2579
+ "pounds",
2580
+ "power",
2581
+ "pr.",
2582
+ "prayer",
2583
+ "pre",
2584
+ "preferences",
2585
+ "prepare",
2586
+ "prepared",
2587
+ "prepped",
2588
+ "present",
2589
+ "presentation",
2590
+ "pressure",
2591
+ "price",
2592
+ "principal",
2593
+ "print",
2594
+ "printed",
2595
+ "prints",
2596
+ "prize",
2597
+ "prizes",
2598
+ "proceeds",
2599
+ "process",
2600
+ "produce",
2601
+ "prof",
2602
+ "prof.",
2603
+ "property",
2604
+ "propped",
2605
+ "prosecco",
2606
+ "protect",
2607
+ "protective",
2608
+ "provided",
2609
+ "pt.",
2610
+ "pty",
2611
+ "puddles",
2612
+ "puddy",
2613
+ "puerto",
2614
+ "pull",
2615
+ "pulls",
2616
+ "punching",
2617
+ "purchase",
2618
+ "purple",
2619
+ "purse",
2620
+ "put",
2621
+ "puts",
2622
+ "putting",
2623
+ "q",
2624
+ "q.",
2625
+ "que",
2626
+ "questions",
2627
+ "quick",
2628
+ "quickly",
2629
+ "r",
2630
+ "r.",
2631
+ "rab",
2632
+ "race",
2633
+ "racers",
2634
+ "racing",
2635
+ "rack",
2636
+ "racks",
2637
+ "raffle",
2638
+ "rake",
2639
+ "rakes",
2640
+ "ral",
2641
+ "ras",
2642
+ "rate",
2643
+ "ray",
2644
+ "rby",
2645
+ "rch",
2646
+ "rds",
2647
+ "re",
2648
+ "re.",
2649
+ "rea",
2650
+ "reach",
2651
+ "reaches",
2652
+ "reading",
2653
+ "reads",
2654
+ "ready",
2655
+ "realize",
2656
+ "realizes",
2657
+ "rearrange",
2658
+ "receipt",
2659
+ "reception",
2660
+ "recipe",
2661
+ "rectangular",
2662
+ "red",
2663
+ "ree",
2664
+ "reefs",
2665
+ "refrigerated",
2666
+ "register",
2667
+ "relatively",
2668
+ "release",
2669
+ "remain",
2670
+ "remaining",
2671
+ "remains",
2672
+ "remember",
2673
+ "remembering",
2674
+ "remembers",
2675
+ "reminded",
2676
+ "reminds",
2677
+ "remove",
2678
+ "removes",
2679
+ "ren",
2680
+ "rep",
2681
+ "rep.",
2682
+ "repair",
2683
+ "repeats",
2684
+ "rerouted",
2685
+ "res",
2686
+ "research",
2687
+ "residual",
2688
+ "rest",
2689
+ "return",
2690
+ "returning",
2691
+ "returns",
2692
+ "reusable",
2693
+ "rev",
2694
+ "rev.",
2695
+ "rew",
2696
+ "rge",
2697
+ "ria",
2698
+ "ribs",
2699
+ "ric",
2700
+ "rico",
2701
+ "ricotta",
2702
+ "ride",
2703
+ "riding",
2704
+ "right",
2705
+ "rinses",
2706
+ "rip",
2707
+ "riverside",
2708
+ "riz",
2709
+ "rk.",
2710
+ "rks",
2711
+ "rlo",
2712
+ "rly",
2713
+ "rms",
2714
+ "rns",
2715
+ "road",
2716
+ "rock",
2717
+ "rocks",
2718
+ "rof",
2719
+ "roller",
2720
+ "rom",
2721
+ "romaine",
2722
+ "romanian",
2723
+ "rome",
2724
+ "roof",
2725
+ "room",
2726
+ "rope",
2727
+ "ror",
2728
+ "ros",
2729
+ "rough",
2730
+ "routine",
2731
+ "row",
2732
+ "rows",
2733
+ "rp.",
2734
+ "rry",
2735
+ "rs.",
2736
+ "rse",
2737
+ "rst",
2738
+ "rto",
2739
+ "rts",
2740
+ "rty",
2741
+ "rugs",
2742
+ "run",
2743
+ "running",
2744
+ "runs",
2745
+ "rve",
2746
+ "s",
2747
+ "s's",
2748
+ "s.",
2749
+ "s.c.",
2750
+ "salad",
2751
+ "same",
2752
+ "san",
2753
+ "sand",
2754
+ "sandals",
2755
+ "sandbar",
2756
+ "sanded",
2757
+ "sandwich",
2758
+ "sandwiches",
2759
+ "santa",
2760
+ "sauce",
2761
+ "sausage",
2762
+ "say",
2763
+ "saying",
2764
+ "says",
2765
+ "scale",
2766
+ "scanned",
2767
+ "scanner",
2768
+ "scanning",
2769
+ "scans",
2770
+ "schedule",
2771
+ "scheduled",
2772
+ "school",
2773
+ "scrape",
2774
+ "scraper",
2775
+ "scrapes",
2776
+ "scream",
2777
+ "scrubs",
2778
+ "sea",
2779
+ "seaport",
2780
+ "search",
2781
+ "seas",
2782
+ "seat",
2783
+ "second",
2784
+ "section",
2785
+ "security",
2786
+ "sed",
2787
+ "see",
2788
+ "sees",
2789
+ "select",
2790
+ "selects",
2791
+ "self",
2792
+ "selling",
2793
+ "seltzer",
2794
+ "sen",
2795
+ "sen.",
2796
+ "sends",
2797
+ "sent",
2798
+ "sep",
2799
+ "sep.",
2800
+ "separate",
2801
+ "separately",
2802
+ "sept",
2803
+ "sept.",
2804
+ "serve",
2805
+ "served",
2806
+ "ses",
2807
+ "set",
2808
+ "sets",
2809
+ "setting",
2810
+ "settle",
2811
+ "several",
2812
+ "sh.",
2813
+ "sha",
2814
+ "shades",
2815
+ "shall",
2816
+ "shampoo",
2817
+ "share",
2818
+ "she",
2819
+ "she's",
2820
+ "shed",
2821
+ "sheet",
2822
+ "she\u2019s",
2823
+ "shiny",
2824
+ "ship",
2825
+ "ships",
2826
+ "shirt",
2827
+ "shirts",
2828
+ "shoes",
2829
+ "shoot",
2830
+ "shop",
2831
+ "shopping",
2832
+ "short",
2833
+ "shortened",
2834
+ "shorts",
2835
+ "should",
2836
+ "shovel",
2837
+ "show",
2838
+ "shower",
2839
+ "shows",
2840
+ "shredded",
2841
+ "shrubs",
2842
+ "sic",
2843
+ "side",
2844
+ "sidewalks",
2845
+ "sign",
2846
+ "silverware",
2847
+ "silvery",
2848
+ "sink",
2849
+ "sister",
2850
+ "sit",
2851
+ "sits",
2852
+ "skillet",
2853
+ "sks",
2854
+ "sla",
2855
+ "slacks",
2856
+ "sle",
2857
+ "slice",
2858
+ "slide",
2859
+ "slightly",
2860
+ "slow",
2861
+ "slowly",
2862
+ "small",
2863
+ "smiles",
2864
+ "smushed",
2865
+ "snack",
2866
+ "snacks",
2867
+ "sneakers",
2868
+ "so",
2869
+ "soap",
2870
+ "social",
2871
+ "socialize",
2872
+ "socializing",
2873
+ "socks",
2874
+ "soda",
2875
+ "sofa",
2876
+ "soil",
2877
+ "solar",
2878
+ "some",
2879
+ "someone",
2880
+ "someones",
2881
+ "somethin",
2882
+ "somethin'",
2883
+ "something",
2884
+ "somethin\u2019",
2885
+ "somewhere",
2886
+ "son",
2887
+ "sons",
2888
+ "sound",
2889
+ "soup",
2890
+ "space",
2891
+ "sparkling",
2892
+ "spear",
2893
+ "specifically",
2894
+ "specifies",
2895
+ "speeches",
2896
+ "speed",
2897
+ "speedbag",
2898
+ "spent",
2899
+ "spices",
2900
+ "splashing",
2901
+ "sponge",
2902
+ "spot",
2903
+ "spots",
2904
+ "spray",
2905
+ "sprays",
2906
+ "spread",
2907
+ "sprint",
2908
+ "srs",
2909
+ "ss.",
2910
+ "ssy",
2911
+ "st",
2912
+ "st.",
2913
+ "sta",
2914
+ "stacking",
2915
+ "stacks",
2916
+ "stairs",
2917
+ "stakes",
2918
+ "stamford",
2919
+ "stand",
2920
+ "standing",
2921
+ "staples",
2922
+ "starbucks",
2923
+ "start",
2924
+ "starts",
2925
+ "state",
2926
+ "station",
2927
+ "stations",
2928
+ "stays",
2929
+ "ste",
2930
+ "steady",
2931
+ "step",
2932
+ "steps",
2933
+ "sticks",
2934
+ "stop",
2935
+ "stoplights",
2936
+ "stopping",
2937
+ "stops",
2938
+ "store",
2939
+ "stores",
2940
+ "story",
2941
+ "stove",
2942
+ "strawberries",
2943
+ "strawberry",
2944
+ "street",
2945
+ "streets",
2946
+ "stretch",
2947
+ "stretches",
2948
+ "strides",
2949
+ "string",
2950
+ "strong",
2951
+ "sts",
2952
+ "stuck",
2953
+ "stuffed",
2954
+ "stuffs",
2955
+ "successions",
2956
+ "suit",
2957
+ "suitcase",
2958
+ "suits",
2959
+ "sullen",
2960
+ "summer",
2961
+ "sun",
2962
+ "sunglasses",
2963
+ "sunny",
2964
+ "sunscreen",
2965
+ "super",
2966
+ "superman",
2967
+ "supplies",
2968
+ "supposed",
2969
+ "sure",
2970
+ "surface",
2971
+ "surfers",
2972
+ "sweatshirt",
2973
+ "sweet",
2974
+ "swimming",
2975
+ "swims",
2976
+ "swipes",
2977
+ "symptoms",
2978
+ "s\u2019s",
2979
+ "t",
2980
+ "t's",
2981
+ "t.",
2982
+ "ta",
2983
+ "table",
2984
+ "tablecloth",
2985
+ "tahuda",
2986
+ "take",
2987
+ "takes",
2988
+ "taking",
2989
+ "tal",
2990
+ "talk",
2991
+ "talking",
2992
+ "talks",
2993
+ "tank",
2994
+ "tarp",
2995
+ "task",
2996
+ "taxi",
2997
+ "tch",
2998
+ "td.",
2999
+ "teach",
3000
+ "ted",
3001
+ "teeth",
3002
+ "tell",
3003
+ "telling",
3004
+ "tells",
3005
+ "tem",
3006
+ "temperature",
3007
+ "tenn",
3008
+ "tenn.",
3009
+ "tep",
3010
+ "ter",
3011
+ "terminal",
3012
+ "tes",
3013
+ "tesla",
3014
+ "text",
3015
+ "texts",
3016
+ "than",
3017
+ "thankless",
3018
+ "thanks",
3019
+ "thanksgiving",
3020
+ "that",
3021
+ "that's",
3022
+ "that\u2019s",
3023
+ "the",
3024
+ "their",
3025
+ "them",
3026
+ "themed",
3027
+ "themselves",
3028
+ "then",
3029
+ "there",
3030
+ "there's",
3031
+ "there\u2019s",
3032
+ "these",
3033
+ "they",
3034
+ "thing",
3035
+ "things",
3036
+ "think",
3037
+ "this",
3038
+ "this's",
3039
+ "this\u2019s",
3040
+ "thoroughly",
3041
+ "those",
3042
+ "through",
3043
+ "throughly",
3044
+ "throughout",
3045
+ "throw",
3046
+ "throwing",
3047
+ "thrown",
3048
+ "throws",
3049
+ "ths",
3050
+ "thursday",
3051
+ "tic",
3052
+ "ticks",
3053
+ "til",
3054
+ "time",
3055
+ "times",
3056
+ "tio",
3057
+ "tiramisu",
3058
+ "tire",
3059
+ "tit",
3060
+ "titled",
3061
+ "tle",
3062
+ "tly",
3063
+ "to",
3064
+ "toast",
3065
+ "toaster",
3066
+ "today",
3067
+ "todds",
3068
+ "together",
3069
+ "toilet",
3070
+ "tomato",
3071
+ "tomatoes",
3072
+ "tons",
3073
+ "too",
3074
+ "toothbrush",
3075
+ "toothpaste",
3076
+ "top",
3077
+ "tor",
3078
+ "total",
3079
+ "tote",
3080
+ "tourists",
3081
+ "toward",
3082
+ "towards",
3083
+ "towels",
3084
+ "tower",
3085
+ "tra",
3086
+ "traditional",
3087
+ "transitions",
3088
+ "trash",
3089
+ "travel",
3090
+ "traveling",
3091
+ "travels",
3092
+ "tree",
3093
+ "triathlon",
3094
+ "tries",
3095
+ "trip",
3096
+ "trophies",
3097
+ "trophy",
3098
+ "trouble",
3099
+ "truck",
3100
+ "trunk",
3101
+ "try",
3102
+ "trying",
3103
+ "tsa",
3104
+ "tta",
3105
+ "tti",
3106
+ "turkey",
3107
+ "turn",
3108
+ "turns",
3109
+ "tweaks",
3110
+ "twice",
3111
+ "two",
3112
+ "typically",
3113
+ "t\u2019s",
3114
+ "u",
3115
+ "u.",
3116
+ "ual",
3117
+ "uber",
3118
+ "ubs",
3119
+ "uce",
3120
+ "uck",
3121
+ "uda",
3122
+ "uds",
3123
+ "ues",
3124
+ "uff",
3125
+ "ug.",
3126
+ "ugh",
3127
+ "ugs",
3128
+ "uit",
3129
+ "ul.",
3130
+ "uld",
3131
+ "ule",
3132
+ "ull",
3133
+ "ult",
3134
+ "ultimate",
3135
+ "uly",
3136
+ "ump",
3137
+ "un.",
3138
+ "uncle",
3139
+ "und",
3140
+ "under",
3141
+ "underwear",
3142
+ "unhooks",
3143
+ "unk",
3144
+ "unlock",
3145
+ "uns",
3146
+ "until",
3147
+ "unusable",
3148
+ "up",
3149
+ "upe",
3150
+ "ups",
3151
+ "upstairs",
3152
+ "ure",
3153
+ "urn",
3154
+ "urs",
3155
+ "ury",
3156
+ "us",
3157
+ "use",
3158
+ "uses",
3159
+ "ush",
3160
+ "using",
3161
+ "uss",
3162
+ "ust",
3163
+ "usual",
3164
+ "ute",
3165
+ "uts",
3166
+ "uty",
3167
+ "uum",
3168
+ "uys",
3169
+ "v",
3170
+ "v.",
3171
+ "v.s",
3172
+ "v.s.",
3173
+ "v.v",
3174
+ "v_v",
3175
+ "va",
3176
+ "va.",
3177
+ "vacuum",
3178
+ "val",
3179
+ "various",
3180
+ "vas",
3181
+ "ve",
3182
+ "ved",
3183
+ "vegetables",
3184
+ "vegetarian",
3185
+ "veggie",
3186
+ "veggies",
3187
+ "vel",
3188
+ "ven",
3189
+ "vendor",
3190
+ "vendors",
3191
+ "ver",
3192
+ "very",
3193
+ "ves",
3194
+ "vid",
3195
+ "vie",
3196
+ "view",
3197
+ "village",
3198
+ "vin",
3199
+ "visible",
3200
+ "visit",
3201
+ "voting",
3202
+ "vs",
3203
+ "vs.",
3204
+ "w",
3205
+ "w's",
3206
+ "w.",
3207
+ "w/o",
3208
+ "waiting",
3209
+ "waits",
3210
+ "wake",
3211
+ "wakes",
3212
+ "waking",
3213
+ "walk",
3214
+ "walker",
3215
+ "walking",
3216
+ "walks",
3217
+ "walkway",
3218
+ "walkways",
3219
+ "wall",
3220
+ "wallet",
3221
+ "walls",
3222
+ "want",
3223
+ "wants",
3224
+ "warmed",
3225
+ "was",
3226
+ "wash",
3227
+ "wash.",
3228
+ "washcloth",
3229
+ "washer",
3230
+ "washing",
3231
+ "watch",
3232
+ "water",
3233
+ "watermelon",
3234
+ "waterway",
3235
+ "waves",
3236
+ "way",
3237
+ "we",
3238
+ "wearing",
3239
+ "weather",
3240
+ "webpages",
3241
+ "websites",
3242
+ "wedding",
3243
+ "wednesday",
3244
+ "weed",
3245
+ "weeding",
3246
+ "weeds",
3247
+ "weekend",
3248
+ "weighed",
3249
+ "well",
3250
+ "wer",
3251
+ "were",
3252
+ "west",
3253
+ "wetsuit",
3254
+ "wharf",
3255
+ "what",
3256
+ "what's",
3257
+ "whatever",
3258
+ "what\u2019s",
3259
+ "wheel",
3260
+ "when",
3261
+ "when's",
3262
+ "when\u2019s",
3263
+ "where",
3264
+ "where's",
3265
+ "where\u2019s",
3266
+ "whether",
3267
+ "which",
3268
+ "while",
3269
+ "white",
3270
+ "who",
3271
+ "who's",
3272
+ "whole",
3273
+ "who\u2019s",
3274
+ "why",
3275
+ "why's",
3276
+ "why\u2019s",
3277
+ "wife",
3278
+ "wifes",
3279
+ "will",
3280
+ "windex",
3281
+ "wine",
3282
+ "wines",
3283
+ "winner",
3284
+ "winners",
3285
+ "winter",
3286
+ "wipes",
3287
+ "wis",
3288
+ "wis.",
3289
+ "with",
3290
+ "without",
3291
+ "wly",
3292
+ "wo",
3293
+ "woman",
3294
+ "wooden",
3295
+ "work",
3296
+ "working",
3297
+ "workout",
3298
+ "works",
3299
+ "would",
3300
+ "wrappers",
3301
+ "wrapping",
3302
+ "writes",
3303
+ "w\u2019s",
3304
+ "x",
3305
+ "x'",
3306
+ "x'x",
3307
+ "x'xxxx",
3308
+ "x.",
3309
+ "x.X",
3310
+ "x.d",
3311
+ "x.x",
3312
+ "x.x.",
3313
+ "x/x",
3314
+ "xD",
3315
+ "xDD",
3316
+ "xX",
3317
+ "xXX",
3318
+ "x_X",
3319
+ "x_d",
3320
+ "x_x",
3321
+ "xd",
3322
+ "xdd",
3323
+ "xed",
3324
+ "xes",
3325
+ "xit",
3326
+ "xts",
3327
+ "xx",
3328
+ "xx'",
3329
+ "xx'x",
3330
+ "xx'xx",
3331
+ "xx.",
3332
+ "xxx",
3333
+ "xxx'x",
3334
+ "xxx/xx",
3335
+ "xxxx",
3336
+ "xxxx'",
3337
+ "xxxx'x",
3338
+ "xxxx\u2019",
3339
+ "xxxx\u2019x",
3340
+ "xxx\u2019x",
3341
+ "xx\u2019",
3342
+ "xx\u2019x",
3343
+ "xx\u2019xx",
3344
+ "x\u2019",
3345
+ "x\u2019x",
3346
+ "x\u2019xxxx",
3347
+ "x\ufe35x",
3348
+ "y",
3349
+ "y'",
3350
+ "y's",
3351
+ "y.",
3352
+ "y_A",
3353
+ "yacht",
3354
+ "yard",
3355
+ "yards",
3356
+ "yardwork",
3357
+ "yellow",
3358
+ "yer",
3359
+ "yogurts",
3360
+ "york",
3361
+ "you",
3362
+ "younger",
3363
+ "your",
3364
+ "y\u2019",
3365
+ "y\u2019s",
3366
+ "z",
3367
+ "z.",
3368
+ "zen",
3369
+ "zer",
3370
+ "zes",
3371
+ "ziplock",
3372
+ "zone",
3373
+ "|",
3374
+ "}",
3375
+ "\u00a0",
3376
+ "\u00ac",
3377
+ "\u00ac_\u00ac",
3378
+ "\u00af",
3379
+ "\u00af\\(x)/\u00af",
3380
+ "\u00af\\(\u30c4)/\u00af",
3381
+ "\u00b0",
3382
+ "\u00b0C.",
3383
+ "\u00b0F.",
3384
+ "\u00b0K.",
3385
+ "\u00b0X.",
3386
+ "\u00b0c.",
3387
+ "\u00b0f.",
3388
+ "\u00b0k.",
3389
+ "\u00b0x.",
3390
+ "\u00e4",
3391
+ "\u00e4.",
3392
+ "\u00f6",
3393
+ "\u00f6.",
3394
+ "\u00fc",
3395
+ "\u00fc.",
3396
+ "\u0ca0",
3397
+ "\u0ca0_\u0ca0",
3398
+ "\u0ca0\ufe35\u0ca0",
3399
+ "\u2014",
3400
+ "\u2018",
3401
+ "\u2018S",
3402
+ "\u2018X",
3403
+ "\u2018s",
3404
+ "\u2018x",
3405
+ "\u2019",
3406
+ "\u2019-(",
3407
+ "\u2019-)",
3408
+ "\u2019Cause",
3409
+ "\u2019Cos",
3410
+ "\u2019Coz",
3411
+ "\u2019Cuz",
3412
+ "\u2019S",
3413
+ "\u2019X",
3414
+ "\u2019Xxx",
3415
+ "\u2019Xxxxx",
3416
+ "\u2019am",
3417
+ "\u2019bout",
3418
+ "\u2019cause",
3419
+ "\u2019cos",
3420
+ "\u2019coz",
3421
+ "\u2019cuz",
3422
+ "\u2019d",
3423
+ "\u2019em",
3424
+ "\u2019ll",
3425
+ "\u2019m",
3426
+ "\u2019nuff",
3427
+ "\u2019re",
3428
+ "\u2019s",
3429
+ "\u2019ve",
3430
+ "\u2019x",
3431
+ "\u2019xx",
3432
+ "\u2019xxx",
3433
+ "\u2019xxxx",
3434
+ "\u2019y",
3435
+ "\u2019\u2019",
3436
+ "\u2501",
3437
+ "\u253b",
3438
+ "\u253b\u2501\u253b",
3439
+ "\u256f",
3440
+ "\u25a1",
3441
+ "\ufe35",
3442
+ "\uff09"
3443
+ ]
vocab/vectors ADDED
Binary file (128 Bytes). View file
 
vocab/vectors.cfg ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+ "mode":"default"
3
+ }