andreids commited on
Commit
f6fd353
1 Parent(s): d25d355

Update spaCy pipeline

Browse files
.gitattributes CHANGED
@@ -32,3 +32,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
32
  *.zip filter=lfs diff=lfs merge=lfs -text
33
  *.zst filter=lfs diff=lfs merge=lfs -text
34
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
32
  *.zip filter=lfs diff=lfs merge=lfs -text
33
  *.zst filter=lfs diff=lfs merge=lfs -text
34
  *tfevents* filter=lfs diff=lfs merge=lfs -text
35
+ en_nature_of_li_multilabel-any-py3-none-any.whl filter=lfs diff=lfs merge=lfs -text
36
+ textcat_multilabel/model filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - spacy
4
+ - text-classification
5
+ language:
6
+ - en
7
+ model-index:
8
+ - name: en_nature_of_li_multilabel
9
+ results: []
10
+ ---
11
+ | Feature | Description |
12
+ | --- | --- |
13
+ | **Name** | `en_nature_of_li_multilabel` |
14
+ | **Version** | `0.0.0` |
15
+ | **spaCy** | `>=3.4.3,<3.5.0` |
16
+ | **Default Pipeline** | `textcat_multilabel` |
17
+ | **Components** | `textcat_multilabel` |
18
+ | **Vectors** | 0 keys, 0 unique vectors (0 dimensions) |
19
+ | **Sources** | n/a |
20
+ | **License** | n/a |
21
+ | **Author** | [n/a]() |
22
+
23
+ ### Label Scheme
24
+
25
+ <details>
26
+
27
+ <summary>View label scheme (8 labels for 1 components)</summary>
28
+
29
+ | Component | Labels |
30
+ | --- | --- |
31
+ | **`textcat_multilabel`** | `shirt`, `balloon`, `cream`, `socks`, `pants`, `shampoo`, `toy`, `sweater` |
32
+
33
+ </details>
34
+
35
+ ### Accuracy
36
+
37
+ | Type | Score |
38
+ | --- | --- |
39
+ | `CATS_SCORE` | 95.82 |
40
+ | `CATS_MICRO_P` | 99.77 |
41
+ | `CATS_MICRO_R` | 99.60 |
42
+ | `CATS_MICRO_F` | 99.69 |
43
+ | `CATS_MACRO_P` | 74.48 |
44
+ | `CATS_MACRO_R` | 73.84 |
45
+ | `CATS_MACRO_F` | 74.14 |
46
+ | `CATS_MACRO_AUC` | 95.82 |
47
+ | `CATS_MACRO_AUC_PER_TYPE` | 0.00 |
48
+ | `TEXTCAT_MULTILABEL_LOSS` | 7.61 |
config.cfg ADDED
@@ -0,0 +1,142 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [paths]
2
+ train = "corpus/train.spacy"
3
+ dev = "corpus/dev.spacy"
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 = ["textcat_multilabel"]
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
+
21
+ [components]
22
+
23
+ [components.textcat_multilabel]
24
+ factory = "textcat_multilabel"
25
+ scorer = {"@scorers":"spacy.textcat_multilabel_scorer.v1"}
26
+ threshold = 0.5
27
+
28
+ [components.textcat_multilabel.model]
29
+ @architectures = "spacy.TextCatEnsemble.v2"
30
+ nO = null
31
+
32
+ [components.textcat_multilabel.model.linear_model]
33
+ @architectures = "spacy.TextCatBOW.v1"
34
+ exclusive_classes = false
35
+ ngram_size = 1
36
+ no_output_layer = false
37
+ nO = null
38
+
39
+ [components.textcat_multilabel.model.tok2vec]
40
+ @architectures = "spacy.Tok2Vec.v2"
41
+
42
+ [components.textcat_multilabel.model.tok2vec.embed]
43
+ @architectures = "spacy.MultiHashEmbed.v1"
44
+ width = 64
45
+ rows = [2000,2000,1000,1000,1000,1000]
46
+ attrs = ["ORTH","LOWER","PREFIX","SUFFIX","SHAPE","ID"]
47
+ include_static_vectors = false
48
+
49
+ [components.textcat_multilabel.model.tok2vec.encode]
50
+ @architectures = "spacy.MaxoutWindowEncoder.v2"
51
+ width = 64
52
+ window_size = 1
53
+ maxout_pieces = 3
54
+ depth = 2
55
+
56
+ [corpora]
57
+
58
+ [corpora.dev]
59
+ @readers = "spacy.Corpus.v1"
60
+ path = ${paths.dev}
61
+ gold_preproc = false
62
+ max_length = 0
63
+ limit = 0
64
+ augmenter = null
65
+
66
+ [corpora.train]
67
+ @readers = "spacy.Corpus.v1"
68
+ path = ${paths.train}
69
+ gold_preproc = false
70
+ max_length = 0
71
+ limit = 0
72
+ augmenter = null
73
+
74
+ [training]
75
+ seed = ${system.seed}
76
+ gpu_allocator = ${system.gpu_allocator}
77
+ dropout = 0.1
78
+ accumulate_gradient = 1
79
+ patience = 1000
80
+ max_epochs = 0
81
+ max_steps = 2000
82
+ eval_frequency = 100
83
+ frozen_components = []
84
+ dev_corpus = "corpora.dev"
85
+ train_corpus = "corpora.train"
86
+ before_to_disk = null
87
+ annotating_components = []
88
+
89
+ [training.batcher]
90
+ @batchers = "spacy.batch_by_words.v1"
91
+ discard_oversize = false
92
+ tolerance = 0.2
93
+ get_length = null
94
+
95
+ [training.batcher.size]
96
+ @schedules = "compounding.v1"
97
+ start = 100
98
+ stop = 1000
99
+ compound = 1.001
100
+ t = 0.0
101
+
102
+ [training.logger]
103
+ @loggers = "spacy.ConsoleLogger.v1"
104
+ progress_bar = false
105
+
106
+ [training.optimizer]
107
+ @optimizers = "Adam.v1"
108
+ beta1 = 0.9
109
+ beta2 = 0.999
110
+ L2_is_weight_decay = true
111
+ L2 = 0.01
112
+ grad_clip = 1.0
113
+ use_averages = false
114
+ eps = 0.00000001
115
+ learn_rate = 0.001
116
+
117
+ [training.score_weights]
118
+ cats_score = 1.0
119
+ cats_score_desc = null
120
+ cats_micro_p = null
121
+ cats_micro_r = null
122
+ cats_micro_f = null
123
+ cats_macro_p = null
124
+ cats_macro_r = null
125
+ cats_macro_f = null
126
+ cats_macro_auc = null
127
+ cats_f_per_type = null
128
+ cats_macro_auc_per_type = null
129
+
130
+ [pretraining]
131
+
132
+ [initialize]
133
+ vectors = ${paths.vectors}
134
+ init_tok2vec = ${paths.init_tok2vec}
135
+ vocab_data = null
136
+ lookups = null
137
+ before_init = null
138
+ after_init = null
139
+
140
+ [initialize.components]
141
+
142
+ [initialize.tokenizer]
en_nature_of_li_multilabel-any-py3-none-any.whl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ab4152cc9c2cfcc5c1510e67fda315337c8fc19b92f8a65703f1118a2a32090c
3
+ size 2573400
meta.json ADDED
@@ -0,0 +1,97 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lang":"en",
3
+ "name":"nature_of_li_multilabel",
4
+ "version":"0.0.0",
5
+ "description":"",
6
+ "author":"",
7
+ "email":"",
8
+ "url":"",
9
+ "license":"",
10
+ "spacy_version":">=3.4.3,<3.5.0",
11
+ "spacy_git_version":"63673a792",
12
+ "vectors":{
13
+ "width":0,
14
+ "vectors":0,
15
+ "keys":0,
16
+ "name":null
17
+ },
18
+ "labels":{
19
+ "textcat_multilabel":[
20
+ "shirt",
21
+ "balloon",
22
+ "cream",
23
+ "socks",
24
+ "pants",
25
+ "shampoo",
26
+ "toy",
27
+ "sweater"
28
+ ]
29
+ },
30
+ "pipeline":[
31
+ "textcat_multilabel"
32
+ ],
33
+ "components":[
34
+ "textcat_multilabel"
35
+ ],
36
+ "disabled":[
37
+
38
+ ],
39
+ "performance":{
40
+ "cats_score":0.9581552495,
41
+ "cats_score_desc":"macro AUC",
42
+ "cats_micro_p":0.9977259572,
43
+ "cats_micro_r":0.9959963678,
44
+ "cats_micro_f":0.9968604123,
45
+ "cats_macro_p":0.7448195473,
46
+ "cats_macro_r":0.7383709233,
47
+ "cats_macro_f":0.7413850696,
48
+ "cats_macro_auc":0.9581552495,
49
+ "cats_f_per_type":{
50
+ "shirt":{
51
+ "p":0.9982481752,
52
+ "r":0.9962121212,
53
+ "f":0.9972291089
54
+ },
55
+ "balloon":{
56
+ "p":0.9986517611,
57
+ "r":1.0,
58
+ "f":0.9993254258
59
+ },
60
+ "cream":{
61
+ "p":0.0,
62
+ "r":0.0,
63
+ "f":0.0
64
+ },
65
+ "socks":{
66
+ "p":0.9616564417,
67
+ "r":0.9968203498,
68
+ "f":0.9789227166
69
+ },
70
+ "pants":{
71
+ "p":1.0,
72
+ "r":0.9873217116,
73
+ "f":0.9936204147
74
+ },
75
+ "shampoo":{
76
+ "p":0.0,
77
+ "r":0.0,
78
+ "f":0.0
79
+ },
80
+ "toy":{
81
+ "p":1.0,
82
+ "r":0.9980417755,
83
+ "f":0.9990199281
84
+ },
85
+ "sweater":{
86
+ "p":1.0,
87
+ "r":0.9285714286,
88
+ "f":0.962962963
89
+ }
90
+ },
91
+ "cats_macro_auc_per_type":0.0,
92
+ "textcat_multilabel_loss":0.0760707086
93
+ },
94
+ "requirements":[
95
+
96
+ ]
97
+ }
textcat_multilabel/cfg ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "labels":[
3
+ "shirt",
4
+ "balloon",
5
+ "cream",
6
+ "socks",
7
+ "pants",
8
+ "shampoo",
9
+ "toy",
10
+ "sweater"
11
+ ],
12
+ "threshold":0.5
13
+ }
textcat_multilabel/model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6de903c4e545c60e100540538ea88ad19b4738f20b7e8ce74029eff6308382ad
3
+ size 11092680
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�2y…$|……$|,$|:$|;$|\!$|\?$|¿$|؟$|¡$|\($|\)$|\[$|\]$|\{$|\}$|<$|>$|_$|#$|\*$|&$|。$|?$|!$|,$|、$|;$|:$|~$|·$|।$|،$|۔$|؛$|٪$|\.\.+$|…$|\'$|"$|”$|“$|`$|‘$|´$|’$|‚$|,$|„$|»$|«$|「$|」$|『$|』$|($|)$|〔$|〕$|【$|】$|《$|》$|〈$|〉$|[\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,4458 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ "-/",
75
+ "-0",
76
+ "-11",
77
+ "-13",
78
+ "-3",
79
+ "-8",
80
+ "-D",
81
+ "-O",
82
+ "-P",
83
+ "-X",
84
+ "-_-",
85
+ "-__-",
86
+ "-d",
87
+ "-o",
88
+ "-p",
89
+ "-x",
90
+ "-|",
91
+ ".",
92
+ "...",
93
+ ".00",
94
+ ".05",
95
+ ".10",
96
+ ".20",
97
+ ".30",
98
+ ".C.",
99
+ ".D.",
100
+ ".E.",
101
+ ".G.",
102
+ ".H.",
103
+ ".J.",
104
+ ".M.",
105
+ ".Y.",
106
+ "._.",
107
+ ".e.",
108
+ ".g.",
109
+ ".m.",
110
+ ".s.",
111
+ "/",
112
+ "/12",
113
+ "/28",
114
+ "/3",
115
+ "/d",
116
+ "/or",
117
+ "0",
118
+ "0,3",
119
+ "0.0",
120
+ "0.o",
121
+ "000",
122
+ "004",
123
+ "005",
124
+ "019",
125
+ "021",
126
+ "022",
127
+ "032",
128
+ "040",
129
+ "058",
130
+ "0ML",
131
+ "0_0",
132
+ "0_o",
133
+ "0ml",
134
+ "0pc",
135
+ "0th",
136
+ "1",
137
+ "1.2",
138
+ "1/12",
139
+ "1/28",
140
+ "1/4",
141
+ "10",
142
+ "100",
143
+ "1000ml",
144
+ "1000pcs",
145
+ "100ML",
146
+ "100ml",
147
+ "100pcs",
148
+ "10a.m",
149
+ "10a.m.",
150
+ "10p.m",
151
+ "10p.m.",
152
+ "10pc",
153
+ "11",
154
+ "1159",
155
+ "1183",
156
+ "11a.m",
157
+ "11a.m.",
158
+ "11p.m",
159
+ "11p.m.",
160
+ "12",
161
+ "12,7",
162
+ "122",
163
+ "12423",
164
+ "12428",
165
+ "124504307501026757",
166
+ "12AX-13",
167
+ "12a.m",
168
+ "12a.m.",
169
+ "12ax-13",
170
+ "12p.m",
171
+ "12p.m.",
172
+ "13",
173
+ "14",
174
+ "159",
175
+ "16",
176
+ "17,5",
177
+ "17.05",
178
+ "18",
179
+ "18.00",
180
+ "182",
181
+ "183",
182
+ "19",
183
+ "19,1",
184
+ "1970",
185
+ "1a.m",
186
+ "1a.m.",
187
+ "1p.m",
188
+ "1p.m.",
189
+ "2",
190
+ "2,7",
191
+ "20",
192
+ "20,3",
193
+ "20.00",
194
+ "200",
195
+ "2000141399511",
196
+ "2000141451912",
197
+ "2000143537515",
198
+ "2005",
199
+ "2019",
200
+ "202",
201
+ "2021",
202
+ "2022",
203
+ "20pc",
204
+ "21",
205
+ "22",
206
+ "225ml",
207
+ "24",
208
+ "246",
209
+ "25",
210
+ "250gsm",
211
+ "26",
212
+ "28",
213
+ "28.00",
214
+ "2XL",
215
+ "2XS",
216
+ "2Y",
217
+ "2a.m",
218
+ "2a.m.",
219
+ "2p.m",
220
+ "2p.m.",
221
+ "2xl",
222
+ "2xs",
223
+ "2y",
224
+ "3",
225
+ "3.5",
226
+ "3/4",
227
+ "300",
228
+ "31058",
229
+ "33",
230
+ "333",
231
+ "34",
232
+ "350gsm",
233
+ "36",
234
+ "37",
235
+ "38",
236
+ "39",
237
+ "3XL",
238
+ "3XS",
239
+ "3Y",
240
+ "3a.m",
241
+ "3a.m.",
242
+ "3p.m",
243
+ "3p.m.",
244
+ "3x3",
245
+ "3x3x3",
246
+ "3xl",
247
+ "3xs",
248
+ "3y",
249
+ "4",
250
+ "400ml",
251
+ "40th",
252
+ "41",
253
+ "412",
254
+ "423",
255
+ "428",
256
+ "45",
257
+ "490",
258
+ "490ml",
259
+ "4XL",
260
+ "4XS",
261
+ "4Y",
262
+ "4a.m",
263
+ "4a.m.",
264
+ "4p.m",
265
+ "4p.m.",
266
+ "4xl",
267
+ "4xs",
268
+ "4y",
269
+ "5",
270
+ "50",
271
+ "500",
272
+ "50pc",
273
+ "511",
274
+ "515",
275
+ "589",
276
+ "5Inch",
277
+ "5L4",
278
+ "5Y",
279
+ "5a.m",
280
+ "5a.m.",
281
+ "5inch",
282
+ "5l4",
283
+ "5ml",
284
+ "5p.m",
285
+ "5p.m.",
286
+ "5y",
287
+ "6",
288
+ "600",
289
+ "60MPH",
290
+ "60mph",
291
+ "6109.10",
292
+ "6110.20",
293
+ "6206.30",
294
+ "63000",
295
+ "63V00",
296
+ "63v00",
297
+ "6PC",
298
+ "6Y",
299
+ "6a.m",
300
+ "6a.m.",
301
+ "6p.m",
302
+ "6p.m.",
303
+ "6pc",
304
+ "6y",
305
+ "7",
306
+ "7,5",
307
+ "7.5",
308
+ "754",
309
+ "757",
310
+ "75SG-11",
311
+ "75sg-11",
312
+ "76",
313
+ "765",
314
+ "7a.m",
315
+ "7a.m.",
316
+ "7p.m",
317
+ "7p.m.",
318
+ "8",
319
+ "8)",
320
+ "8-",
321
+ "8-)",
322
+ "8-D",
323
+ "8-d",
324
+ "8150591015499589",
325
+ "8150711639669589",
326
+ "8150831886579589",
327
+ "8151908232967754",
328
+ "8154283708689589",
329
+ "8156736629569589",
330
+ "88500",
331
+ "88600",
332
+ "887",
333
+ "8D",
334
+ "8Y",
335
+ "8a.m",
336
+ "8a.m.",
337
+ "8d",
338
+ "8p.m",
339
+ "8p.m.",
340
+ "8y",
341
+ "9",
342
+ "9,1",
343
+ "90s",
344
+ "912",
345
+ "929",
346
+ "931",
347
+ "969",
348
+ "970",
349
+ "989",
350
+ "999",
351
+ "9a.m",
352
+ "9a.m.",
353
+ "9p.m",
354
+ "9p.m.",
355
+ ":",
356
+ ":'(",
357
+ ":')",
358
+ ":'-(",
359
+ ":'-)",
360
+ ":(",
361
+ ":((",
362
+ ":(((",
363
+ ":()",
364
+ ":)",
365
+ ":))",
366
+ ":)))",
367
+ ":*",
368
+ ":-(",
369
+ ":-((",
370
+ ":-(((",
371
+ ":-)",
372
+ ":-))",
373
+ ":-)))",
374
+ ":-*",
375
+ ":-/",
376
+ ":-0",
377
+ ":-3",
378
+ ":->",
379
+ ":-D",
380
+ ":-O",
381
+ ":-P",
382
+ ":-X",
383
+ ":-]",
384
+ ":-d",
385
+ ":-o",
386
+ ":-p",
387
+ ":-x",
388
+ ":-|",
389
+ ":-}",
390
+ ":/",
391
+ ":0",
392
+ ":1",
393
+ ":3",
394
+ ":>",
395
+ ":D",
396
+ ":O",
397
+ ":P",
398
+ ":X",
399
+ ":]",
400
+ ":d",
401
+ ":o",
402
+ ":o)",
403
+ ":p",
404
+ ":x",
405
+ ":x)",
406
+ ":|",
407
+ ":}",
408
+ ":\u2019(",
409
+ ":\u2019)",
410
+ ":\u2019-(",
411
+ ":\u2019-)",
412
+ ";",
413
+ ";)",
414
+ ";-)",
415
+ ";-D",
416
+ ";-X",
417
+ ";-d",
418
+ ";D",
419
+ ";X",
420
+ ";_;",
421
+ ";d",
422
+ "<",
423
+ "<.<",
424
+ "</3",
425
+ "</d",
426
+ "<3",
427
+ "<33",
428
+ "<333",
429
+ "<d",
430
+ "<dd",
431
+ "<ddd",
432
+ "<space>",
433
+ "<xxxx>",
434
+ "=",
435
+ "=(",
436
+ "=)",
437
+ "=/",
438
+ "=3",
439
+ "=D",
440
+ "=X",
441
+ "=[",
442
+ "=]",
443
+ "=d",
444
+ "=|",
445
+ ">",
446
+ ">.<",
447
+ ">.>",
448
+ ">:(",
449
+ ">:o",
450
+ ">:x",
451
+ "><(((*>",
452
+ "@",
453
+ "@_@",
454
+ "A",
455
+ "A3",
456
+ "A4",
457
+ "ABCs",
458
+ "ABS",
459
+ "ALL",
460
+ "AMY",
461
+ "APC",
462
+ "Abe",
463
+ "Academy",
464
+ "Accessories",
465
+ "Acrylic",
466
+ "Activity",
467
+ "Add",
468
+ "Addition",
469
+ "Adidas",
470
+ "Adm",
471
+ "Adm.",
472
+ "Adoucissant",
473
+ "Adult",
474
+ "Agnes",
475
+ "Ai",
476
+ "Air",
477
+ "Ak",
478
+ "Ak.",
479
+ "Ala",
480
+ "Ala.",
481
+ "Alabama",
482
+ "Alandy",
483
+ "Alaska",
484
+ "Almohada",
485
+ "Alphabets/",
486
+ "Alphonse",
487
+ "Alternate",
488
+ "Amber",
489
+ "Amethyst",
490
+ "Amil",
491
+ "Aminalize",
492
+ "Ancient",
493
+ "Angel",
494
+ "Angels",
495
+ "Animal",
496
+ "Animals",
497
+ "Animaux",
498
+ "Anime",
499
+ "Apr",
500
+ "Apr.",
501
+ "April",
502
+ "Aqua",
503
+ "Archie",
504
+ "Arctic",
505
+ "Are",
506
+ "Ariz",
507
+ "Ariz.",
508
+ "Arizona",
509
+ "Ark",
510
+ "Ark.",
511
+ "Arkansas",
512
+ "Armadillo",
513
+ "Aron",
514
+ "Art",
515
+ "As",
516
+ "Ash",
517
+ "Asian",
518
+ "Attack",
519
+ "Auction",
520
+ "Aug",
521
+ "Aug.",
522
+ "Augen",
523
+ "August",
524
+ "Automatic",
525
+ "Autumn",
526
+ "Avery",
527
+ "Axolotl",
528
+ "Axolotl-",
529
+ "B",
530
+ "BCs",
531
+ "BEL",
532
+ "BNWTs",
533
+ "BO38246",
534
+ "Babs",
535
+ "Baby",
536
+ "Back",
537
+ "Backpack",
538
+ "Bag",
539
+ "Baiden",
540
+ "Baking",
541
+ "Balance",
542
+ "Ball",
543
+ "Balloon",
544
+ "Balloons",
545
+ "Bandana",
546
+ "Bara",
547
+ "Barbe",
548
+ "Barbour",
549
+ "Barley",
550
+ "Basic",
551
+ "Basics",
552
+ "Batcopter",
553
+ "Batman",
554
+ "Batteries",
555
+ "Bear",
556
+ "Bearded",
557
+ "Beaver",
558
+ "Bee",
559
+ "Beige",
560
+ "Believe",
561
+ "Bell",
562
+ "Bella",
563
+ "Belly",
564
+ "Ben",
565
+ "Bergit",
566
+ "Berry",
567
+ "Betty",
568
+ "Beula",
569
+ "Bigfoot",
570
+ "Bird",
571
+ "Birthday",
572
+ "Biscuit",
573
+ "Black",
574
+ "Blend",
575
+ "Blue",
576
+ "Bluey",
577
+ "Blush",
578
+ "Board",
579
+ "Boba",
580
+ "Bobo",
581
+ "Body",
582
+ "Bodyshell",
583
+ "Bois",
584
+ "Bold",
585
+ "Boop",
586
+ "Boss",
587
+ "Bow",
588
+ "Bowser",
589
+ "Box",
590
+ "Boxed",
591
+ "Boy",
592
+ "Brand",
593
+ "Britta",
594
+ "Broken",
595
+ "Bros",
596
+ "Bros.",
597
+ "Brown",
598
+ "Bruce",
599
+ "Brush",
600
+ "Bubba",
601
+ "Bubble",
602
+ "Buddy",
603
+ "Buds",
604
+ "Buggy",
605
+ "Bugs",
606
+ "Bumblebee",
607
+ "Burnt",
608
+ "Butterflies",
609
+ "Butterfly",
610
+ "Buy",
611
+ "By",
612
+ "C",
613
+ "C'm",
614
+ "C++",
615
+ "C.",
616
+ "C01",
617
+ "C72",
618
+ "CAL",
619
+ "CD",
620
+ "CHIA",
621
+ "CHICK",
622
+ "CT71",
623
+ "CTS2",
624
+ "CVD",
625
+ "Ca",
626
+ "Cable",
627
+ "Cactacea",
628
+ "Cactaceae",
629
+ "Cacti",
630
+ "Cake",
631
+ "Calif",
632
+ "Calif.",
633
+ "California",
634
+ "Call",
635
+ "Camel",
636
+ "Camilo",
637
+ "Can",
638
+ "Canda",
639
+ "Car",
640
+ "Caramel",
641
+ "Cardigan",
642
+ "Carlos",
643
+ "Carmelita",
644
+ "Carnage",
645
+ "Carol",
646
+ "Cashmere",
647
+ "Cat",
648
+ "Caterpillar",
649
+ "Caticorn",
650
+ "Cause",
651
+ "Celestina",
652
+ "Celestite",
653
+ "Chaps",
654
+ "Characters",
655
+ "Charcoal",
656
+ "Charity",
657
+ "Chasman",
658
+ "Chicken",
659
+ "Chicken-",
660
+ "Child",
661
+ "Children",
662
+ "Chinchilla",
663
+ "Chloe",
664
+ "Choose",
665
+ "Christmas",
666
+ "Chuey",
667
+ "Cigar",
668
+ "Citron",
669
+ "City",
670
+ "Classic",
671
+ "Claus",
672
+ "Clear",
673
+ "Clip",
674
+ "Clips",
675
+ "Clock",
676
+ "Cloth",
677
+ "Clothing",
678
+ "Co",
679
+ "Co.",
680
+ "Cobra",
681
+ "Cocoa",
682
+ "Code",
683
+ "Collar",
684
+ "Collection",
685
+ "Collector",
686
+ "Colo",
687
+ "Colo.",
688
+ "Color",
689
+ "ColorCAUTION",
690
+ "Colorado",
691
+ "Colors",
692
+ "Colour",
693
+ "Come",
694
+ "Comfy",
695
+ "Comics",
696
+ "Commonly",
697
+ "Concrete",
698
+ "Cone",
699
+ "Conn",
700
+ "Conn.",
701
+ "Connecticut",
702
+ "Connor",
703
+ "Copiapoa",
704
+ "Cor",
705
+ "Corgi",
706
+ "Corp",
707
+ "Corp.",
708
+ "Cos",
709
+ "Cotton",
710
+ "Could",
711
+ "Course",
712
+ "Cow",
713
+ "Cowgirl",
714
+ "Coz",
715
+ "Crab",
716
+ "Crazy",
717
+ "Cream",
718
+ "Creator",
719
+ "Crewneck",
720
+ "Crop",
721
+ "Cross",
722
+ "Cube",
723
+ "Cubo",
724
+ "Cuff",
725
+ "Cuffed",
726
+ "Cult",
727
+ "Curious",
728
+ "Cushion",
729
+ "Cust",
730
+ "Custom",
731
+ "Customised",
732
+ "Customize",
733
+ "Cute",
734
+ "Cuz",
735
+ "Cyber",
736
+ "Cybersecurity",
737
+ "C\u2019m",
738
+ "D",
739
+ "D.",
740
+ "D.C.",
741
+ "D06",
742
+ "D4UWS8001090666765",
743
+ "DC",
744
+ "DINGDING",
745
+ "DIY",
746
+ "DRY",
747
+ "DRY-",
748
+ "Dalmatian",
749
+ "Dancer",
750
+ "Dare",
751
+ "Dark",
752
+ "Dec",
753
+ "Dec.",
754
+ "December",
755
+ "Decoration",
756
+ "Decoupes",
757
+ "Deep",
758
+ "Deeto",
759
+ "Del",
760
+ "Del.",
761
+ "Delaware",
762
+ "Delivery",
763
+ "Desert",
764
+ "Design",
765
+ "Designs",
766
+ "Devor\u00e9",
767
+ "Dexter",
768
+ "Did",
769
+ "Dinosaur",
770
+ "Dinosaurier",
771
+ "Dinosaurs",
772
+ "Disco",
773
+ "Discount",
774
+ "Disney",
775
+ "Do",
776
+ "Does",
777
+ "Dog",
778
+ "Doin",
779
+ "Doin'",
780
+ "Doin\u2019",
781
+ "Doll",
782
+ "Dollgraduation",
783
+ "Dolls",
784
+ "Domino",
785
+ "Dominoes",
786
+ "Donkey",
787
+ "Doos",
788
+ "Dr",
789
+ "Dr.",
790
+ "Dragon",
791
+ "Dragonfly",
792
+ "Drella",
793
+ "Dress",
794
+ "Drifit",
795
+ "Drive",
796
+ "Duck",
797
+ "Dustin",
798
+ "Dusty",
799
+ "Dye",
800
+ "E",
801
+ "E.G.",
802
+ "E.g",
803
+ "E.g.",
804
+ "EASTER",
805
+ "ECE",
806
+ "EGO",
807
+ "EU",
808
+ "EX",
809
+ "Eagle",
810
+ "Early",
811
+ "Earth",
812
+ "Earth-",
813
+ "Easter",
814
+ "Edition",
815
+ "Educational",
816
+ "Edward",
817
+ "Elephant",
818
+ "Elida",
819
+ "Ellen",
820
+ "Embroidered",
821
+ "Emery",
822
+ "Emotional",
823
+ "End",
824
+ "Ends",
825
+ "Energy",
826
+ "Enthusiasts",
827
+ "Estate",
828
+ "Everett",
829
+ "Exclusive",
830
+ "Expand",
831
+ "Expense",
832
+ "Expert",
833
+ "Eyelet",
834
+ "F",
835
+ "F.",
836
+ "FIORE",
837
+ "FOC",
838
+ "FU",
839
+ "Fabiola",
840
+ "Fabriqu\u00e9",
841
+ "Face",
842
+ "Fairy",
843
+ "Family",
844
+ "Farberhaltendes",
845
+ "Farm",
846
+ "Faultier",
847
+ "Faulty",
848
+ "Feb",
849
+ "Feb.",
850
+ "February",
851
+ "Fee",
852
+ "Feeder",
853
+ "Ferdie",
854
+ "Fifi",
855
+ "Finger",
856
+ "Finley",
857
+ "Fish",
858
+ "Fisher",
859
+ "Fit",
860
+ "Fitness",
861
+ "Fla",
862
+ "Fla.",
863
+ "Fleece",
864
+ "Flip",
865
+ "Flora",
866
+ "Floral",
867
+ "Florida",
868
+ "Flowers",
869
+ "Floyd",
870
+ "Fly",
871
+ "For",
872
+ "Forest",
873
+ "Fox",
874
+ "Fragile",
875
+ "Free",
876
+ "FreeKids",
877
+ "Freedom",
878
+ "Fresh",
879
+ "Fridge",
880
+ "Friends",
881
+ "Fries",
882
+ "Frilly",
883
+ "Frog",
884
+ "Front",
885
+ "Frost",
886
+ "Fruits",
887
+ "Fuck",
888
+ "Full",
889
+ "Fun",
890
+ "Fuzz",
891
+ "G",
892
+ "GABRIEL",
893
+ "GO",
894
+ "GYC72",
895
+ "Ga",
896
+ "Ga.",
897
+ "Gal",
898
+ "Game",
899
+ "Garden",
900
+ "Garment",
901
+ "Gary",
902
+ "Gel",
903
+ "Gen",
904
+ "Gen.",
905
+ "Genuine",
906
+ "Georgia",
907
+ "Gift",
908
+ "Gifts",
909
+ "Gildan",
910
+ "Giraffe",
911
+ "Girl",
912
+ "Glasses",
913
+ "Glider",
914
+ "Goat",
915
+ "Goes",
916
+ "Gogh",
917
+ "Goin",
918
+ "Goin'",
919
+ "Goin\u2019",
920
+ "Gold",
921
+ "Gon",
922
+ "Goofy",
923
+ "Gordon",
924
+ "Gorilla",
925
+ "Got",
926
+ "Gov",
927
+ "Gov.",
928
+ "Grade",
929
+ "Graduation",
930
+ "Granite",
931
+ "Grant",
932
+ "Grasshopper",
933
+ "Great",
934
+ "Grecia",
935
+ "Green",
936
+ "Greg",
937
+ "Grey",
938
+ "Gr\u00fcn",
939
+ "Guide",
940
+ "Guinea",
941
+ "Gustavus",
942
+ "Gym",
943
+ "Gypsum",
944
+ "H",
945
+ "HC01",
946
+ "HIA",
947
+ "HOP",
948
+ "HS",
949
+ "Haar",
950
+ "Haarshampoo",
951
+ "Hacked",
952
+ "Hacker",
953
+ "Hacking",
954
+ "Had",
955
+ "Hai",
956
+ "Half",
957
+ "Halloween",
958
+ "Hand",
959
+ "Handmade",
960
+ "Hands",
961
+ "Hanon",
962
+ "Hans",
963
+ "Harrison",
964
+ "Has",
965
+ "Hat",
966
+ "Have",
967
+ "Havin",
968
+ "Havin'",
969
+ "Havin\u2019",
970
+ "He",
971
+ "He's",
972
+ "Heather",
973
+ "Hectico",
974
+ "Hedgehog",
975
+ "Helium",
976
+ "Hello",
977
+ "HelloCube",
978
+ "Hen",
979
+ "Henry",
980
+ "He\u2019s",
981
+ "High",
982
+ "Hokusai",
983
+ "Holiday",
984
+ "Holly",
985
+ "Homme",
986
+ "Honey",
987
+ "Honeycomb",
988
+ "Hooded",
989
+ "Hoodie",
990
+ "Hoodies",
991
+ "Horse",
992
+ "Hot",
993
+ "How",
994
+ "How's",
995
+ "How\u2019s",
996
+ "Hug",
997
+ "Hugo",
998
+ "Hyena",
999
+ "I",
1000
+ "I.E.",
1001
+ "I.e",
1002
+ "I.e.",
1003
+ "ICK",
1004
+ "IEL",
1005
+ "II",
1006
+ "ING",
1007
+ "ION",
1008
+ "IUM",
1009
+ "Ia",
1010
+ "Ia.",
1011
+ "Ice",
1012
+ "Icelandic",
1013
+ "Id",
1014
+ "Id.",
1015
+ "Idaho",
1016
+ "Ill",
1017
+ "Ill.",
1018
+ "Illinois",
1019
+ "Imaginext",
1020
+ "Import",
1021
+ "In",
1022
+ "Inc",
1023
+ "Inc.",
1024
+ "Inch",
1025
+ "Inches",
1026
+ "Ind",
1027
+ "Ind.",
1028
+ "Indiana",
1029
+ "Indie",
1030
+ "Indigo",
1031
+ "Inez",
1032
+ "Ink",
1033
+ "Inspired",
1034
+ "Interviews",
1035
+ "Iowa",
1036
+ "Iron",
1037
+ "Is",
1038
+ "It",
1039
+ "It's",
1040
+ "Italie",
1041
+ "Item",
1042
+ "It\u2019s",
1043
+ "J",
1044
+ "Jacket",
1045
+ "Jan",
1046
+ "Jan.",
1047
+ "Janet",
1048
+ "January",
1049
+ "Japanese",
1050
+ "Jason",
1051
+ "Jay",
1052
+ "Jellyfish",
1053
+ "Jer",
1054
+ "Jersey",
1055
+ "Joxtine",
1056
+ "Joy",
1057
+ "Jr",
1058
+ "Jr.",
1059
+ "Jul",
1060
+ "Jul.",
1061
+ "July",
1062
+ "Jumper",
1063
+ "Jun",
1064
+ "Jun.",
1065
+ "June",
1066
+ "K",
1067
+ "K.",
1068
+ "K969",
1069
+ "K989",
1070
+ "K999",
1071
+ "KENNY",
1072
+ "Kalari",
1073
+ "Kan",
1074
+ "Kan.",
1075
+ "Kans",
1076
+ "Kans.",
1077
+ "Kansas",
1078
+ "Kellytoy",
1079
+ "Kellytoys",
1080
+ "Kenny",
1081
+ "Kentucky",
1082
+ "Keyboard",
1083
+ "Keychain",
1084
+ "Kick",
1085
+ "Kid",
1086
+ "Kids",
1087
+ "KidsColor",
1088
+ "King",
1089
+ "Kirk",
1090
+ "Kiss",
1091
+ "Kit",
1092
+ "Kitty",
1093
+ "Kittycat",
1094
+ "Knight",
1095
+ "Knit",
1096
+ "Koala",
1097
+ "Kodak",
1098
+ "Koopa",
1099
+ "Koopaling",
1100
+ "Kult",
1101
+ "Ky",
1102
+ "Ky.",
1103
+ "Kyla",
1104
+ "L",
1105
+ "L'Or\u00e9al",
1106
+ "LARGE",
1107
+ "LED",
1108
+ "LEE",
1109
+ "LEGO",
1110
+ "LER",
1111
+ "LF",
1112
+ "LINDA",
1113
+ "LLA",
1114
+ "LOCAL",
1115
+ "LOW",
1116
+ "LP",
1117
+ "LP-004",
1118
+ "La",
1119
+ "La.",
1120
+ "Label",
1121
+ "Labels",
1122
+ "Lace",
1123
+ "Ladies",
1124
+ "Ladybug-",
1125
+ "Large",
1126
+ "Latex",
1127
+ "Latte",
1128
+ "Lauren",
1129
+ "Lavender",
1130
+ "Laying",
1131
+ "Learning",
1132
+ "Led",
1133
+ "Left",
1134
+ "Leg",
1135
+ "Lemon",
1136
+ "Lemur",
1137
+ "Leopard",
1138
+ "Let",
1139
+ "Let's",
1140
+ "Letters/",
1141
+ "Let\u2019s",
1142
+ "Levi",
1143
+ "Licensed",
1144
+ "Life",
1145
+ "Light",
1146
+ "Lightning",
1147
+ "Lightsfever",
1148
+ "Lightsfevers",
1149
+ "Lilac",
1150
+ "Line",
1151
+ "Lino",
1152
+ "Little",
1153
+ "Livvy",
1154
+ "Llama",
1155
+ "Llamacorn",
1156
+ "Lobi",
1157
+ "Local",
1158
+ "LocalSeller",
1159
+ "LocalStock",
1160
+ "Logo",
1161
+ "Lola",
1162
+ "London",
1163
+ "Long",
1164
+ "Loopback",
1165
+ "Lophophora",
1166
+ "Lot",
1167
+ "Louisa",
1168
+ "Louisiana",
1169
+ "Lounge",
1170
+ "Lovin",
1171
+ "Lovin'",
1172
+ "Lovin\u2019",
1173
+ "Ltd",
1174
+ "Ltd.",
1175
+ "Lucia",
1176
+ "Lucy",
1177
+ "Luna",
1178
+ "Luxmen",
1179
+ "M",
1180
+ "MASTERPIECE",
1181
+ "MEDIUM",
1182
+ "MPH",
1183
+ "MQLITTLESHOP",
1184
+ "MQLITTLESHOP][LocalSeller",
1185
+ "Ma'am",
1186
+ "Macho",
1187
+ "Mad",
1188
+ "Madam",
1189
+ "Madness",
1190
+ "Magela",
1191
+ "Maggie",
1192
+ "Magical",
1193
+ "Magnet",
1194
+ "Magnet/",
1195
+ "Magnetic",
1196
+ "Make",
1197
+ "Malcolm",
1198
+ "Mallow",
1199
+ "Mallows",
1200
+ "Malva",
1201
+ "Man",
1202
+ "Manhattan",
1203
+ "Many",
1204
+ "Mar",
1205
+ "Mar.",
1206
+ "March",
1207
+ "Mario",
1208
+ "Masala",
1209
+ "Mass",
1210
+ "Mass.",
1211
+ "Massachusetts",
1212
+ "Mat",
1213
+ "Matching",
1214
+ "Mateo",
1215
+ "Maths",
1216
+ "Matisse",
1217
+ "Matters",
1218
+ "Max",
1219
+ "May",
1220
+ "Ma\u2019am",
1221
+ "Md",
1222
+ "Md.",
1223
+ "Me",
1224
+ "Meaning",
1225
+ "Medium",
1226
+ "Mees",
1227
+ "Meg",
1228
+ "Melenge",
1229
+ "Melody",
1230
+ "Men",
1231
+ "Mens",
1232
+ "Messrs",
1233
+ "Messrs.",
1234
+ "Metal",
1235
+ "Mich",
1236
+ "Mich.",
1237
+ "Michigan",
1238
+ "Micro",
1239
+ "Might",
1240
+ "Mighty",
1241
+ "Mikah",
1242
+ "Mila",
1243
+ "Military",
1244
+ "Mimi",
1245
+ "Mineral",
1246
+ "Minga",
1247
+ "Mini",
1248
+ "Minn",
1249
+ "Minn.",
1250
+ "Minnesota",
1251
+ "Mint",
1252
+ "Miss",
1253
+ "Miss.",
1254
+ "Mississippi",
1255
+ "Missouri",
1256
+ "Mit",
1257
+ "Mo",
1258
+ "Mo.",
1259
+ "MoN",
1260
+ "Models",
1261
+ "ModuSpec",
1262
+ "Moist",
1263
+ "Mold",
1264
+ "Monkey",
1265
+ "Monsters",
1266
+ "Mont",
1267
+ "Mont.",
1268
+ "Montessori",
1269
+ "Moon",
1270
+ "Moonstone",
1271
+ "Moose",
1272
+ "Morpeko",
1273
+ "Moss",
1274
+ "Mount",
1275
+ "Mr",
1276
+ "Mr.",
1277
+ "Mrs",
1278
+ "Mrs.",
1279
+ "Ms",
1280
+ "Ms.",
1281
+ "Mt",
1282
+ "Mt.",
1283
+ "Mucha",
1284
+ "Multicolor",
1285
+ "Multicolored",
1286
+ "Mushroom",
1287
+ "Music",
1288
+ "Must",
1289
+ "Mustard",
1290
+ "My",
1291
+ "Mystery",
1292
+ "N",
1293
+ "N.C.",
1294
+ "N.D.",
1295
+ "N.H.",
1296
+ "N.J.",
1297
+ "N.M.",
1298
+ "N.Y.",
1299
+ "N20",
1300
+ "N62",
1301
+ "NDA",
1302
+ "NNY",
1303
+ "NO",
1304
+ "Nabila",
1305
+ "Naomi",
1306
+ "Narwhal",
1307
+ "Nasty",
1308
+ "National",
1309
+ "Navy",
1310
+ "Neb",
1311
+ "Neb.",
1312
+ "Nebr",
1313
+ "Nebr.",
1314
+ "Nebraska",
1315
+ "Neck",
1316
+ "Neckline",
1317
+ "Need",
1318
+ "Nettoyant",
1319
+ "Nev",
1320
+ "Nev.",
1321
+ "Nevada",
1322
+ "Never",
1323
+ "New",
1324
+ "New Hampshire",
1325
+ "New Jersey",
1326
+ "New Mexico",
1327
+ "New York",
1328
+ "Newborn",
1329
+ "Nia",
1330
+ "Nicky",
1331
+ "Nico",
1332
+ "Nike",
1333
+ "Ninja",
1334
+ "Nixie",
1335
+ "No",
1336
+ "Norman",
1337
+ "North Carolina",
1338
+ "North Dakota",
1339
+ "Not",
1340
+ "Nothin",
1341
+ "Nothin'",
1342
+ "Nothin\u2019",
1343
+ "Nov",
1344
+ "Nov.",
1345
+ "November",
1346
+ "Number",
1347
+ "Numbers",
1348
+ "Nuthin",
1349
+ "Nuthin'",
1350
+ "Nuthin\u2019",
1351
+ "Nutty",
1352
+ "Nylon",
1353
+ "O",
1354
+ "O'clock",
1355
+ "O.O",
1356
+ "O.o",
1357
+ "OCK",
1358
+ "OOI",
1359
+ "ORE",
1360
+ "OS",
1361
+ "OUR",
1362
+ "O_O",
1363
+ "O_o",
1364
+ "Oats",
1365
+ "Oct",
1366
+ "Oct.",
1367
+ "October",
1368
+ "Octopus",
1369
+ "Odile",
1370
+ "Of",
1371
+ "Official",
1372
+ "Offizielles",
1373
+ "Oficial",
1374
+ "Okla",
1375
+ "Okla.",
1376
+ "Oklahoma",
1377
+ "Ol",
1378
+ "Ol'",
1379
+ "Olga",
1380
+ "Olive",
1381
+ "Ol\u2019",
1382
+ "On",
1383
+ "One",
1384
+ "Ones",
1385
+ "Onyx",
1386
+ "Orange",
1387
+ "Orangutan",
1388
+ "Order",
1389
+ "Ore",
1390
+ "Ore.",
1391
+ "Oregon",
1392
+ "Original",
1393
+ "Orzella",
1394
+ "Other",
1395
+ "Ought",
1396
+ "Our",
1397
+ "Over",
1398
+ "Oversized",
1399
+ "Overthinker",
1400
+ "Owl",
1401
+ "Owl-",
1402
+ "O\u2019clock",
1403
+ "P",
1404
+ "P929",
1405
+ "PCS",
1406
+ "PPE",
1407
+ "Pa",
1408
+ "Pa.",
1409
+ "Pack",
1410
+ "Packing",
1411
+ "Painting",
1412
+ "Pairs",
1413
+ "Pal",
1414
+ "Palitoy",
1415
+ "Panda",
1416
+ "Pandacorn",
1417
+ "Pania",
1418
+ "Papiers",
1419
+ "Parfum",
1420
+ "Paris",
1421
+ "Park",
1422
+ "Parker",
1423
+ "Parts",
1424
+ "Party",
1425
+ "Pastel",
1426
+ "Pegacorn",
1427
+ "Peluche",
1428
+ "Penguin",
1429
+ "Penguin-",
1430
+ "Pennsylvania",
1431
+ "Pens",
1432
+ "Pentester",
1433
+ "Peppa",
1434
+ "Personalized",
1435
+ "Pet",
1436
+ "Ph",
1437
+ "Ph.D.",
1438
+ "Philip",
1439
+ "Picasso",
1440
+ "Picture",
1441
+ "Piece",
1442
+ "Pig",
1443
+ "Pilar",
1444
+ "Pillow",
1445
+ "Pine",
1446
+ "Pink",
1447
+ "Pins",
1448
+ "Pistachio",
1449
+ "Plaid",
1450
+ "Planet",
1451
+ "Plaster",
1452
+ "Play",
1453
+ "Plush",
1454
+ "Plushie",
1455
+ "Pl\u00fcschtier",
1456
+ "PoK\u00e9MoN",
1457
+ "Pokemon",
1458
+ "Pok\u00e9mon",
1459
+ "Polo",
1460
+ "Pompa",
1461
+ "Pompe",
1462
+ "Poodle",
1463
+ "Pool",
1464
+ "Ports",
1465
+ "Powder",
1466
+ "Pr",
1467
+ "Premium",
1468
+ "Preschool",
1469
+ "Price",
1470
+ "Prim",
1471
+ "Prince",
1472
+ "Princess",
1473
+ "Print",
1474
+ "Printing",
1475
+ "Process",
1476
+ "Product",
1477
+ "Prof",
1478
+ "Prof.",
1479
+ "Professionnel",
1480
+ "Proraso",
1481
+ "Prussion",
1482
+ "Pterodactyl",
1483
+ "Puff",
1484
+ "Pug",
1485
+ "Pullover",
1486
+ "Puppy",
1487
+ "Pure",
1488
+ "Purple",
1489
+ "Puzzles",
1490
+ "Pygmy",
1491
+ "Q",
1492
+ "Q21",
1493
+ "QD06",
1494
+ "Quality",
1495
+ "Quantity",
1496
+ "Queen",
1497
+ "R",
1498
+ "RC",
1499
+ "REBEL",
1500
+ "RGE",
1501
+ "RIP",
1502
+ "RY-",
1503
+ "Raglan",
1504
+ "Rail",
1505
+ "Rainbow",
1506
+ "Ralph",
1507
+ "Randy",
1508
+ "Raquel",
1509
+ "Rare",
1510
+ "Ready",
1511
+ "Reality",
1512
+ "Rear",
1513
+ "Receive",
1514
+ "Red",
1515
+ "Reebok",
1516
+ "Regina",
1517
+ "Rep",
1518
+ "Rep.",
1519
+ "Replacement",
1520
+ "Resale",
1521
+ "Resistain",
1522
+ "Resveratrol",
1523
+ "Retro",
1524
+ "Rev",
1525
+ "Rev.",
1526
+ "Rex",
1527
+ "Rhinestone",
1528
+ "Rib",
1529
+ "Ribbed",
1530
+ "Rings",
1531
+ "River",
1532
+ "Robb",
1533
+ "Rocio",
1534
+ "Rock",
1535
+ "Rohan",
1536
+ "Rolled",
1537
+ "Roman",
1538
+ "Rooster",
1539
+ "Rosie",
1540
+ "Rottweiler",
1541
+ "Round",
1542
+ "Roundneck",
1543
+ "Rue",
1544
+ "Rufus",
1545
+ "Rust",
1546
+ "Rutabaga",
1547
+ "S",
1548
+ "S.C.",
1549
+ "S39",
1550
+ "SELLER",
1551
+ "SG",
1552
+ "SILVER",
1553
+ "SKU",
1554
+ "SMALL",
1555
+ "SQ21",
1556
+ "SQJW22",
1557
+ "SQUASHMALLOW",
1558
+ "STOCK",
1559
+ "SWSHN11898412",
1560
+ "SWSHN11914182",
1561
+ "SWSHN11924931",
1562
+ "Sage",
1563
+ "Sailor",
1564
+ "Salt",
1565
+ "Sam",
1566
+ "Samir",
1567
+ "Sand",
1568
+ "Santa",
1569
+ "Sapphire",
1570
+ "Savage",
1571
+ "Scale",
1572
+ "Scarlet",
1573
+ "School",
1574
+ "Scoop",
1575
+ "Scooter",
1576
+ "Sea",
1577
+ "Seal",
1578
+ "Sebastian",
1579
+ "Seconds",
1580
+ "Seller",
1581
+ "Sen",
1582
+ "Sen.",
1583
+ "Sensory",
1584
+ "Sep",
1585
+ "Sep.",
1586
+ "Sept",
1587
+ "Sept.",
1588
+ "September",
1589
+ "Serie",
1590
+ "Series",
1591
+ "Serpent",
1592
+ "Service",
1593
+ "Services",
1594
+ "Set",
1595
+ "Sex",
1596
+ "Sha",
1597
+ "Shaft",
1598
+ "Shampoing",
1599
+ "Shampoo",
1600
+ "Shantira",
1601
+ "Shark",
1602
+ "She",
1603
+ "She's",
1604
+ "She\u2019s",
1605
+ "Ship",
1606
+ "Shirt",
1607
+ "Shiseido",
1608
+ "Short",
1609
+ "Should",
1610
+ "Shrew",
1611
+ "Signature",
1612
+ "Silkscreen",
1613
+ "Simha",
1614
+ "Single",
1615
+ "Size",
1616
+ "Sized",
1617
+ "Skateboarding",
1618
+ "Skeleton",
1619
+ "Sleepover",
1620
+ "Sleepy",
1621
+ "Sleeve",
1622
+ "Sleeved",
1623
+ "Sloth",
1624
+ "Small",
1625
+ "Smores",
1626
+ "Socks",
1627
+ "Soft",
1628
+ "Sofy",
1629
+ "Soin",
1630
+ "Solaris",
1631
+ "Somethin",
1632
+ "Somethin'",
1633
+ "Somethin\u2019",
1634
+ "Source",
1635
+ "South Carolina",
1636
+ "Space",
1637
+ "Species",
1638
+ "Spider",
1639
+ "Sport",
1640
+ "Spotted",
1641
+ "Spread",
1642
+ "Squad",
1643
+ "Squeeze",
1644
+ "Squish",
1645
+ "Squishmallow",
1646
+ "Squishmallows",
1647
+ "Squishy",
1648
+ "St",
1649
+ "St.",
1650
+ "Stackable",
1651
+ "Standard",
1652
+ "Stands",
1653
+ "Stapleton",
1654
+ "Star",
1655
+ "Stick",
1656
+ "Stickers",
1657
+ "Sticks",
1658
+ "Stingray",
1659
+ "Stitch",
1660
+ "Stock",
1661
+ "Stofftier",
1662
+ "Stomach",
1663
+ "Stone",
1664
+ "Straight",
1665
+ "Strawberry",
1666
+ "Streetwear",
1667
+ "Strike",
1668
+ "Striped",
1669
+ "Student",
1670
+ "Stuffed",
1671
+ "Style",
1672
+ "Sublimation",
1673
+ "Subtraction",
1674
+ "Sugar",
1675
+ "Suit",
1676
+ "Summer",
1677
+ "Sunflower",
1678
+ "Sunflowers",
1679
+ "Sunny",
1680
+ "Sunscreen",
1681
+ "Super",
1682
+ "Superb",
1683
+ "Sw",
1684
+ "Sweater",
1685
+ "Sweatpants",
1686
+ "Sweatshirt",
1687
+ "Sweatshirts",
1688
+ "T",
1689
+ "T-",
1690
+ "T35L4",
1691
+ "T71",
1692
+ "TER",
1693
+ "TOXIC",
1694
+ "TREASURE",
1695
+ "TS2",
1696
+ "Tabby",
1697
+ "Tags",
1698
+ "Talisa",
1699
+ "Tally",
1700
+ "Tam",
1701
+ "Tapered",
1702
+ "Taupe",
1703
+ "Tax",
1704
+ "Tea",
1705
+ "Teal",
1706
+ "Team",
1707
+ "Teddy",
1708
+ "Teether",
1709
+ "Teething",
1710
+ "Tenn",
1711
+ "Tenn.",
1712
+ "Tennessee",
1713
+ "Tesla",
1714
+ "Text",
1715
+ "That",
1716
+ "That's",
1717
+ "That\u2019s",
1718
+ "The",
1719
+ "There",
1720
+ "There's",
1721
+ "There\u2019s",
1722
+ "These",
1723
+ "They",
1724
+ "Thigh",
1725
+ "Things",
1726
+ "Thinking",
1727
+ "This",
1728
+ "This's",
1729
+ "This\u2019s",
1730
+ "Thompson",
1731
+ "Those",
1732
+ "Thread",
1733
+ "Tie",
1734
+ "Timberland",
1735
+ "To",
1736
+ "Toast",
1737
+ "Todd",
1738
+ "Toddler",
1739
+ "Toddlers",
1740
+ "Toffee",
1741
+ "Tomar",
1742
+ "Top",
1743
+ "Total",
1744
+ "Touch",
1745
+ "Toy",
1746
+ "Toys",
1747
+ "Train",
1748
+ "Transparent",
1749
+ "Tree",
1750
+ "Trees",
1751
+ "Triceratops",
1752
+ "Tristan",
1753
+ "Truck",
1754
+ "Trudy",
1755
+ "Trust",
1756
+ "Tshirt",
1757
+ "Tsubaki",
1758
+ "Tunic",
1759
+ "Turtle",
1760
+ "U",
1761
+ "UK",
1762
+ "UPC:8001090666765",
1763
+ "URE",
1764
+ "USB",
1765
+ "UV",
1766
+ "Ultra",
1767
+ "Ultrasoft",
1768
+ "Unboxing",
1769
+ "Unicorn",
1770
+ "Uniqua",
1771
+ "Unisex",
1772
+ "Unit",
1773
+ "Unlimited",
1774
+ "Up",
1775
+ "UrbanStyle",
1776
+ "V",
1777
+ "V.V",
1778
+ "V00",
1779
+ "V1",
1780
+ "VER",
1781
+ "V_V",
1782
+ "Va",
1783
+ "Va.",
1784
+ "Van",
1785
+ "Vanquish",
1786
+ "Vee",
1787
+ "Vegetables",
1788
+ "Venom",
1789
+ "Veronica",
1790
+ "Vi",
1791
+ "Vintage",
1792
+ "Virginia",
1793
+ "Visage",
1794
+ "Vision",
1795
+ "VistaPrint",
1796
+ "Vitamino",
1797
+ "Vneck",
1798
+ "W",
1799
+ "W22",
1800
+ "WELLA",
1801
+ "WH",
1802
+ "WLtoys",
1803
+ "WTs",
1804
+ "WWE",
1805
+ "Waffle",
1806
+ "Waived",
1807
+ "Walrus",
1808
+ "Wand",
1809
+ "Want",
1810
+ "Wanted",
1811
+ "Warm",
1812
+ "Was",
1813
+ "Wash",
1814
+ "Wash.",
1815
+ "Washable",
1816
+ "Washington",
1817
+ "Watching",
1818
+ "Watermelon",
1819
+ "We",
1820
+ "Web",
1821
+ "Wendy",
1822
+ "Were",
1823
+ "What",
1824
+ "What's",
1825
+ "What\u2019s",
1826
+ "When",
1827
+ "When's",
1828
+ "When\u2019s",
1829
+ "Where",
1830
+ "Where's",
1831
+ "Where\u2019s",
1832
+ "Whit",
1833
+ "White",
1834
+ "Who",
1835
+ "Who's",
1836
+ "Wholesale",
1837
+ "Who\u2019s",
1838
+ "Why",
1839
+ "Why's",
1840
+ "Why\u2019s",
1841
+ "Wildflower",
1842
+ "Will",
1843
+ "Winged",
1844
+ "Wings",
1845
+ "Winkel",
1846
+ "Wis",
1847
+ "Wis.",
1848
+ "Wisconsin",
1849
+ "Witch",
1850
+ "With",
1851
+ "Wo",
1852
+ "Women",
1853
+ "Wooden",
1854
+ "Woodland",
1855
+ "Work",
1856
+ "Would",
1857
+ "Wrecker",
1858
+ "X'Xxxxx",
1859
+ "X'x",
1860
+ "X'xxxx",
1861
+ "X++",
1862
+ "X-",
1863
+ "X.",
1864
+ "X.X",
1865
+ "X.X.",
1866
+ "X.x",
1867
+ "X.x.",
1868
+ "XD",
1869
+ "XDD",
1870
+ "XIC",
1871
+ "XL",
1872
+ "XS",
1873
+ "XX",
1874
+ "XX-ddd",
1875
+ "XXL",
1876
+ "XXX",
1877
+ "XXX-",
1878
+ "XXX:dddd",
1879
+ "XXXX",
1880
+ "XXXX][XxxxxXxxxx",
1881
+ "XXXXdd",
1882
+ "XXXXdddd",
1883
+ "XXXXx",
1884
+ "XXXd",
1885
+ "XXXdd",
1886
+ "XXXx",
1887
+ "XXdd",
1888
+ "XXdddd",
1889
+ "XXxxxx",
1890
+ "X_X",
1891
+ "X_x",
1892
+ "Xd",
1893
+ "XdXXXdddd",
1894
+ "Xdd",
1895
+ "XddXd",
1896
+ "Xddd",
1897
+ "Xerophyte",
1898
+ "Xx",
1899
+ "Xx'",
1900
+ "Xx'x",
1901
+ "Xx'xx",
1902
+ "Xx.",
1903
+ "Xx.X.",
1904
+ "XxXxXxX",
1905
+ "Xxx",
1906
+ "Xxx'x",
1907
+ "Xxx-",
1908
+ "Xxx.",
1909
+ "Xxxx",
1910
+ "Xxxx'",
1911
+ "Xxxx'x",
1912
+ "Xxxx.",
1913
+ "XxxxXxxx",
1914
+ "XxxxXxxxx",
1915
+ "Xxxxx",
1916
+ "Xxxxx'",
1917
+ "Xxxxx'x",
1918
+ "Xxxxx-",
1919
+ "Xxxxx.",
1920
+ "Xxxxx/",
1921
+ "XxxxxXXXX",
1922
+ "XxxxxXxxx",
1923
+ "XxxxxXxxxx",
1924
+ "Xxxxx\u2019",
1925
+ "Xxxxx\u2019x",
1926
+ "Xxxx\u2019",
1927
+ "Xxxx\u2019x",
1928
+ "Xxx\u2019x",
1929
+ "Xx\u2019",
1930
+ "Xx\u2019x",
1931
+ "Xx\u2019xx",
1932
+ "X\u2019x",
1933
+ "X\u2019xxxx",
1934
+ "Y",
1935
+ "YOUR",
1936
+ "YSL",
1937
+ "Yeah",
1938
+ "Year",
1939
+ "Yellow",
1940
+ "Yosemite",
1941
+ "You",
1942
+ "Your",
1943
+ "Youth",
1944
+ "Z",
1945
+ "Zaylee",
1946
+ "Zip",
1947
+ "[",
1948
+ "[-:",
1949
+ "[:",
1950
+ "[=",
1951
+ "\\",
1952
+ "\\\")",
1953
+ "\\n",
1954
+ "\\t",
1955
+ "\\x",
1956
+ "]",
1957
+ "]=",
1958
+ "^",
1959
+ "^_^",
1960
+ "^__^",
1961
+ "^___^",
1962
+ "_*)",
1963
+ "_-)",
1964
+ "_.)",
1965
+ "_<)",
1966
+ "_^)",
1967
+ "__-",
1968
+ "__^",
1969
+ "_\u00ac)",
1970
+ "_\u0ca0)",
1971
+ "a",
1972
+ "a.",
1973
+ "a.m",
1974
+ "a.m.",
1975
+ "a3",
1976
+ "a4",
1977
+ "aar",
1978
+ "abc/",
1979
+ "abcs",
1980
+ "abe",
1981
+ "about",
1982
+ "abs",
1983
+ "aby",
1984
+ "academy",
1985
+ "accessories",
1986
+ "ace",
1987
+ "ach",
1988
+ "ack",
1989
+ "acrylic",
1990
+ "activity",
1991
+ "ada",
1992
+ "add",
1993
+ "addition",
1994
+ "ade",
1995
+ "adhesive",
1996
+ "adidas",
1997
+ "adm",
1998
+ "adm.",
1999
+ "adoucissant",
2000
+ "ads",
2001
+ "adult",
2002
+ "adventure",
2003
+ "ady",
2004
+ "afe",
2005
+ "aft",
2006
+ "aga",
2007
+ "age",
2008
+ "ages",
2009
+ "agnes",
2010
+ "ags",
2011
+ "ai",
2012
+ "aid",
2013
+ "ail",
2014
+ "ain",
2015
+ "air",
2016
+ "ak",
2017
+ "ak.",
2018
+ "ake",
2019
+ "aki",
2020
+ "ala",
2021
+ "ala.",
2022
+ "alandy",
2023
+ "ale",
2024
+ "alf",
2025
+ "all",
2026
+ "almohada",
2027
+ "alphabets/",
2028
+ "alphonse",
2029
+ "als",
2030
+ "alt",
2031
+ "alternate",
2032
+ "am",
2033
+ "ama",
2034
+ "amber",
2035
+ "amblyopia",
2036
+ "ame",
2037
+ "amethyst",
2038
+ "amil",
2039
+ "aminalize",
2040
+ "amy",
2041
+ "an.",
2042
+ "ana",
2043
+ "ancient",
2044
+ "and",
2045
+ "and/or",
2046
+ "angel",
2047
+ "angels",
2048
+ "animal",
2049
+ "animales",
2050
+ "animals",
2051
+ "animaux",
2052
+ "anime",
2053
+ "anniversary",
2054
+ "ans",
2055
+ "ant",
2056
+ "any",
2057
+ "apc",
2058
+ "apocalypse",
2059
+ "applied",
2060
+ "apr",
2061
+ "apr.",
2062
+ "aps",
2063
+ "aqua",
2064
+ "ar.",
2065
+ "ara",
2066
+ "archie",
2067
+ "arctic",
2068
+ "ard",
2069
+ "are",
2070
+ "arf",
2071
+ "ari",
2072
+ "ariz",
2073
+ "ariz.",
2074
+ "ark",
2075
+ "ark.",
2076
+ "arm",
2077
+ "armadillo",
2078
+ "aron",
2079
+ "ars",
2080
+ "art",
2081
+ "ary",
2082
+ "as",
2083
+ "ase",
2084
+ "ash",
2085
+ "asian",
2086
+ "aso",
2087
+ "ass",
2088
+ "assembly",
2089
+ "ast",
2090
+ "ate",
2091
+ "ath",
2092
+ "ats",
2093
+ "attack",
2094
+ "attire",
2095
+ "auction",
2096
+ "aug",
2097
+ "aug.",
2098
+ "augen",
2099
+ "aur",
2100
+ "aus",
2101
+ "automatic",
2102
+ "autumn",
2103
+ "ave",
2104
+ "avery",
2105
+ "avy",
2106
+ "axolotl",
2107
+ "axolotl-",
2108
+ "azy",
2109
+ "b",
2110
+ "b.",
2111
+ "babs",
2112
+ "baby",
2113
+ "back",
2114
+ "backpack",
2115
+ "bad",
2116
+ "bag",
2117
+ "bags",
2118
+ "baiden",
2119
+ "baking",
2120
+ "balance",
2121
+ "ball",
2122
+ "balloon",
2123
+ "balloons",
2124
+ "banana",
2125
+ "bandana",
2126
+ "bara",
2127
+ "barbe",
2128
+ "barbour",
2129
+ "barley",
2130
+ "basic",
2131
+ "basics",
2132
+ "batch",
2133
+ "batcopter",
2134
+ "bath",
2135
+ "bathe",
2136
+ "bathroom",
2137
+ "batman",
2138
+ "batteries",
2139
+ "bba",
2140
+ "bby",
2141
+ "bc/",
2142
+ "bcs",
2143
+ "beaded",
2144
+ "beads",
2145
+ "bear",
2146
+ "bearded",
2147
+ "beaver",
2148
+ "because",
2149
+ "bed",
2150
+ "bee",
2151
+ "beige",
2152
+ "bel",
2153
+ "believe",
2154
+ "bell",
2155
+ "bella",
2156
+ "belly",
2157
+ "ben",
2158
+ "ber",
2159
+ "bergit",
2160
+ "berry",
2161
+ "betty",
2162
+ "beula",
2163
+ "bigfoot",
2164
+ "bike",
2165
+ "biodegradable",
2166
+ "bioderma",
2167
+ "bird",
2168
+ "birthday",
2169
+ "biscuit",
2170
+ "bite",
2171
+ "black",
2172
+ "ble",
2173
+ "blend",
2174
+ "block",
2175
+ "blocks",
2176
+ "blue",
2177
+ "bluey",
2178
+ "blush",
2179
+ "bly",
2180
+ "bnwts",
2181
+ "bo38246",
2182
+ "board",
2183
+ "boba",
2184
+ "bobo",
2185
+ "body",
2186
+ "bodyshell",
2187
+ "bois",
2188
+ "bok",
2189
+ "bold",
2190
+ "bon",
2191
+ "boop",
2192
+ "boss",
2193
+ "bounce",
2194
+ "bouncy",
2195
+ "bout",
2196
+ "bow",
2197
+ "bowser",
2198
+ "box",
2199
+ "boxed",
2200
+ "boy",
2201
+ "br.",
2202
+ "bra",
2203
+ "bracelet",
2204
+ "brand",
2205
+ "bricks",
2206
+ "britta",
2207
+ "broken",
2208
+ "bros",
2209
+ "bros.",
2210
+ "brown",
2211
+ "bruce",
2212
+ "brush",
2213
+ "btsw-105887",
2214
+ "bubba",
2215
+ "bubble",
2216
+ "buddy",
2217
+ "buds",
2218
+ "buggy",
2219
+ "bugs",
2220
+ "building",
2221
+ "bumblebee",
2222
+ "burnt",
2223
+ "business",
2224
+ "butterflies",
2225
+ "butterfly",
2226
+ "buy",
2227
+ "by",
2228
+ "c",
2229
+ "c'm",
2230
+ "c++",
2231
+ "c.",
2232
+ "c01",
2233
+ "c72",
2234
+ "ca",
2235
+ "caballo",
2236
+ "cable",
2237
+ "cactacea",
2238
+ "cactaceae",
2239
+ "cacti",
2240
+ "cake",
2241
+ "cal",
2242
+ "calendar",
2243
+ "calif",
2244
+ "calif.",
2245
+ "call",
2246
+ "camel",
2247
+ "camilo",
2248
+ "can",
2249
+ "canda",
2250
+ "car",
2251
+ "caramel",
2252
+ "cardigan",
2253
+ "carlos",
2254
+ "carmelita",
2255
+ "carnage",
2256
+ "carol",
2257
+ "carpark",
2258
+ "cartoon",
2259
+ "cashmere",
2260
+ "cat",
2261
+ "catch",
2262
+ "caterpillar",
2263
+ "caticorn",
2264
+ "cause",
2265
+ "cd",
2266
+ "ce>",
2267
+ "cea",
2268
+ "celestina",
2269
+ "celestite",
2270
+ "cer",
2271
+ "ces",
2272
+ "ch.",
2273
+ "cha",
2274
+ "chain",
2275
+ "chaps",
2276
+ "characters",
2277
+ "charcoal",
2278
+ "charity",
2279
+ "chasman",
2280
+ "che",
2281
+ "check",
2282
+ "checked",
2283
+ "cheval",
2284
+ "chew",
2285
+ "chia",
2286
+ "chick",
2287
+ "chicken",
2288
+ "chicken-",
2289
+ "child",
2290
+ "children",
2291
+ "chinchilla",
2292
+ "chip",
2293
+ "chloe",
2294
+ "cho",
2295
+ "choose",
2296
+ "christmas",
2297
+ "chuey",
2298
+ "cia",
2299
+ "cigar",
2300
+ "cinerea",
2301
+ "cio",
2302
+ "citron",
2303
+ "city",
2304
+ "cks",
2305
+ "cky",
2306
+ "classic",
2307
+ "claus",
2308
+ "cle",
2309
+ "clean",
2310
+ "cleaning",
2311
+ "clear",
2312
+ "clip",
2313
+ "clips",
2314
+ "clock",
2315
+ "clockwork",
2316
+ "cloth",
2317
+ "clothing",
2318
+ "cm",
2319
+ "co",
2320
+ "co.",
2321
+ "coa",
2322
+ "cobra",
2323
+ "cocoa",
2324
+ "code",
2325
+ "cold",
2326
+ "collar",
2327
+ "collection",
2328
+ "collector",
2329
+ "colo",
2330
+ "colo.",
2331
+ "color",
2332
+ "colorcaution",
2333
+ "coloriertes",
2334
+ "colors",
2335
+ "colour",
2336
+ "combination",
2337
+ "come",
2338
+ "comfy",
2339
+ "comics",
2340
+ "commonly",
2341
+ "compound",
2342
+ "computer",
2343
+ "computers",
2344
+ "concrete",
2345
+ "conditioner",
2346
+ "cone",
2347
+ "confirmed",
2348
+ "conn",
2349
+ "conn.",
2350
+ "connor",
2351
+ "copiapoa",
2352
+ "cor",
2353
+ "corgi",
2354
+ "corp",
2355
+ "corp.",
2356
+ "cos",
2357
+ "cosplay",
2358
+ "cotton",
2359
+ "could",
2360
+ "course",
2361
+ "cow",
2362
+ "cowgirl",
2363
+ "coz",
2364
+ "crab",
2365
+ "craft",
2366
+ "crawling",
2367
+ "crazy",
2368
+ "cream",
2369
+ "creative",
2370
+ "creator",
2371
+ "crewneck",
2372
+ "cro",
2373
+ "crop",
2374
+ "cross",
2375
+ "ct.",
2376
+ "ct71",
2377
+ "cti",
2378
+ "cts2",
2379
+ "cube",
2380
+ "cubo",
2381
+ "cuddling",
2382
+ "cuff",
2383
+ "cuffed",
2384
+ "cult",
2385
+ "curious",
2386
+ "cushion",
2387
+ "cust",
2388
+ "custom",
2389
+ "customised",
2390
+ "customize",
2391
+ "cut",
2392
+ "cute",
2393
+ "cuz",
2394
+ "cvd",
2395
+ "cyber",
2396
+ "cybersecurity",
2397
+ "c\u2019m",
2398
+ "d",
2399
+ "d)",
2400
+ "d-",
2401
+ "d-)",
2402
+ "d-X",
2403
+ "d.",
2404
+ "d.c.",
2405
+ "d.d",
2406
+ "d.x",
2407
+ "d/d",
2408
+ "d/dd",
2409
+ "d06",
2410
+ "d4uws8001090666765",
2411
+ "dX",
2412
+ "dXX",
2413
+ "dXxxx",
2414
+ "d_d",
2415
+ "d_x",
2416
+ "dak",
2417
+ "dalmatian",
2418
+ "dam",
2419
+ "dan",
2420
+ "dancer",
2421
+ "dar",
2422
+ "dare",
2423
+ "dark",
2424
+ "das",
2425
+ "day",
2426
+ "dc",
2427
+ "dd",
2428
+ "dd,d",
2429
+ "dd.dd",
2430
+ "ddXX-dd",
2431
+ "ddXXX",
2432
+ "ddXdd",
2433
+ "ddd",
2434
+ "dddXX",
2435
+ "dddd",
2436
+ "dddd.dd",
2437
+ "ddddxx",
2438
+ "ddddxxx",
2439
+ "dddxx",
2440
+ "dddxxx",
2441
+ "ddx",
2442
+ "ddx.x",
2443
+ "ddx.x.",
2444
+ "ddxdd",
2445
+ "ddxx",
2446
+ "ddxx-dd",
2447
+ "ddxxx",
2448
+ "ddy",
2449
+ "de",
2450
+ "deadstock",
2451
+ "dec",
2452
+ "dec.",
2453
+ "decompression",
2454
+ "decor",
2455
+ "decoration",
2456
+ "decorations",
2457
+ "decorations(6",
2458
+ "decoupes",
2459
+ "ded",
2460
+ "deep",
2461
+ "deeto",
2462
+ "del",
2463
+ "del.",
2464
+ "delivery",
2465
+ "den",
2466
+ "der",
2467
+ "des",
2468
+ "desert",
2469
+ "design",
2470
+ "designer",
2471
+ "designs",
2472
+ "devor\u00e9",
2473
+ "dexter",
2474
+ "dge",
2475
+ "di",
2476
+ "diameter",
2477
+ "dic",
2478
+ "did",
2479
+ "die",
2480
+ "dingding",
2481
+ "dinosaur",
2482
+ "dinosaurier",
2483
+ "dinosaurs",
2484
+ "disassembly",
2485
+ "disco",
2486
+ "discount",
2487
+ "dise\u00f1o",
2488
+ "disney",
2489
+ "diy",
2490
+ "dle",
2491
+ "dm.",
2492
+ "do",
2493
+ "document",
2494
+ "does",
2495
+ "dog",
2496
+ "doin",
2497
+ "doin'",
2498
+ "doing",
2499
+ "doin\u2019",
2500
+ "doll",
2501
+ "dollgraduation",
2502
+ "dolls",
2503
+ "dom",
2504
+ "domino",
2505
+ "dominoes",
2506
+ "don",
2507
+ "donkey",
2508
+ "doos",
2509
+ "dr",
2510
+ "dr.",
2511
+ "dragon",
2512
+ "dragonfly",
2513
+ "drella",
2514
+ "dress",
2515
+ "drifit",
2516
+ "drive",
2517
+ "dry",
2518
+ "dry-",
2519
+ "duck",
2520
+ "dustin",
2521
+ "dusty",
2522
+ "dx",
2523
+ "dx.x",
2524
+ "dx.x.",
2525
+ "dxdxd",
2526
+ "dxx",
2527
+ "dxxxx",
2528
+ "dye",
2529
+ "e",
2530
+ "e's",
2531
+ "e.",
2532
+ "e.g",
2533
+ "e.g.",
2534
+ "ead",
2535
+ "eae",
2536
+ "eagle",
2537
+ "eah",
2538
+ "eal",
2539
+ "eam",
2540
+ "ean",
2541
+ "ear",
2542
+ "early",
2543
+ "earth",
2544
+ "earth-",
2545
+ "easter",
2546
+ "eat",
2547
+ "eb.",
2548
+ "ebr",
2549
+ "ec.",
2550
+ "ece",
2551
+ "ech",
2552
+ "eck",
2553
+ "ed",
2554
+ "edition",
2555
+ "educational",
2556
+ "edward",
2557
+ "eed",
2558
+ "een",
2559
+ "eep",
2560
+ "ees",
2561
+ "eft",
2562
+ "ego",
2563
+ "eko",
2564
+ "el.",
2565
+ "ela",
2566
+ "elephant",
2567
+ "elida",
2568
+ "ell",
2569
+ "ellen",
2570
+ "els",
2571
+ "em",
2572
+ "embroidered",
2573
+ "emery",
2574
+ "emi",
2575
+ "emotional",
2576
+ "emy",
2577
+ "en",
2578
+ "en-",
2579
+ "en.",
2580
+ "ena",
2581
+ "end",
2582
+ "ends",
2583
+ "ene",
2584
+ "energy",
2585
+ "engineering",
2586
+ "enn",
2587
+ "enough",
2588
+ "ens",
2589
+ "ent",
2590
+ "enthusiasts",
2591
+ "ep.",
2592
+ "ept",
2593
+ "epy",
2594
+ "er/",
2595
+ "erb",
2596
+ "ere",
2597
+ "erkys",
2598
+ "ern",
2599
+ "ers",
2600
+ "ert",
2601
+ "ery",
2602
+ "ese",
2603
+ "esh",
2604
+ "ess",
2605
+ "est",
2606
+ "estate",
2607
+ "et",
2608
+ "et/",
2609
+ "ete",
2610
+ "eto",
2611
+ "ett",
2612
+ "eu",
2613
+ "ev.",
2614
+ "eve",
2615
+ "everett",
2616
+ "evi",
2617
+ "ews",
2618
+ "ex",
2619
+ "exclusive",
2620
+ "expand",
2621
+ "expense",
2622
+ "expert",
2623
+ "ext",
2624
+ "eyelet",
2625
+ "eze",
2626
+ "e\u00f1o",
2627
+ "e\u2019s",
2628
+ "f",
2629
+ "f.",
2630
+ "fabiola",
2631
+ "fabriqu\u00e9",
2632
+ "face",
2633
+ "factory",
2634
+ "fairy",
2635
+ "family",
2636
+ "farberhaltendes",
2637
+ "farm",
2638
+ "faultier",
2639
+ "faulty",
2640
+ "feb",
2641
+ "feb.",
2642
+ "fed",
2643
+ "fee",
2644
+ "feeder",
2645
+ "fees",
2646
+ "fer",
2647
+ "ferdie",
2648
+ "ffe",
2649
+ "fidget",
2650
+ "fifi",
2651
+ "figure",
2652
+ "figures",
2653
+ "find",
2654
+ "finger",
2655
+ "finley",
2656
+ "fiore",
2657
+ "fish",
2658
+ "fisher",
2659
+ "fit",
2660
+ "fitness",
2661
+ "fix",
2662
+ "fla",
2663
+ "fla.",
2664
+ "flannel",
2665
+ "fle",
2666
+ "fleece",
2667
+ "flip",
2668
+ "floating",
2669
+ "flora",
2670
+ "floral",
2671
+ "flowers",
2672
+ "floyd",
2673
+ "fly",
2674
+ "foc",
2675
+ "foil",
2676
+ "fold",
2677
+ "folding",
2678
+ "for",
2679
+ "forest",
2680
+ "fox",
2681
+ "fragile",
2682
+ "free",
2683
+ "freedom",
2684
+ "freekids",
2685
+ "fresh",
2686
+ "fridge",
2687
+ "friends",
2688
+ "fries",
2689
+ "frill",
2690
+ "frilly",
2691
+ "frog",
2692
+ "front",
2693
+ "frost",
2694
+ "fruits",
2695
+ "fts",
2696
+ "ftt",
2697
+ "fu",
2698
+ "fuck",
2699
+ "full",
2700
+ "fum",
2701
+ "fun",
2702
+ "function",
2703
+ "funny",
2704
+ "fus",
2705
+ "fuzz",
2706
+ "f\u00fcr",
2707
+ "g",
2708
+ "g.",
2709
+ "ga",
2710
+ "ga.",
2711
+ "gabriel",
2712
+ "gal",
2713
+ "game",
2714
+ "gan",
2715
+ "gar",
2716
+ "garden",
2717
+ "garment",
2718
+ "gary",
2719
+ "gear",
2720
+ "ged",
2721
+ "gel",
2722
+ "gen",
2723
+ "gen.",
2724
+ "genuine",
2725
+ "ger",
2726
+ "ges",
2727
+ "get",
2728
+ "ggy",
2729
+ "ght",
2730
+ "gic",
2731
+ "gie",
2732
+ "gift",
2733
+ "gifts",
2734
+ "gildan",
2735
+ "giraffe",
2736
+ "girl",
2737
+ "git",
2738
+ "giving",
2739
+ "glasses",
2740
+ "gle",
2741
+ "glider",
2742
+ "gmy",
2743
+ "gns",
2744
+ "go",
2745
+ "goat",
2746
+ "goes",
2747
+ "gogh",
2748
+ "goin",
2749
+ "goin'",
2750
+ "going",
2751
+ "goin\u2019",
2752
+ "gold",
2753
+ "gon",
2754
+ "gonna",
2755
+ "goodie",
2756
+ "goofy",
2757
+ "gordon",
2758
+ "gorilla",
2759
+ "got",
2760
+ "gov",
2761
+ "gov.",
2762
+ "grade",
2763
+ "graduatio",
2764
+ "graduation",
2765
+ "granite",
2766
+ "grant",
2767
+ "grasshopper",
2768
+ "great",
2769
+ "grecia",
2770
+ "green",
2771
+ "greg",
2772
+ "grey",
2773
+ "grid",
2774
+ "gr\u00fcn",
2775
+ "gsm",
2776
+ "guide",
2777
+ "guinea",
2778
+ "gustavus",
2779
+ "gyc72",
2780
+ "gym",
2781
+ "gypsum",
2782
+ "h",
2783
+ "h.",
2784
+ "haar",
2785
+ "haarshampoo",
2786
+ "hack",
2787
+ "hacked",
2788
+ "hacker",
2789
+ "hacking",
2790
+ "had",
2791
+ "hai",
2792
+ "hair",
2793
+ "hal",
2794
+ "half",
2795
+ "halloween",
2796
+ "han",
2797
+ "hand",
2798
+ "handmade",
2799
+ "hands",
2800
+ "hanon",
2801
+ "hans",
2802
+ "harrison",
2803
+ "has",
2804
+ "hat",
2805
+ "have",
2806
+ "havin",
2807
+ "havin'",
2808
+ "having",
2809
+ "havin\u2019",
2810
+ "hc01",
2811
+ "he",
2812
+ "he's",
2813
+ "heat",
2814
+ "heather",
2815
+ "hectico",
2816
+ "hedgehog",
2817
+ "helicopter",
2818
+ "helium",
2819
+ "hello",
2820
+ "hellocube",
2821
+ "hen",
2822
+ "henry",
2823
+ "her",
2824
+ "hes",
2825
+ "hew",
2826
+ "hey",
2827
+ "he\u2019s",
2828
+ "hia",
2829
+ "hie",
2830
+ "high",
2831
+ "hin",
2832
+ "hio",
2833
+ "hip",
2834
+ "his",
2835
+ "hit",
2836
+ "hoe",
2837
+ "hog",
2838
+ "hokusai",
2839
+ "holders",
2840
+ "holiday",
2841
+ "holly",
2842
+ "homme",
2843
+ "honey",
2844
+ "honeycomb",
2845
+ "hooded",
2846
+ "hoodie",
2847
+ "hoodies",
2848
+ "hop",
2849
+ "horse",
2850
+ "hot",
2851
+ "house",
2852
+ "how",
2853
+ "how's",
2854
+ "how\u2019s",
2855
+ "hs",
2856
+ "hscode",
2857
+ "hts",
2858
+ "hty",
2859
+ "hug",
2860
+ "hugo",
2861
+ "hunger",
2862
+ "hyena",
2863
+ "i",
2864
+ "i.",
2865
+ "i.e",
2866
+ "i.e.",
2867
+ "ia",
2868
+ "ia.",
2869
+ "ial",
2870
+ "ian",
2871
+ "ica",
2872
+ "ice",
2873
+ "icelandic",
2874
+ "ich",
2875
+ "ick",
2876
+ "ico",
2877
+ "ics",
2878
+ "id",
2879
+ "id.",
2880
+ "ida",
2881
+ "ide",
2882
+ "ido",
2883
+ "ids",
2884
+ "ied",
2885
+ "iel",
2886
+ "ier",
2887
+ "ies",
2888
+ "if.",
2889
+ "ife",
2890
+ "ifi",
2891
+ "ift",
2892
+ "ige",
2893
+ "igh",
2894
+ "ign",
2895
+ "igo",
2896
+ "ii",
2897
+ "ike",
2898
+ "ila",
2899
+ "ild",
2900
+ "ile",
2901
+ "ill",
2902
+ "ill.",
2903
+ "ilo",
2904
+ "ily",
2905
+ "imaginative",
2906
+ "imaginext",
2907
+ "ime",
2908
+ "imi",
2909
+ "import",
2910
+ "in",
2911
+ "in'",
2912
+ "in-",
2913
+ "ina",
2914
+ "inc",
2915
+ "inc.",
2916
+ "inch",
2917
+ "inches",
2918
+ "included",
2919
+ "inclusive",
2920
+ "ind",
2921
+ "ind.",
2922
+ "indie",
2923
+ "indigo",
2924
+ "ine",
2925
+ "inez",
2926
+ "ing",
2927
+ "ini",
2928
+ "ink",
2929
+ "inn",
2930
+ "ino",
2931
+ "ins",
2932
+ "inspired",
2933
+ "instuctions",
2934
+ "int",
2935
+ "intelligence",
2936
+ "interactive",
2937
+ "interviews",
2938
+ "in\u2019",
2939
+ "ion",
2940
+ "ips",
2941
+ "ira",
2942
+ "ird",
2943
+ "ire",
2944
+ "irk",
2945
+ "irl",
2946
+ "iron",
2947
+ "irs",
2948
+ "irt",
2949
+ "iry",
2950
+ "is",
2951
+ "is.",
2952
+ "isa",
2953
+ "ish",
2954
+ "iss",
2955
+ "ist",
2956
+ "it",
2957
+ "it's",
2958
+ "ita",
2959
+ "italie",
2960
+ "ite",
2961
+ "item",
2962
+ "ith",
2963
+ "its",
2964
+ "itt",
2965
+ "ity",
2966
+ "it\u2019s",
2967
+ "ium",
2968
+ "ive",
2969
+ "iz.",
2970
+ "ize",
2971
+ "j",
2972
+ "j.",
2973
+ "jacket",
2974
+ "jan",
2975
+ "jan.",
2976
+ "janet",
2977
+ "japanese",
2978
+ "jason",
2979
+ "jay",
2980
+ "jellyfish",
2981
+ "jer",
2982
+ "jersey",
2983
+ "joxtine",
2984
+ "joy",
2985
+ "jr",
2986
+ "jr.",
2987
+ "jul",
2988
+ "jul.",
2989
+ "jumper",
2990
+ "jumping",
2991
+ "jun",
2992
+ "jun.",
2993
+ "k",
2994
+ "k.",
2995
+ "k969",
2996
+ "k989",
2997
+ "k999",
2998
+ "kah",
2999
+ "kalari",
3000
+ "kan",
3001
+ "kan.",
3002
+ "kans",
3003
+ "kans.",
3004
+ "ked",
3005
+ "kel",
3006
+ "kellytoy",
3007
+ "kellytoys",
3008
+ "ken",
3009
+ "kenny",
3010
+ "ker",
3011
+ "ket",
3012
+ "key",
3013
+ "keyboard",
3014
+ "keychain",
3015
+ "kick",
3016
+ "kid",
3017
+ "kids",
3018
+ "kidscolor",
3019
+ "king",
3020
+ "kingdom",
3021
+ "kirk",
3022
+ "kiss",
3023
+ "kit",
3024
+ "kit-3",
3025
+ "kits",
3026
+ "kitty",
3027
+ "kittycat",
3028
+ "kla",
3029
+ "knee",
3030
+ "knight",
3031
+ "knit",
3032
+ "koala",
3033
+ "kodak",
3034
+ "koopa",
3035
+ "koopaling",
3036
+ "kult",
3037
+ "ky",
3038
+ "ky.",
3039
+ "kyla",
3040
+ "kys",
3041
+ "l",
3042
+ "l'or\u00e9al",
3043
+ "l.",
3044
+ "la",
3045
+ "la.",
3046
+ "label",
3047
+ "labels",
3048
+ "labelsIron",
3049
+ "labelshirt",
3050
+ "labelsiron",
3051
+ "lac",
3052
+ "lace",
3053
+ "ladies",
3054
+ "ladybug-",
3055
+ "lan",
3056
+ "lar",
3057
+ "large",
3058
+ "latex",
3059
+ "latte",
3060
+ "lauren",
3061
+ "lavender",
3062
+ "lay",
3063
+ "laying",
3064
+ "learning",
3065
+ "led",
3066
+ "lee",
3067
+ "left",
3068
+ "leg",
3069
+ "legends",
3070
+ "lego",
3071
+ "lemon",
3072
+ "lemur",
3073
+ "len",
3074
+ "leopard",
3075
+ "ler",
3076
+ "les",
3077
+ "let",
3078
+ "let's",
3079
+ "letters",
3080
+ "letters/",
3081
+ "let\u2019s",
3082
+ "levels",
3083
+ "levi",
3084
+ "ley",
3085
+ "lf",
3086
+ "lga",
3087
+ "lic",
3088
+ "licensed",
3089
+ "lie",
3090
+ "lif",
3091
+ "life",
3092
+ "lifelike",
3093
+ "light",
3094
+ "lightning",
3095
+ "lights",
3096
+ "lightsfever",
3097
+ "lightsfevers",
3098
+ "lilac",
3099
+ "linda",
3100
+ "line",
3101
+ "lino",
3102
+ "lip",
3103
+ "liquid",
3104
+ "litre",
3105
+ "litro",
3106
+ "little",
3107
+ "livvy",
3108
+ "ll",
3109
+ "ll.",
3110
+ "lla",
3111
+ "llama",
3112
+ "llamacorn",
3113
+ "lle",
3114
+ "llo",
3115
+ "lls",
3116
+ "lly",
3117
+ "lo.",
3118
+ "lobi",
3119
+ "local",
3120
+ "localseller",
3121
+ "localstock",
3122
+ "lockdown",
3123
+ "loe",
3124
+ "logo",
3125
+ "loki",
3126
+ "lola",
3127
+ "lon",
3128
+ "london",
3129
+ "long",
3130
+ "loopback",
3131
+ "lophophora",
3132
+ "lor",
3133
+ "los",
3134
+ "lot",
3135
+ "louisa",
3136
+ "lounge",
3137
+ "love",
3138
+ "lovin",
3139
+ "lovin'",
3140
+ "loving",
3141
+ "lovin\u2019",
3142
+ "low",
3143
+ "lowercase",
3144
+ "lp",
3145
+ "lp-004",
3146
+ "lph",
3147
+ "ltd",
3148
+ "ltd.",
3149
+ "lti",
3150
+ "lty",
3151
+ "lucia",
3152
+ "lucy",
3153
+ "lue",
3154
+ "lullaby",
3155
+ "luna",
3156
+ "luxmen",
3157
+ "lva",
3158
+ "l\u00e4chelnde",
3159
+ "m",
3160
+ "m.",
3161
+ "ma'am",
3162
+ "macho",
3163
+ "mad",
3164
+ "madam",
3165
+ "madness",
3166
+ "magela",
3167
+ "maggie",
3168
+ "magic",
3169
+ "magical",
3170
+ "magico",
3171
+ "magnet",
3172
+ "magnet/",
3173
+ "magnetic",
3174
+ "make",
3175
+ "mal",
3176
+ "malcolm",
3177
+ "mallow",
3178
+ "mallows",
3179
+ "malva",
3180
+ "man",
3181
+ "manhattan",
3182
+ "many",
3183
+ "mar",
3184
+ "mar.",
3185
+ "mario",
3186
+ "marvel",
3187
+ "mas",
3188
+ "masala",
3189
+ "mass",
3190
+ "mass.",
3191
+ "masterpiece",
3192
+ "mat",
3193
+ "matching",
3194
+ "mateo",
3195
+ "maths",
3196
+ "matisse",
3197
+ "matters",
3198
+ "max",
3199
+ "may",
3200
+ "ma\u2019am",
3201
+ "md",
3202
+ "md.",
3203
+ "me",
3204
+ "meaning",
3205
+ "med",
3206
+ "medium",
3207
+ "mees",
3208
+ "meg",
3209
+ "mel",
3210
+ "melenge",
3211
+ "melody",
3212
+ "men",
3213
+ "mens",
3214
+ "mer",
3215
+ "messrs",
3216
+ "messrs.",
3217
+ "metal",
3218
+ "meter",
3219
+ "mfy",
3220
+ "mha",
3221
+ "mich",
3222
+ "mich.",
3223
+ "micro",
3224
+ "might",
3225
+ "mighty",
3226
+ "mikah",
3227
+ "mil",
3228
+ "mila",
3229
+ "military",
3230
+ "mimi",
3231
+ "mineral",
3232
+ "minga",
3233
+ "mini",
3234
+ "minn",
3235
+ "minn.",
3236
+ "mins",
3237
+ "mint",
3238
+ "mir",
3239
+ "miss",
3240
+ "miss.",
3241
+ "missouri",
3242
+ "mit",
3243
+ "mixed",
3244
+ "ml",
3245
+ "mme",
3246
+ "mo",
3247
+ "mo.",
3248
+ "models",
3249
+ "moduspec",
3250
+ "moist",
3251
+ "molars",
3252
+ "mold",
3253
+ "mon",
3254
+ "monkey",
3255
+ "monsters",
3256
+ "mont",
3257
+ "mont.",
3258
+ "montessori",
3259
+ "months",
3260
+ "moon",
3261
+ "moonstone",
3262
+ "moose",
3263
+ "morpeko",
3264
+ "moss",
3265
+ "motoko",
3266
+ "mountain",
3267
+ "mpa",
3268
+ "mpe",
3269
+ "mph",
3270
+ "mps",
3271
+ "mqlittleshop",
3272
+ "mqlittleshop][localseller",
3273
+ "mr",
3274
+ "mr.",
3275
+ "mrk",
3276
+ "mrs",
3277
+ "mrs.",
3278
+ "ms",
3279
+ "ms.",
3280
+ "mt",
3281
+ "mt.",
3282
+ "mucha",
3283
+ "multi",
3284
+ "multicolor",
3285
+ "multicolored",
3286
+ "mur",
3287
+ "mushroom",
3288
+ "music",
3289
+ "must",
3290
+ "mustard",
3291
+ "my",
3292
+ "mystery",
3293
+ "n",
3294
+ "n's",
3295
+ "n't",
3296
+ "n.",
3297
+ "n.c.",
3298
+ "n.d.",
3299
+ "n.h.",
3300
+ "n.j.",
3301
+ "n.m.",
3302
+ "n.y.",
3303
+ "n20",
3304
+ "n62",
3305
+ "na",
3306
+ "nabila",
3307
+ "nal",
3308
+ "name",
3309
+ "naomi",
3310
+ "narwhal",
3311
+ "nasty",
3312
+ "national",
3313
+ "navy",
3314
+ "nc.",
3315
+ "nce",
3316
+ "nch",
3317
+ "ncy",
3318
+ "nd.",
3319
+ "nda",
3320
+ "nde",
3321
+ "nds",
3322
+ "ndy",
3323
+ "nea",
3324
+ "neb",
3325
+ "neb.",
3326
+ "nebr",
3327
+ "nebr.",
3328
+ "neck",
3329
+ "necklace",
3330
+ "neckline",
3331
+ "nee",
3332
+ "need",
3333
+ "needed",
3334
+ "nel",
3335
+ "ner",
3336
+ "nes",
3337
+ "net",
3338
+ "nettoyant",
3339
+ "nev",
3340
+ "nev.",
3341
+ "never",
3342
+ "new",
3343
+ "newborn",
3344
+ "ney",
3345
+ "nez",
3346
+ "nga",
3347
+ "nge",
3348
+ "ngs",
3349
+ "nia",
3350
+ "nic",
3351
+ "nicky",
3352
+ "nico",
3353
+ "night",
3354
+ "nike",
3355
+ "ninja",
3356
+ "nit",
3357
+ "nixie",
3358
+ "nja",
3359
+ "nks",
3360
+ "nly",
3361
+ "nn.",
3362
+ "nny",
3363
+ "no",
3364
+ "node",
3365
+ "nom",
3366
+ "non",
3367
+ "nor",
3368
+ "norman",
3369
+ "not",
3370
+ "nothin",
3371
+ "nothin'",
3372
+ "nothing",
3373
+ "nothin\u2019",
3374
+ "nov",
3375
+ "nov.",
3376
+ "nry",
3377
+ "ns.",
3378
+ "nse",
3379
+ "nt",
3380
+ "nt.",
3381
+ "nta",
3382
+ "nte",
3383
+ "nts",
3384
+ "nuff",
3385
+ "number/",
3386
+ "numbers",
3387
+ "nut",
3388
+ "nuthin",
3389
+ "nuthin'",
3390
+ "nuthin\u2019",
3391
+ "nutty",
3392
+ "nylon",
3393
+ "nyx",
3394
+ "n\u2019s",
3395
+ "n\u2019t",
3396
+ "o",
3397
+ "o'clock",
3398
+ "o's",
3399
+ "o.",
3400
+ "o.0",
3401
+ "o.O",
3402
+ "o.o",
3403
+ "o_0",
3404
+ "o_O",
3405
+ "o_o",
3406
+ "oad",
3407
+ "oal",
3408
+ "oat",
3409
+ "oats",
3410
+ "oba",
3411
+ "obb",
3412
+ "obi",
3413
+ "obo",
3414
+ "ock",
3415
+ "oct",
3416
+ "oct.",
3417
+ "octopus",
3418
+ "odd",
3419
+ "ode",
3420
+ "odile",
3421
+ "ody",
3422
+ "oes",
3423
+ "of",
3424
+ "of.",
3425
+ "official",
3426
+ "officielle",
3427
+ "offizielles",
3428
+ "oficial",
3429
+ "oft",
3430
+ "ofy",
3431
+ "ogh",
3432
+ "ogo",
3433
+ "oil",
3434
+ "oin",
3435
+ "ois",
3436
+ "oki",
3437
+ "okla",
3438
+ "okla.",
3439
+ "oko",
3440
+ "ol",
3441
+ "ol'",
3442
+ "ola",
3443
+ "old",
3444
+ "olga",
3445
+ "olive",
3446
+ "oll",
3447
+ "olm",
3448
+ "olo",
3449
+ "ol\u2019",
3450
+ "om",
3451
+ "omar",
3452
+ "omb",
3453
+ "ome",
3454
+ "omi",
3455
+ "on",
3456
+ "one",
3457
+ "ones",
3458
+ "ong",
3459
+ "onn",
3460
+ "ons",
3461
+ "ont",
3462
+ "onyx",
3463
+ "ood",
3464
+ "ooi",
3465
+ "ool",
3466
+ "oom",
3467
+ "oon",
3468
+ "oop",
3469
+ "oor",
3470
+ "oos",
3471
+ "oot",
3472
+ "opa",
3473
+ "ops",
3474
+ "or",
3475
+ "ora",
3476
+ "orange",
3477
+ "orangutan",
3478
+ "order",
3479
+ "ore",
3480
+ "ore.",
3481
+ "ori",
3482
+ "original",
3483
+ "ork",
3484
+ "orn",
3485
+ "orp",
3486
+ "ors",
3487
+ "ort",
3488
+ "ory",
3489
+ "orzella",
3490
+ "or\u00e9",
3491
+ "os",
3492
+ "os.",
3493
+ "ose",
3494
+ "oss",
3495
+ "ost",
3496
+ "oth",
3497
+ "other",
3498
+ "otl",
3499
+ "ought",
3500
+ "our",
3501
+ "ous",
3502
+ "out",
3503
+ "outdoor",
3504
+ "ov.",
3505
+ "ove",
3506
+ "over",
3507
+ "oversized",
3508
+ "overthinker",
3509
+ "owl",
3510
+ "owl-",
3511
+ "own",
3512
+ "ows",
3513
+ "oy/",
3514
+ "oyd",
3515
+ "oys",
3516
+ "o\u2019clock",
3517
+ "o\u2019s",
3518
+ "p",
3519
+ "p.",
3520
+ "p.m",
3521
+ "p.m.",
3522
+ "p929",
3523
+ "pa",
3524
+ "pa.",
3525
+ "pacifier",
3526
+ "pack",
3527
+ "packing",
3528
+ "painting",
3529
+ "pairs",
3530
+ "pal",
3531
+ "palitoy",
3532
+ "panda",
3533
+ "pandacorn",
3534
+ "pania",
3535
+ "pantene",
3536
+ "pants",
3537
+ "paper",
3538
+ "paperbag",
3539
+ "papiers",
3540
+ "par",
3541
+ "parfum",
3542
+ "paris",
3543
+ "park",
3544
+ "parker",
3545
+ "parking",
3546
+ "participants",
3547
+ "parts",
3548
+ "party",
3549
+ "pastel",
3550
+ "patterys",
3551
+ "pcs",
3552
+ "pec",
3553
+ "ped",
3554
+ "pegacorn",
3555
+ "peluche",
3556
+ "penetraitt",
3557
+ "penguin",
3558
+ "penguin-",
3559
+ "pens",
3560
+ "pentester",
3561
+ "peppa",
3562
+ "per",
3563
+ "permanent",
3564
+ "personalized",
3565
+ "pes",
3566
+ "pet",
3567
+ "ph",
3568
+ "ph.d.",
3569
+ "philip",
3570
+ "pia",
3571
+ "picasso",
3572
+ "picture",
3573
+ "piece",
3574
+ "pieces",
3575
+ "pig",
3576
+ "piggy",
3577
+ "pilar",
3578
+ "pillow",
3579
+ "pine",
3580
+ "pink",
3581
+ "pins",
3582
+ "pistachio",
3583
+ "plaid",
3584
+ "planet",
3585
+ "plaster",
3586
+ "plastic",
3587
+ "play",
3588
+ "playhouse",
3589
+ "ple",
3590
+ "plush",
3591
+ "plushie",
3592
+ "pl\u00fcschtier",
3593
+ "pm",
3594
+ "poa",
3595
+ "pokemon",
3596
+ "pok\u00e9mon",
3597
+ "polo",
3598
+ "polyester",
3599
+ "pompa",
3600
+ "pompe",
3601
+ "poo",
3602
+ "poodle",
3603
+ "pool",
3604
+ "ports",
3605
+ "pour",
3606
+ "powder",
3607
+ "ppa",
3608
+ "ppe",
3609
+ "ppy",
3610
+ "pr",
3611
+ "pr.",
3612
+ "precut",
3613
+ "premium",
3614
+ "preschool",
3615
+ "press",
3616
+ "price",
3617
+ "prim",
3618
+ "prince",
3619
+ "princess",
3620
+ "print",
3621
+ "printcube",
3622
+ "printed",
3623
+ "printing",
3624
+ "process",
3625
+ "product",
3626
+ "prof",
3627
+ "prof.",
3628
+ "professional",
3629
+ "professionnel",
3630
+ "properties",
3631
+ "proraso",
3632
+ "prussion",
3633
+ "pse",
3634
+ "pt.",
3635
+ "pterodactyl",
3636
+ "puff",
3637
+ "pug",
3638
+ "pulgadas",
3639
+ "pull",
3640
+ "pullover",
3641
+ "pumps",
3642
+ "puppy",
3643
+ "pure",
3644
+ "purple",
3645
+ "pus",
3646
+ "puzzle",
3647
+ "puzzles",
3648
+ "pygmy",
3649
+ "q",
3650
+ "q.",
3651
+ "q21",
3652
+ "qd06",
3653
+ "qua",
3654
+ "quality",
3655
+ "quantity",
3656
+ "queen",
3657
+ "qu\u00e9",
3658
+ "r",
3659
+ "r.",
3660
+ "rab",
3661
+ "raglan",
3662
+ "rail",
3663
+ "rainbow",
3664
+ "ral",
3665
+ "ralph",
3666
+ "randy",
3667
+ "raquel",
3668
+ "rare",
3669
+ "rattle",
3670
+ "ray",
3671
+ "rbe",
3672
+ "rc",
3673
+ "rce",
3674
+ "rds",
3675
+ "re",
3676
+ "re.",
3677
+ "rea",
3678
+ "ready",
3679
+ "real",
3680
+ "realistic",
3681
+ "reality",
3682
+ "rear",
3683
+ "rebel",
3684
+ "receive",
3685
+ "rechargeable",
3686
+ "red",
3687
+ "ree",
3688
+ "reebok",
3689
+ "reg",
3690
+ "regina",
3691
+ "ren",
3692
+ "rep",
3693
+ "rep.",
3694
+ "replacement",
3695
+ "res",
3696
+ "resale",
3697
+ "resistain",
3698
+ "resveratrol",
3699
+ "retro",
3700
+ "reusable",
3701
+ "rev",
3702
+ "rev.",
3703
+ "rew",
3704
+ "rex",
3705
+ "rey",
3706
+ "rge",
3707
+ "rgi",
3708
+ "rgy",
3709
+ "rhinestone",
3710
+ "rib",
3711
+ "ribbed",
3712
+ "ribbon",
3713
+ "ribbons",
3714
+ "rid",
3715
+ "ride",
3716
+ "rie",
3717
+ "rim",
3718
+ "rinforzante",
3719
+ "rings",
3720
+ "rio",
3721
+ "rip",
3722
+ "ris",
3723
+ "ristrutturante",
3724
+ "river",
3725
+ "riz",
3726
+ "rk.",
3727
+ "rld",
3728
+ "rly",
3729
+ "rma",
3730
+ "rnt",
3731
+ "road",
3732
+ "robb",
3733
+ "rocio",
3734
+ "rock",
3735
+ "rof",
3736
+ "rog",
3737
+ "rohan",
3738
+ "rol",
3739
+ "rolled",
3740
+ "roman",
3741
+ "ron",
3742
+ "rooster",
3743
+ "rop",
3744
+ "ros",
3745
+ "rose",
3746
+ "rosie",
3747
+ "rottweiler",
3748
+ "round",
3749
+ "roundneck",
3750
+ "rp.",
3751
+ "rry",
3752
+ "rs.",
3753
+ "rs/",
3754
+ "rse",
3755
+ "rth",
3756
+ "rts",
3757
+ "rty",
3758
+ "rude",
3759
+ "rue",
3760
+ "rufus",
3761
+ "rus",
3762
+ "rust",
3763
+ "rustic",
3764
+ "rutabaga",
3765
+ "ry-",
3766
+ "rys",
3767
+ "r\u00fcn",
3768
+ "s",
3769
+ "s's",
3770
+ "s(6",
3771
+ "s.",
3772
+ "s.c.",
3773
+ "s39",
3774
+ "safe",
3775
+ "sage",
3776
+ "sai",
3777
+ "sailor",
3778
+ "salt",
3779
+ "sam",
3780
+ "same",
3781
+ "samir",
3782
+ "samples",
3783
+ "sand",
3784
+ "santa",
3785
+ "sapphire",
3786
+ "satin",
3787
+ "savage",
3788
+ "scale",
3789
+ "scarf",
3790
+ "scarlet",
3791
+ "schlafenden",
3792
+ "school",
3793
+ "sco",
3794
+ "scoop",
3795
+ "scooter",
3796
+ "sea",
3797
+ "seal",
3798
+ "sebastian",
3799
+ "seconds",
3800
+ "security",
3801
+ "sed",
3802
+ "seller",
3803
+ "semi",
3804
+ "sen",
3805
+ "sen.",
3806
+ "sensitive",
3807
+ "sensory",
3808
+ "sep",
3809
+ "sep.",
3810
+ "sept",
3811
+ "sept.",
3812
+ "ser",
3813
+ "serie",
3814
+ "series",
3815
+ "serpent",
3816
+ "service",
3817
+ "services",
3818
+ "ses",
3819
+ "set",
3820
+ "sex",
3821
+ "sey",
3822
+ "sg",
3823
+ "sh.",
3824
+ "sha",
3825
+ "shaft",
3826
+ "shall",
3827
+ "shampoing",
3828
+ "shampoo",
3829
+ "shampooing",
3830
+ "shantira",
3831
+ "shark",
3832
+ "she",
3833
+ "she's",
3834
+ "shell",
3835
+ "she\u2019s",
3836
+ "ship",
3837
+ "shirt",
3838
+ "shirts",
3839
+ "shiseido",
3840
+ "shoe",
3841
+ "shop",
3842
+ "short",
3843
+ "should",
3844
+ "shower",
3845
+ "shrew",
3846
+ "shy",
3847
+ "sic",
3848
+ "sides",
3849
+ "sie",
3850
+ "signature",
3851
+ "sii",
3852
+ "silicone",
3853
+ "silkscreen",
3854
+ "silver",
3855
+ "simha",
3856
+ "simulation",
3857
+ "singing",
3858
+ "single",
3859
+ "size",
3860
+ "sized",
3861
+ "skateboarding",
3862
+ "skeleton",
3863
+ "sku",
3864
+ "sla",
3865
+ "sle",
3866
+ "sleepover",
3867
+ "sleepy",
3868
+ "sleeve",
3869
+ "sleeved",
3870
+ "sliding",
3871
+ "slime",
3872
+ "sloth",
3873
+ "small",
3874
+ "smiling",
3875
+ "smores",
3876
+ "socks",
3877
+ "soft",
3878
+ "sofy",
3879
+ "soin",
3880
+ "solaris",
3881
+ "somethin",
3882
+ "somethin'",
3883
+ "something",
3884
+ "somethin\u2019",
3885
+ "son",
3886
+ "soothing",
3887
+ "sound",
3888
+ "sounds",
3889
+ "source",
3890
+ "space",
3891
+ "species",
3892
+ "speech",
3893
+ "speed",
3894
+ "spelling",
3895
+ "spider",
3896
+ "spongieuse",
3897
+ "sport",
3898
+ "spotted",
3899
+ "spraying",
3900
+ "spread",
3901
+ "sq21",
3902
+ "sqjw22",
3903
+ "squad",
3904
+ "squashmallow",
3905
+ "squeeze",
3906
+ "squish",
3907
+ "squishmallow",
3908
+ "squishmallows",
3909
+ "squishy",
3910
+ "srs",
3911
+ "ss.",
3912
+ "sse",
3913
+ "sso",
3914
+ "st",
3915
+ "st.",
3916
+ "stackable",
3917
+ "standard",
3918
+ "stands",
3919
+ "stapleton",
3920
+ "star",
3921
+ "stick",
3922
+ "sticker",
3923
+ "stickers",
3924
+ "sticks",
3925
+ "stingray",
3926
+ "stitch",
3927
+ "stock",
3928
+ "stofftier",
3929
+ "stomach",
3930
+ "stomper",
3931
+ "stone",
3932
+ "storage",
3933
+ "straight",
3934
+ "strawberry",
3935
+ "streetwear",
3936
+ "stretch",
3937
+ "strike",
3938
+ "striped",
3939
+ "sts",
3940
+ "student",
3941
+ "stuffed",
3942
+ "sty",
3943
+ "style",
3944
+ "suave",
3945
+ "sublimation",
3946
+ "submarine",
3947
+ "subtraction",
3948
+ "sugar",
3949
+ "suit",
3950
+ "sum",
3951
+ "summer",
3952
+ "sunflower",
3953
+ "sunflowers",
3954
+ "sunny",
3955
+ "sunscreen",
3956
+ "super",
3957
+ "superb",
3958
+ "supporting",
3959
+ "sw",
3960
+ "sweater",
3961
+ "sweatpants",
3962
+ "sweatshirt",
3963
+ "sweatshirts",
3964
+ "swimming",
3965
+ "swshn11898412",
3966
+ "swshn11914182",
3967
+ "swshn11924931",
3968
+ "s\u2019s",
3969
+ "t",
3970
+ "t's",
3971
+ "t-",
3972
+ "t-3",
3973
+ "t.",
3974
+ "t35l4",
3975
+ "t71",
3976
+ "ta",
3977
+ "tabby",
3978
+ "table",
3979
+ "tabletop",
3980
+ "tag",
3981
+ "tags",
3982
+ "tal",
3983
+ "talisa",
3984
+ "talking",
3985
+ "tally",
3986
+ "tam",
3987
+ "tan",
3988
+ "tapered",
3989
+ "tar",
3990
+ "tassle",
3991
+ "taupe",
3992
+ "tax",
3993
+ "tch",
3994
+ "td.",
3995
+ "tea",
3996
+ "teach",
3997
+ "teal",
3998
+ "team",
3999
+ "ted",
4000
+ "teddy",
4001
+ "teether",
4002
+ "teething",
4003
+ "tel",
4004
+ "tem",
4005
+ "tenn",
4006
+ "tenn.",
4007
+ "tent",
4008
+ "teo",
4009
+ "ter",
4010
+ "tes",
4011
+ "tesla",
4012
+ "tex",
4013
+ "text",
4014
+ "th-",
4015
+ "thanks",
4016
+ "that",
4017
+ "that's",
4018
+ "that\u2019s",
4019
+ "the",
4020
+ "them",
4021
+ "there",
4022
+ "there's",
4023
+ "there\u2019s",
4024
+ "these",
4025
+ "they",
4026
+ "thigh",
4027
+ "things",
4028
+ "thinking",
4029
+ "this",
4030
+ "this's",
4031
+ "this\u2019s",
4032
+ "thompson",
4033
+ "those",
4034
+ "thread",
4035
+ "three",
4036
+ "ths",
4037
+ "tic",
4038
+ "tie",
4039
+ "tik",
4040
+ "timberland",
4041
+ "time",
4042
+ "tin",
4043
+ "tio",
4044
+ "tl-",
4045
+ "tle",
4046
+ "to",
4047
+ "toast",
4048
+ "todd",
4049
+ "toddler",
4050
+ "toddlers",
4051
+ "toffee",
4052
+ "tok",
4053
+ "tom",
4054
+ "tomar",
4055
+ "ton",
4056
+ "top",
4057
+ "tor",
4058
+ "total",
4059
+ "touch",
4060
+ "toxic",
4061
+ "toy",
4062
+ "toy/",
4063
+ "toy_gift",
4064
+ "toy_giftt",
4065
+ "toybox",
4066
+ "toys",
4067
+ "toys/",
4068
+ "tra",
4069
+ "track",
4070
+ "train",
4071
+ "trainer",
4072
+ "transfer",
4073
+ "transparent",
4074
+ "tre",
4075
+ "treasure",
4076
+ "tree",
4077
+ "trees",
4078
+ "triceratops",
4079
+ "tricycle",
4080
+ "tristan",
4081
+ "tro",
4082
+ "truck",
4083
+ "trudy",
4084
+ "trust",
4085
+ "ts/",
4086
+ "ts2",
4087
+ "tshirt",
4088
+ "tshirts",
4089
+ "tsubaki",
4090
+ "tta",
4091
+ "tte",
4092
+ "tty",
4093
+ "tunic",
4094
+ "tunnel",
4095
+ "turtle",
4096
+ "tyl",
4097
+ "t\u2019s",
4098
+ "u",
4099
+ "u.",
4100
+ "uad",
4101
+ "ube",
4102
+ "ubo",
4103
+ "uce",
4104
+ "uch",
4105
+ "uck",
4106
+ "uct",
4107
+ "ucy",
4108
+ "ude",
4109
+ "uds",
4110
+ "udy",
4111
+ "uel",
4112
+ "uey",
4113
+ "uff",
4114
+ "ug-",
4115
+ "ug.",
4116
+ "ugo",
4117
+ "ugs",
4118
+ "uid",
4119
+ "uin",
4120
+ "uit",
4121
+ "uiuoutoy",
4122
+ "uk",
4123
+ "ul.",
4124
+ "ula",
4125
+ "uld",
4126
+ "ull",
4127
+ "ult",
4128
+ "ultra",
4129
+ "ultrasoft",
4130
+ "umn",
4131
+ "un.",
4132
+ "una",
4133
+ "unboxing",
4134
+ "und",
4135
+ "unicorn",
4136
+ "uniqua",
4137
+ "unisex",
4138
+ "unit",
4139
+ "universe",
4140
+ "unlimited",
4141
+ "unt",
4142
+ "up",
4143
+ "upc:8001090666765",
4144
+ "upe",
4145
+ "uppercase",
4146
+ "urbanstyle",
4147
+ "ure",
4148
+ "uri",
4149
+ "urs",
4150
+ "us",
4151
+ "usb",
4152
+ "use",
4153
+ "ush",
4154
+ "ust",
4155
+ "ute",
4156
+ "uth",
4157
+ "uv",
4158
+ "uzz",
4159
+ "v",
4160
+ "v.",
4161
+ "v.s",
4162
+ "v.s.",
4163
+ "v.v",
4164
+ "v00",
4165
+ "v1",
4166
+ "v2",
4167
+ "v_v",
4168
+ "va",
4169
+ "va.",
4170
+ "val",
4171
+ "van",
4172
+ "vanquish",
4173
+ "ve",
4174
+ "ved",
4175
+ "vee",
4176
+ "vegetables",
4177
+ "vehicle",
4178
+ "vel",
4179
+ "ven",
4180
+ "venom",
4181
+ "vent",
4182
+ "ver",
4183
+ "veronica",
4184
+ "vi",
4185
+ "vin",
4186
+ "vintage",
4187
+ "visage",
4188
+ "vision",
4189
+ "vistaprint",
4190
+ "vitamino",
4191
+ "vneck",
4192
+ "vs",
4193
+ "vs.",
4194
+ "vus",
4195
+ "vvy",
4196
+ "w",
4197
+ "w's",
4198
+ "w.",
4199
+ "w/o",
4200
+ "w22",
4201
+ "waffle",
4202
+ "waived",
4203
+ "walrus",
4204
+ "wand",
4205
+ "want",
4206
+ "wanted",
4207
+ "warm",
4208
+ "wars",
4209
+ "was",
4210
+ "wash",
4211
+ "wash.",
4212
+ "washable",
4213
+ "watching",
4214
+ "water",
4215
+ "watermelon",
4216
+ "we",
4217
+ "web",
4218
+ "wedding",
4219
+ "weddings",
4220
+ "weiches",
4221
+ "weights",
4222
+ "wella",
4223
+ "wendy",
4224
+ "wer",
4225
+ "were",
4226
+ "western",
4227
+ "wh",
4228
+ "what",
4229
+ "what's",
4230
+ "what\u2019s",
4231
+ "when",
4232
+ "when's",
4233
+ "when\u2019s",
4234
+ "where",
4235
+ "where's",
4236
+ "where\u2019s",
4237
+ "whit",
4238
+ "white",
4239
+ "who",
4240
+ "who's",
4241
+ "wholesale",
4242
+ "who\u2019s",
4243
+ "why",
4244
+ "why's",
4245
+ "why\u2019s",
4246
+ "wildflower",
4247
+ "will",
4248
+ "williamsii",
4249
+ "wind",
4250
+ "winding",
4251
+ "winged",
4252
+ "wings",
4253
+ "winkel",
4254
+ "wis",
4255
+ "wis.",
4256
+ "witch",
4257
+ "with",
4258
+ "without",
4259
+ "wl-",
4260
+ "wltoys",
4261
+ "wo",
4262
+ "women",
4263
+ "wood",
4264
+ "wooden",
4265
+ "woodland",
4266
+ "words",
4267
+ "work",
4268
+ "world",
4269
+ "worn",
4270
+ "would",
4271
+ "woven",
4272
+ "wrecker",
4273
+ "wts",
4274
+ "wwe",
4275
+ "w\u2019s",
4276
+ "x",
4277
+ "x'",
4278
+ "x'x",
4279
+ "x'xxxx",
4280
+ "x-",
4281
+ "x.",
4282
+ "x.X",
4283
+ "x.d",
4284
+ "x.x",
4285
+ "x.x.",
4286
+ "x/x",
4287
+ "xD",
4288
+ "xDD",
4289
+ "xX",
4290
+ "xXX",
4291
+ "x_X",
4292
+ "x_d",
4293
+ "x_x",
4294
+ "xd",
4295
+ "xdd",
4296
+ "xddd",
4297
+ "xddxd",
4298
+ "xdxxxdddd",
4299
+ "xed",
4300
+ "xerophyte",
4301
+ "xic",
4302
+ "xie",
4303
+ "xl",
4304
+ "xs",
4305
+ "xx",
4306
+ "xx'",
4307
+ "xx'x",
4308
+ "xx'xx",
4309
+ "xx-ddd",
4310
+ "xx.",
4311
+ "xxdd",
4312
+ "xxdddd",
4313
+ "xxl",
4314
+ "xxx",
4315
+ "xxx'x",
4316
+ "xxx-",
4317
+ "xxx-d",
4318
+ "xxx/",
4319
+ "xxx/xx",
4320
+ "xxx:dddd",
4321
+ "xxx_xxxx",
4322
+ "xxxd",
4323
+ "xxxdd",
4324
+ "xxxx",
4325
+ "xxxx'",
4326
+ "xxxx'x",
4327
+ "xxxx(d",
4328
+ "xxxx-",
4329
+ "xxxx-dddd",
4330
+ "xxxx/",
4331
+ "xxxxXxxx",
4332
+ "xxxx][xxxx",
4333
+ "xxxxdd",
4334
+ "xxxxdddd",
4335
+ "xxxx\u2019",
4336
+ "xxxx\u2019x",
4337
+ "xxx\u2019x",
4338
+ "xx\u2019",
4339
+ "xx\u2019x",
4340
+ "xx\u2019xx",
4341
+ "x\u2019",
4342
+ "x\u2019x",
4343
+ "x\u2019xxxx",
4344
+ "x\ufe35x",
4345
+ "y",
4346
+ "y'",
4347
+ "y's",
4348
+ "y.",
4349
+ "yeah",
4350
+ "year",
4351
+ "years",
4352
+ "yellow",
4353
+ "yla",
4354
+ "yle",
4355
+ "yosemite",
4356
+ "you",
4357
+ "your",
4358
+ "youth",
4359
+ "ys/",
4360
+ "ysl",
4361
+ "yst",
4362
+ "yte",
4363
+ "y\u2019",
4364
+ "y\u2019s",
4365
+ "z",
4366
+ "z.",
4367
+ "zaylee",
4368
+ "zed",
4369
+ "zip",
4370
+ "zle",
4371
+ "|",
4372
+ "}",
4373
+ "\u00a0",
4374
+ "\u00a3",
4375
+ "\u00ac",
4376
+ "\u00ac_\u00ac",
4377
+ "\u00ae",
4378
+ "\u00af",
4379
+ "\u00af\\(x)/\u00af",
4380
+ "\u00af\\(\u30c4)/\u00af",
4381
+ "\u00b0",
4382
+ "\u00b0C.",
4383
+ "\u00b0F.",
4384
+ "\u00b0K.",
4385
+ "\u00b0X.",
4386
+ "\u00b0c.",
4387
+ "\u00b0f.",
4388
+ "\u00b0k.",
4389
+ "\u00b0x.",
4390
+ "\u00c9",
4391
+ "\u00c9pice",
4392
+ "\u00e0",
4393
+ "\u00e4",
4394
+ "\u00e4.",
4395
+ "\u00e9",
4396
+ "\u00e9al",
4397
+ "\u00e9pice",
4398
+ "\u00f6",
4399
+ "\u00f6.",
4400
+ "\u00fc",
4401
+ "\u00fc.",
4402
+ "\u0ca0",
4403
+ "\u0ca0_\u0ca0",
4404
+ "\u0ca0\ufe35\u0ca0",
4405
+ "\u2013",
4406
+ "\u2014",
4407
+ "\u2018",
4408
+ "\u2018S",
4409
+ "\u2018X",
4410
+ "\u2018s",
4411
+ "\u2018x",
4412
+ "\u2019",
4413
+ "\u2019-(",
4414
+ "\u2019-)",
4415
+ "\u2019Cause",
4416
+ "\u2019Cos",
4417
+ "\u2019Coz",
4418
+ "\u2019Cuz",
4419
+ "\u2019S",
4420
+ "\u2019X",
4421
+ "\u2019Xxx",
4422
+ "\u2019Xxxxx",
4423
+ "\u2019am",
4424
+ "\u2019bout",
4425
+ "\u2019cause",
4426
+ "\u2019cos",
4427
+ "\u2019coz",
4428
+ "\u2019cuz",
4429
+ "\u2019d",
4430
+ "\u2019em",
4431
+ "\u2019ll",
4432
+ "\u2019m",
4433
+ "\u2019nuff",
4434
+ "\u2019re",
4435
+ "\u2019s",
4436
+ "\u2019ve",
4437
+ "\u2019x",
4438
+ "\u2019xx",
4439
+ "\u2019xxx",
4440
+ "\u2019xxxx",
4441
+ "\u2019y",
4442
+ "\u2019\u2019",
4443
+ "\u2501",
4444
+ "\u253b",
4445
+ "\u253b\u2501\u253b",
4446
+ "\u256f",
4447
+ "\u25a1",
4448
+ "\u2605",
4449
+ "\u6e05",
4450
+ "\u6e05\u6d01\u5242",
4451
+ "\u751f\u7b52\u889c",
4452
+ "\u8fc7",
4453
+ "\u8fc7\u819d\u957f\u5b66\u751f\u7b52\u889c",
4454
+ "\ufe35",
4455
+ "\uff09",
4456
+ "\ud83c\uddec",
4457
+ "\ud83c\uddf8"
4458
+ ]
vocab/vectors ADDED
Binary file (128 Bytes). View file
 
vocab/vectors.cfg ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+ "mode":"default"
3
+ }