abhiii commited on
Commit
92e54cb
·
verified ·
1 Parent(s): 4763b2e

Update spaCy pipeline

Browse files
.gitattributes CHANGED
@@ -33,3 +33,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ en_pipeline-any-py3-none-any.whl filter=lfs diff=lfs merge=lfs -text
37
+ transformer/model filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - spacy
4
+ - token-classification
5
+ language:
6
+ - en
7
+ model-index:
8
+ - name: en_pipeline
9
+ results:
10
+ - task:
11
+ name: NER
12
+ type: token-classification
13
+ metrics:
14
+ - name: NER Precision
15
+ type: precision
16
+ value: 1.0
17
+ - name: NER Recall
18
+ type: recall
19
+ value: 1.0
20
+ - name: NER F Score
21
+ type: f_score
22
+ value: 1.0
23
+ ---
24
+ | Feature | Description |
25
+ | --- | --- |
26
+ | **Name** | `en_pipeline` |
27
+ | **Version** | `0.0.0` |
28
+ | **spaCy** | `>=3.7.5,<3.8.0` |
29
+ | **Default Pipeline** | `transformer`, `ner` |
30
+ | **Components** | `transformer`, `ner` |
31
+ | **Vectors** | 0 keys, 0 unique vectors (0 dimensions) |
32
+ | **Sources** | n/a |
33
+ | **License** | n/a |
34
+ | **Author** | [n/a]() |
35
+
36
+ ### Label Scheme
37
+
38
+ <details>
39
+
40
+ <summary>View label scheme (15 labels for 1 components)</summary>
41
+
42
+ | Component | Labels |
43
+ | --- | --- |
44
+ | **`ner`** | `CREDIT_CARD`, `DATE_TIME`, `EMAIL_ADDRESS`, `IBAN_CODE`, `IP_ADDRESS`, `LOCATION`, `NRP`, `PERSON`, `PHONE_NUMBER`, `URL`, `US_BANK_NUMBER`, `US_DRIVER_LICENSE`, `US_ITIN`, `US_PASSPORT`, `US_SSN` |
45
+
46
+ </details>
47
+
48
+ ### Accuracy
49
+
50
+ | Type | Score |
51
+ | --- | --- |
52
+ | `ENTS_F` | 100.00 |
53
+ | `ENTS_P` | 100.00 |
54
+ | `ENTS_R` | 100.00 |
55
+ | `TRANSFORMER_LOSS` | 0.00 |
56
+ | `NER_LOSS` | 0.00 |
config.cfg ADDED
@@ -0,0 +1,147 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [paths]
2
+ train = "./training_data.spacy"
3
+ dev = "./training_data.spacy"
4
+ vectors = null
5
+ init_tok2vec = null
6
+
7
+ [system]
8
+ gpu_allocator = "pytorch"
9
+ seed = 0
10
+
11
+ [nlp]
12
+ lang = "en"
13
+ pipeline = ["transformer","ner"]
14
+ batch_size = 128
15
+ disabled = []
16
+ before_creation = null
17
+ after_creation = null
18
+ after_pipeline_creation = null
19
+ tokenizer = {"@tokenizers":"spacy.Tokenizer.v1"}
20
+ vectors = {"@vectors":"spacy.Vectors.v1"}
21
+
22
+ [components]
23
+
24
+ [components.ner]
25
+ factory = "ner"
26
+ incorrect_spans_key = null
27
+ moves = null
28
+ scorer = {"@scorers":"spacy.ner_scorer.v1"}
29
+ update_with_oracle_cut_size = 100
30
+
31
+ [components.ner.model]
32
+ @architectures = "spacy.TransitionBasedParser.v2"
33
+ state_type = "ner"
34
+ extra_state_tokens = false
35
+ hidden_width = 64
36
+ maxout_pieces = 2
37
+ use_upper = false
38
+ nO = null
39
+
40
+ [components.ner.model.tok2vec]
41
+ @architectures = "spacy-transformers.TransformerListener.v1"
42
+ grad_factor = 1.0
43
+ pooling = {"@layers":"reduce_mean.v1"}
44
+ upstream = "*"
45
+
46
+ [components.transformer]
47
+ factory = "transformer"
48
+ max_batch_items = 4096
49
+ set_extra_annotations = {"@annotation_setters":"spacy-transformers.null_annotation_setter.v1"}
50
+
51
+ [components.transformer.model]
52
+ @architectures = "spacy-transformers.TransformerModel.v3"
53
+ name = "roberta-base"
54
+ mixed_precision = false
55
+
56
+ [components.transformer.model.get_spans]
57
+ @span_getters = "spacy-transformers.strided_spans.v1"
58
+ window = 128
59
+ stride = 96
60
+
61
+ [components.transformer.model.grad_scaler_config]
62
+
63
+ [components.transformer.model.tokenizer_config]
64
+ use_fast = true
65
+
66
+ [components.transformer.model.transformer_config]
67
+
68
+ [corpora]
69
+
70
+ [corpora.dev]
71
+ @readers = "spacy.Corpus.v1"
72
+ path = ${paths.dev}
73
+ max_length = 0
74
+ gold_preproc = false
75
+ limit = 0
76
+ augmenter = null
77
+
78
+ [corpora.train]
79
+ @readers = "spacy.Corpus.v1"
80
+ path = ${paths.train}
81
+ max_length = 0
82
+ gold_preproc = false
83
+ limit = 0
84
+ augmenter = null
85
+
86
+ [training]
87
+ accumulate_gradient = 3
88
+ dev_corpus = "corpora.dev"
89
+ train_corpus = "corpora.train"
90
+ seed = ${system.seed}
91
+ gpu_allocator = ${system.gpu_allocator}
92
+ dropout = 0.1
93
+ patience = 1600
94
+ max_epochs = 0
95
+ max_steps = 20000
96
+ eval_frequency = 200
97
+ frozen_components = []
98
+ annotating_components = []
99
+ before_to_disk = null
100
+ before_update = null
101
+
102
+ [training.batcher]
103
+ @batchers = "spacy.batch_by_padded.v1"
104
+ discard_oversize = true
105
+ size = 2000
106
+ buffer = 256
107
+ get_length = null
108
+
109
+ [training.logger]
110
+ @loggers = "spacy.ConsoleLogger.v1"
111
+ progress_bar = false
112
+
113
+ [training.optimizer]
114
+ @optimizers = "Adam.v1"
115
+ beta1 = 0.9
116
+ beta2 = 0.999
117
+ L2_is_weight_decay = true
118
+ L2 = 0.01
119
+ grad_clip = 1.0
120
+ use_averages = false
121
+ eps = 0.00000001
122
+
123
+ [training.optimizer.learn_rate]
124
+ @schedules = "warmup_linear.v1"
125
+ warmup_steps = 250
126
+ total_steps = 20000
127
+ initial_rate = 0.00005
128
+
129
+ [training.score_weights]
130
+ ents_f = 1.0
131
+ ents_p = 0.0
132
+ ents_r = 0.0
133
+ ents_per_type = null
134
+
135
+ [pretraining]
136
+
137
+ [initialize]
138
+ vectors = ${paths.vectors}
139
+ init_tok2vec = ${paths.init_tok2vec}
140
+ vocab_data = null
141
+ lookups = null
142
+ before_init = null
143
+ after_init = null
144
+
145
+ [initialize.components]
146
+
147
+ [initialize.tokenizer]
en_pipeline-any-py3-none-any.whl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ab23796250c84fb6b9b5b8ede3fbd2d514c881b7d82e699aaa1c452553dc2704
3
+ size 427163827
meta.json ADDED
@@ -0,0 +1,138 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lang":"en",
3
+ "name":"pipeline",
4
+ "version":"0.0.0",
5
+ "description":"",
6
+ "author":"",
7
+ "email":"",
8
+ "url":"",
9
+ "license":"",
10
+ "spacy_version":">=3.7.5,<3.8.0",
11
+ "spacy_git_version":"a6d0fc360",
12
+ "vectors":{
13
+ "width":0,
14
+ "vectors":0,
15
+ "keys":0,
16
+ "name":null
17
+ },
18
+ "labels":{
19
+ "transformer":[
20
+
21
+ ],
22
+ "ner":[
23
+ "CREDIT_CARD",
24
+ "DATE_TIME",
25
+ "EMAIL_ADDRESS",
26
+ "IBAN_CODE",
27
+ "IP_ADDRESS",
28
+ "LOCATION",
29
+ "NRP",
30
+ "PERSON",
31
+ "PHONE_NUMBER",
32
+ "URL",
33
+ "US_BANK_NUMBER",
34
+ "US_DRIVER_LICENSE",
35
+ "US_ITIN",
36
+ "US_PASSPORT",
37
+ "US_SSN"
38
+ ]
39
+ },
40
+ "pipeline":[
41
+ "transformer",
42
+ "ner"
43
+ ],
44
+ "components":[
45
+ "transformer",
46
+ "ner"
47
+ ],
48
+ "disabled":[
49
+
50
+ ],
51
+ "performance":{
52
+ "ents_f":1.0,
53
+ "ents_p":1.0,
54
+ "ents_r":1.0,
55
+ "ents_per_type":{
56
+ "CREDIT_CARD":{
57
+ "p":1.0,
58
+ "r":1.0,
59
+ "f":1.0
60
+ },
61
+ "DATE_TIME":{
62
+ "p":1.0,
63
+ "r":1.0,
64
+ "f":1.0
65
+ },
66
+ "LOCATION":{
67
+ "p":1.0,
68
+ "r":1.0,
69
+ "f":1.0
70
+ },
71
+ "PERSON":{
72
+ "p":1.0,
73
+ "r":1.0,
74
+ "f":1.0
75
+ },
76
+ "US_PASSPORT":{
77
+ "p":1.0,
78
+ "r":1.0,
79
+ "f":1.0
80
+ },
81
+ "PHONE_NUMBER":{
82
+ "p":1.0,
83
+ "r":1.0,
84
+ "f":1.0
85
+ },
86
+ "EMAIL_ADDRESS":{
87
+ "p":1.0,
88
+ "r":1.0,
89
+ "f":1.0
90
+ },
91
+ "URL":{
92
+ "p":1.0,
93
+ "r":1.0,
94
+ "f":1.0
95
+ },
96
+ "IBAN_CODE":{
97
+ "p":1.0,
98
+ "r":1.0,
99
+ "f":1.0
100
+ },
101
+ "US_BANK_NUMBER":{
102
+ "p":1.0,
103
+ "r":1.0,
104
+ "f":1.0
105
+ },
106
+ "IP_ADDRESS":{
107
+ "p":1.0,
108
+ "r":1.0,
109
+ "f":1.0
110
+ },
111
+ "US_DRIVER_LICENSE":{
112
+ "p":1.0,
113
+ "r":1.0,
114
+ "f":1.0
115
+ },
116
+ "NRP":{
117
+ "p":1.0,
118
+ "r":1.0,
119
+ "f":1.0
120
+ },
121
+ "US_ITIN":{
122
+ "p":1.0,
123
+ "r":1.0,
124
+ "f":1.0
125
+ },
126
+ "US_SSN":{
127
+ "p":1.0,
128
+ "r":1.0,
129
+ "f":1.0
130
+ }
131
+ },
132
+ "transformer_loss":0.00000975,
133
+ "ner_loss":0.0000124705
134
+ },
135
+ "requirements":[
136
+ "spacy-transformers>=1.3.5,<1.4.0"
137
+ ]
138
+ }
ner/cfg ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "moves":null,
3
+ "update_with_oracle_cut_size":100,
4
+ "multitasks":[
5
+
6
+ ],
7
+ "min_action_freq":1,
8
+ "learn_tokens":false,
9
+ "beam_width":1,
10
+ "beam_density":0.0,
11
+ "beam_update_prob":0.0,
12
+ "incorrect_spans_key":null
13
+ }
ner/model ADDED
Binary file (295 kB). View file
 
ner/moves ADDED
@@ -0,0 +1 @@
 
 
1
+ ��moves��{"0":{},"1":{"LOCATION":231,"PHONE_NUMBER":118,"CREDIT_CARD":109,"DATE_TIME":107,"US_SSN":100,"US_ITIN":100,"PERSON":84,"EMAIL_ADDRESS":35,"URL":33,"IP_ADDRESS":29,"NRP":27,"IBAN_CODE":21,"US_PASSPORT":20,"US_DRIVER_LICENSE":20,"US_BANK_NUMBER":20},"2":{"LOCATION":231,"PHONE_NUMBER":118,"CREDIT_CARD":109,"DATE_TIME":107,"US_SSN":100,"US_ITIN":100,"PERSON":84,"EMAIL_ADDRESS":35,"URL":33,"IP_ADDRESS":29,"NRP":27,"IBAN_CODE":21,"US_PASSPORT":20,"US_DRIVER_LICENSE":20,"US_BANK_NUMBER":20},"3":{"LOCATION":231,"PHONE_NUMBER":118,"CREDIT_CARD":109,"DATE_TIME":107,"US_SSN":100,"US_ITIN":100,"PERSON":84,"EMAIL_ADDRESS":35,"URL":33,"IP_ADDRESS":29,"NRP":27,"IBAN_CODE":21,"US_PASSPORT":20,"US_DRIVER_LICENSE":20,"US_BANK_NUMBER":20},"4":{"LOCATION":231,"PHONE_NUMBER":118,"CREDIT_CARD":109,"DATE_TIME":107,"US_SSN":100,"US_ITIN":100,"PERSON":84,"EMAIL_ADDRESS":35,"URL":33,"IP_ADDRESS":29,"NRP":27,"IBAN_CODE":21,"US_PASSPORT":20,"US_DRIVER_LICENSE":20,"US_BANK_NUMBER":20,"":1},"5":{"":1}}�cfg��neg_key�
tokenizer ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ ��prefix_search� �^§|^%|^=|^—|^–|^\+(?![0-9])|^…|^……|^,|^:|^;|^\!|^\?|^¿|^؟|^¡|^\(|^\)|^\[|^\]|^\{|^\}|^<|^>|^_|^#|^\*|^&|^。|^?|^!|^,|^、|^;|^:|^~|^·|^।|^،|^۔|^؛|^٪|^\.\.+|^…|^\'|^"|^”|^“|^`|^‘|^´|^’|^‚|^,|^„|^»|^«|^「|^」|^『|^』|^(|^)|^〔|^〕|^【|^】|^《|^》|^〈|^〉|^〈|^〉|^⟦|^⟧|^\$|^£|^€|^¥|^฿|^US\$|^C\$|^A\$|^₽|^﷼|^₴|^₠|^₡|^₢|^₣|^₤|^₥|^₦|^₧|^₨|^₩|^₪|^₫|^€|^₭|^₮|^₯|^₰|^₱|^₲|^₳|^₴|^₵|^₶|^₷|^₸|^₹|^₺|^₻|^₼|^₽|^₾|^₿|^[\u00A6\u00A9\u00AE\u00B0\u0482\u058D\u058E\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u09FA\u0B70\u0BF3-\u0BF8\u0BFA\u0C7F\u0D4F\u0D79\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116\u2117\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u214A\u214C\u214D\u214F\u218A\u218B\u2195-\u2199\u219C-\u219F\u21A1\u21A2\u21A4\u21A5\u21A7-\u21AD\u21AF-\u21CD\u21D0\u21D1\u21D3\u21D5-\u21F3\u2300-\u2307\u230C-\u231F\u2322-\u2328\u232B-\u237B\u237D-\u239A\u23B4-\u23DB\u23E2-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u25B6\u25B8-\u25C0\u25C2-\u25F7\u2600-\u266E\u2670-\u2767\u2794-\u27BF\u2800-\u28FF\u2B00-\u2B2F\u2B45\u2B46\u2B4D-\u2B73\u2B76-\u2B95\u2B98-\u2BC8\u2BCA-\u2BFE\u2CE5-\u2CEA\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u32FE\u3300-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA828-\uA82B\uA836\uA837\uA839\uAA77-\uAA79\uFDFD\uFFE4\uFFE8\uFFED\uFFEE\uFFFC\uFFFD\U00010137-\U0001013F\U00010179-\U00010189\U0001018C-\U0001018E\U00010190-\U0001019B\U000101A0\U000101D0-\U000101FC\U00010877\U00010878\U00010AC8\U0001173F\U00016B3C-\U00016B3F\U00016B45\U0001BC9C\U0001D000-\U0001D0F5\U0001D100-\U0001D126\U0001D129-\U0001D164\U0001D16A-\U0001D16C\U0001D183\U0001D184\U0001D18C-\U0001D1A9\U0001D1AE-\U0001D1E8\U0001D200-\U0001D241\U0001D245\U0001D300-\U0001D356\U0001D800-\U0001D9FF\U0001DA37-\U0001DA3A\U0001DA6D-\U0001DA74\U0001DA76-\U0001DA83\U0001DA85\U0001DA86\U0001ECAC\U0001F000-\U0001F02B\U0001F030-\U0001F093\U0001F0A0-\U0001F0AE\U0001F0B1-\U0001F0BF\U0001F0C1-\U0001F0CF\U0001F0D1-\U0001F0F5\U0001F110-\U0001F16B\U0001F170-\U0001F1AC\U0001F1E6-\U0001F202\U0001F210-\U0001F23B\U0001F240-\U0001F248\U0001F250\U0001F251\U0001F260-\U0001F265\U0001F300-\U0001F3FA\U0001F400-\U0001F6D4\U0001F6E0-\U0001F6EC\U0001F6F0-\U0001F6F9\U0001F700-\U0001F773\U0001F780-\U0001F7D8\U0001F800-\U0001F80B\U0001F810-\U0001F847\U0001F850-\U0001F859\U0001F860-\U0001F887\U0001F890-\U0001F8AD\U0001F900-\U0001F90B\U0001F910-\U0001F93E\U0001F940-\U0001F970\U0001F973-\U0001F976\U0001F97A\U0001F97C-\U0001F9A2\U0001F9B0-\U0001F9B9\U0001F9C0-\U0001F9C2\U0001F9D0-\U0001F9FF\U0001FA60-\U0001FA6D]�suffix_search�2�…$|……$|,$|:$|;$|\!$|\?$|¿$|؟$|¡$|\($|\)$|\[$|\]$|\{$|\}$|<$|>$|_$|#$|\*$|&$|。$|?$|!$|,$|、$|;$|:$|~$|·$|।$|،$|۔$|؛$|٪$|\.\.+$|…$|\'$|"$|”$|“$|`$|‘$|´$|’$|‚$|,$|„$|»$|«$|「$|」$|『$|』$|($|)$|〔$|〕$|【$|】$|《$|》$|〈$|〉$|〈$|〉$|⟦$|⟧$|[\u00A6\u00A9\u00AE\u00B0\u0482\u058D\u058E\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u09FA\u0B70\u0BF3-\u0BF8\u0BFA\u0C7F\u0D4F\u0D79\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116\u2117\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u214A\u214C\u214D\u214F\u218A\u218B\u2195-\u2199\u219C-\u219F\u21A1\u21A2\u21A4\u21A5\u21A7-\u21AD\u21AF-\u21CD\u21D0\u21D1\u21D3\u21D5-\u21F3\u2300-\u2307\u230C-\u231F\u2322-\u2328\u232B-\u237B\u237D-\u239A\u23B4-\u23DB\u23E2-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u25B6\u25B8-\u25C0\u25C2-\u25F7\u2600-\u266E\u2670-\u2767\u2794-\u27BF\u2800-\u28FF\u2B00-\u2B2F\u2B45\u2B46\u2B4D-\u2B73\u2B76-\u2B95\u2B98-\u2BC8\u2BCA-\u2BFE\u2CE5-\u2CEA\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u32FE\u3300-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA828-\uA82B\uA836\uA837\uA839\uAA77-\uAA79\uFDFD\uFFE4\uFFE8\uFFED\uFFEE\uFFFC\uFFFD\U00010137-\U0001013F\U00010179-\U00010189\U0001018C-\U0001018E\U00010190-\U0001019B\U000101A0\U000101D0-\U000101FC\U00010877\U00010878\U00010AC8\U0001173F\U00016B3C-\U00016B3F\U00016B45\U0001BC9C\U0001D000-\U0001D0F5\U0001D100-\U0001D126\U0001D129-\U0001D164\U0001D16A-\U0001D16C\U0001D183\U0001D184\U0001D18C-\U0001D1A9\U0001D1AE-\U0001D1E8\U0001D200-\U0001D241\U0001D245\U0001D300-\U0001D356\U0001D800-\U0001D9FF\U0001DA37-\U0001DA3A\U0001DA6D-\U0001DA74\U0001DA76-\U0001DA83\U0001DA85\U0001DA86\U0001ECAC\U0001F000-\U0001F02B\U0001F030-\U0001F093\U0001F0A0-\U0001F0AE\U0001F0B1-\U0001F0BF\U0001F0C1-\U0001F0CF\U0001F0D1-\U0001F0F5\U0001F110-\U0001F16B\U0001F170-\U0001F1AC\U0001F1E6-\U0001F202\U0001F210-\U0001F23B\U0001F240-\U0001F248\U0001F250\U0001F251\U0001F260-\U0001F265\U0001F300-\U0001F3FA\U0001F400-\U0001F6D4\U0001F6E0-\U0001F6EC\U0001F6F0-\U0001F6F9\U0001F700-\U0001F773\U0001F780-\U0001F7D8\U0001F800-\U0001F80B\U0001F810-\U0001F847\U0001F850-\U0001F859\U0001F860-\U0001F887\U0001F890-\U0001F8AD\U0001F900-\U0001F90B\U0001F910-\U0001F93E\U0001F940-\U0001F970\U0001F973-\U0001F976\U0001F97A\U0001F97C-\U0001F9A2\U0001F9B0-\U0001F9B9\U0001F9C0-\U0001F9C2\U0001F9D0-\U0001F9FF\U0001FA60-\U0001FA6D]$|'s$|'S$|’s$|’S$|—$|–$|(?<=[0-9])\+$|(?<=°[FfCcKk])\.$|(?<=[0-9])(?:\$|£|€|¥|฿|US\$|C\$|A\$|₽|﷼|₴|₠|₡|₢|₣|₤|₥|₦|₧|₨|₩|₪|₫|€|₭|₮|₯|₰|₱|₲|₳|₴|₵|₶|₷|₸|₹|₺|₻|₼|₽|₾|₿)$|(?<=[0-9])(?:km|km²|km³|m|m²|m³|dm|dm²|dm³|cm|cm²|cm³|mm|mm²|mm³|ha|µm|nm|yd|in|ft|kg|g|mg|µg|t|lb|oz|m/s|km/h|kmh|mph|hPa|Pa|mbar|mb|MB|kb|KB|gb|GB|tb|TB|T|G|M|K|%|км|км²|км³|м|м²|м³|дм|дм²|дм³|см|см²|см³|мм|мм²|мм³|нм|кг|г|мг|м/с|км/ч|кПа|Па|мбар|Кб|КБ|кб|Мб|МБ|мб|Гб|ГБ|гб|Тб|ТБ|тбكم|كم²|كم³|م|م²|م³|سم|سم²|سم³|مم|مم²|مم³|كم|غرام|جرام|جم|كغ|ملغ|كوب|اكواب)$|(?<=[0-9a-z\uFF41-\uFF5A\u00DF-\u00F6\u00F8-\u00FF\u0101\u0103\u0105\u0107\u0109\u010B\u010D\u010F\u0111\u0113\u0115\u0117\u0119\u011B\u011D\u011F\u0121\u0123\u0125\u0127\u0129\u012B\u012D\u012F\u0131\u0133\u0135\u0137\u0138\u013A\u013C\u013E\u0140\u0142\u0144\u0146\u0148\u0149\u014B\u014D\u014F\u0151\u0153\u0155\u0157\u0159\u015B\u015D\u015F\u0161\u0163\u0165\u0167\u0169\u016B\u016D\u016F\u0171\u0173\u0175\u0177\u017A\u017C\u017E\u017F\u0180\u0183\u0185\u0188\u018C\u018D\u0192\u0195\u0199-\u019B\u019E\u01A1\u01A3\u01A5\u01A8\u01AA\u01AB\u01AD\u01B0\u01B4\u01B6\u01B9\u01BA\u01BD-\u01BF\u01C6\u01C9\u01CC\u01CE\u01D0\u01D2\u01D4\u01D6\u01D8\u01DA\u01DC\u01DD\u01DF\u01E1\u01E3\u01E5\u01E7\u01E9\u01EB\u01ED\u01EF\u01F0\u01F3\u01F5\u01F9\u01FB\u01FD\u01FF\u0201\u0203\u0205\u0207\u0209\u020B\u020D\u020F\u0211\u0213\u0215\u0217\u0219\u021B\u021D\u021F\u0221\u0223\u0225\u0227\u0229\u022B\u022D\u022F\u0231\u0233-\u0239\u023C\u023F\u0240\u0242\u0247\u0249\u024B\u024D\u024F\u2C61\u2C65\u2C66\u2C68\u2C6A\u2C6C\u2C71\u2C73\u2C74\u2C76-\u2C7B\uA723\uA725\uA727\uA729\uA72B\uA72D\uA72F-\uA731\uA733\uA735\uA737\uA739\uA73B\uA73D\uA73F\uA741\uA743\uA745\uA747\uA749\uA74B\uA74D\uA74F\uA751\uA753\uA755\uA757\uA759\uA75B\uA75D\uA75F\uA761\uA763\uA765\uA767\uA769\uA76B\uA76D\uA76F\uA771-\uA778\uA77A\uA77C\uA77F\uA781\uA783\uA785\uA787\uA78C\uA78E\uA791\uA793-\uA795\uA797\uA799\uA79B\uA79D\uA79F\uA7A1\uA7A3\uA7A5\uA7A7\uA7A9\uA7AF\uA7B5\uA7B7\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E01\u1E03\u1E05\u1E07\u1E09\u1E0B\u1E0D\u1E0F\u1E11\u1E13\u1E15\u1E17\u1E19\u1E1B\u1E1D\u1E1F\u1E21\u1E23\u1E25\u1E27\u1E29\u1E2B\u1E2D\u1E2F\u1E31\u1E33\u1E35\u1E37\u1E39\u1E3B\u1E3D\u1E3F\u1E41\u1E43\u1E45\u1E47\u1E49\u1E4B\u1E4D\u1E4F\u1E51\u1E53\u1E55\u1E57\u1E59\u1E5B\u1E5D\u1E5F\u1E61\u1E63\u1E65\u1E67\u1E69\u1E6B\u1E6D\u1E6F\u1E71\u1E73\u1E75\u1E77\u1E79\u1E7B\u1E7D\u1E7F\u1E81\u1E83\u1E85\u1E87\u1E89\u1E8B\u1E8D\u1E8F\u1E91\u1E93\u1E95-\u1E9D\u1E9F\u1EA1\u1EA3\u1EA5\u1EA7\u1EA9\u1EAB\u1EAD\u1EAF\u1EB1\u1EB3\u1EB5\u1EB7\u1EB9\u1EBB\u1EBD\u1EBF\u1EC1\u1EC3\u1EC5\u1EC7\u1EC9\u1ECB\u1ECD\u1ECF\u1ED1\u1ED3\u1ED5\u1ED7\u1ED9\u1EDB\u1EDD\u1EDF\u1EE1\u1EE3\u1EE5\u1EE7\u1EE9\u1EEB\u1EED\u1EEF\u1EF1\u1EF3\u1EF5\u1EF7\u1EF9\u1EFB\u1EFD\u1EFFёа-яәөүҗңһα-ωάέίόώήύа-щюяіїєґѓѕјљњќѐѝ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F%²\-\+…|……|,|:|;|\!|\?|¿|؟|¡|\(|\)|\[|\]|\{|\}|<|>|_|#|\*|&|。|?|!|,|、|;|:|~|·|।|،|۔|؛|٪(?:\'"”“`‘´’‚,„»«「」『』()〔〕【】《》〈〉〈〉⟦⟧)])\.$|(?<=[A-Z\uFF21-\uFF3A\u00C0-\u00D6\u00D8-\u00DE\u0100\u0102\u0104\u0106\u0108\u010A\u010C\u010E\u0110\u0112\u0114\u0116\u0118\u011A\u011C\u011E\u0120\u0122\u0124\u0126\u0128\u012A\u012C\u012E\u0130\u0132\u0134\u0136\u0139\u013B\u013D\u013F\u0141\u0143\u0145\u0147\u014A\u014C\u014E\u0150\u0152\u0154\u0156\u0158\u015A\u015C\u015E\u0160\u0162\u0164\u0166\u0168\u016A\u016C\u016E\u0170\u0172\u0174\u0176\u0178\u0179\u017B\u017D\u0181\u0182\u0184\u0186\u0187\u0189-\u018B\u018E-\u0191\u0193\u0194\u0196-\u0198\u019C\u019D\u019F\u01A0\u01A2\u01A4\u01A6\u01A7\u01A9\u01AC\u01AE\u01AF\u01B1-\u01B3\u01B5\u01B7\u01B8\u01BC\u01C4\u01C7\u01CA\u01CD\u01CF\u01D1\u01D3\u01D5\u01D7\u01D9\u01DB\u01DE\u01E0\u01E2\u01E4\u01E6\u01E8\u01EA\u01EC\u01EE\u01F1\u01F4\u01F6-\u01F8\u01FA\u01FC\u01FE\u0200\u0202\u0204\u0206\u0208\u020A\u020C\u020E\u0210\u0212\u0214\u0216\u0218\u021A\u021C\u021E\u0220\u0222\u0224\u0226\u0228\u022A\u022C\u022E\u0230\u0232\u023A\u023B\u023D\u023E\u0241\u0243-\u0246\u0248\u024A\u024C\u024E\u2C60\u2C62-\u2C64\u2C67\u2C69\u2C6B\u2C6D-\u2C70\u2C72\u2C75\u2C7E\u2C7F\uA722\uA724\uA726\uA728\uA72A\uA72C\uA72E\uA732\uA734\uA736\uA738\uA73A\uA73C\uA73E\uA740\uA742\uA744\uA746\uA748\uA74A\uA74C\uA74E\uA750\uA752\uA754\uA756\uA758\uA75A\uA75C\uA75E\uA760\uA762\uA764\uA766\uA768\uA76A\uA76C\uA76E\uA779\uA77B\uA77D\uA77E\uA780\uA782\uA784\uA786\uA78B\uA78D\uA790\uA792\uA796\uA798\uA79A\uA79C\uA79E\uA7A0\uA7A2\uA7A4\uA7A6\uA7A8\uA7AA-\uA7AE\uA7B0-\uA7B4\uA7B6\uA7B8\u1E00\u1E02\u1E04\u1E06\u1E08\u1E0A\u1E0C\u1E0E\u1E10\u1E12\u1E14\u1E16\u1E18\u1E1A\u1E1C\u1E1E\u1E20\u1E22\u1E24\u1E26\u1E28\u1E2A\u1E2C\u1E2E\u1E30\u1E32\u1E34\u1E36\u1E38\u1E3A\u1E3C\u1E3E\u1E40\u1E42\u1E44\u1E46\u1E48\u1E4A\u1E4C\u1E4E\u1E50\u1E52\u1E54\u1E56\u1E58\u1E5A\u1E5C\u1E5E\u1E60\u1E62\u1E64\u1E66\u1E68\u1E6A\u1E6C\u1E6E\u1E70\u1E72\u1E74\u1E76\u1E78\u1E7A\u1E7C\u1E7E\u1E80\u1E82\u1E84\u1E86\u1E88\u1E8A\u1E8C\u1E8E\u1E90\u1E92\u1E94\u1E9E\u1EA0\u1EA2\u1EA4\u1EA6\u1EA8\u1EAA\u1EAC\u1EAE\u1EB0\u1EB2\u1EB4\u1EB6\u1EB8\u1EBA\u1EBC\u1EBE\u1EC0\u1EC2\u1EC4\u1EC6\u1EC8\u1ECA\u1ECC\u1ECE\u1ED0\u1ED2\u1ED4\u1ED6\u1ED8\u1EDA\u1EDC\u1EDE\u1EE0\u1EE2\u1EE4\u1EE6\u1EE8\u1EEA\u1EEC\u1EEE\u1EF0\u1EF2\u1EF4\u1EF6\u1EF8\u1EFA\u1EFC\u1EFEЁА-ЯӘӨҮҖҢҺΑ-ΩΆΈΊΌΏΉΎА-ЩЮЯІЇЄҐЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F][A-Z\uFF21-\uFF3A\u00C0-\u00D6\u00D8-\u00DE\u0100\u0102\u0104\u0106\u0108\u010A\u010C\u010E\u0110\u0112\u0114\u0116\u0118\u011A\u011C\u011E\u0120\u0122\u0124\u0126\u0128\u012A\u012C\u012E\u0130\u0132\u0134\u0136\u0139\u013B\u013D\u013F\u0141\u0143\u0145\u0147\u014A\u014C\u014E\u0150\u0152\u0154\u0156\u0158\u015A\u015C\u015E\u0160\u0162\u0164\u0166\u0168\u016A\u016C\u016E\u0170\u0172\u0174\u0176\u0178\u0179\u017B\u017D\u0181\u0182\u0184\u0186\u0187\u0189-\u018B\u018E-\u0191\u0193\u0194\u0196-\u0198\u019C\u019D\u019F\u01A0\u01A2\u01A4\u01A6\u01A7\u01A9\u01AC\u01AE\u01AF\u01B1-\u01B3\u01B5\u01B7\u01B8\u01BC\u01C4\u01C7\u01CA\u01CD\u01CF\u01D1\u01D3\u01D5\u01D7\u01D9\u01DB\u01DE\u01E0\u01E2\u01E4\u01E6\u01E8\u01EA\u01EC\u01EE\u01F1\u01F4\u01F6-\u01F8\u01FA\u01FC\u01FE\u0200\u0202\u0204\u0206\u0208\u020A\u020C\u020E\u0210\u0212\u0214\u0216\u0218\u021A\u021C\u021E\u0220\u0222\u0224\u0226\u0228\u022A\u022C\u022E\u0230\u0232\u023A\u023B\u023D\u023E\u0241\u0243-\u0246\u0248\u024A\u024C\u024E\u2C60\u2C62-\u2C64\u2C67\u2C69\u2C6B\u2C6D-\u2C70\u2C72\u2C75\u2C7E\u2C7F\uA722\uA724\uA726\uA728\uA72A\uA72C\uA72E\uA732\uA734\uA736\uA738\uA73A\uA73C\uA73E\uA740\uA742\uA744\uA746\uA748\uA74A\uA74C\uA74E\uA750\uA752\uA754\uA756\uA758\uA75A\uA75C\uA75E\uA760\uA762\uA764\uA766\uA768\uA76A\uA76C\uA76E\uA779\uA77B\uA77D\uA77E\uA780\uA782\uA784\uA786\uA78B\uA78D\uA790\uA792\uA796\uA798\uA79A\uA79C\uA79E\uA7A0\uA7A2\uA7A4\uA7A6\uA7A8\uA7AA-\uA7AE\uA7B0-\uA7B4\uA7B6\uA7B8\u1E00\u1E02\u1E04\u1E06\u1E08\u1E0A\u1E0C\u1E0E\u1E10\u1E12\u1E14\u1E16\u1E18\u1E1A\u1E1C\u1E1E\u1E20\u1E22\u1E24\u1E26\u1E28\u1E2A\u1E2C\u1E2E\u1E30\u1E32\u1E34\u1E36\u1E38\u1E3A\u1E3C\u1E3E\u1E40\u1E42\u1E44\u1E46\u1E48\u1E4A\u1E4C\u1E4E\u1E50\u1E52\u1E54\u1E56\u1E58\u1E5A\u1E5C\u1E5E\u1E60\u1E62\u1E64\u1E66\u1E68\u1E6A\u1E6C\u1E6E\u1E70\u1E72\u1E74\u1E76\u1E78\u1E7A\u1E7C\u1E7E\u1E80\u1E82\u1E84\u1E86\u1E88\u1E8A\u1E8C\u1E8E\u1E90\u1E92\u1E94\u1E9E\u1EA0\u1EA2\u1EA4\u1EA6\u1EA8\u1EAA\u1EAC\u1EAE\u1EB0\u1EB2\u1EB4\u1EB6\u1EB8\u1EBA\u1EBC\u1EBE\u1EC0\u1EC2\u1EC4\u1EC6\u1EC8\u1ECA\u1ECC\u1ECE\u1ED0\u1ED2\u1ED4\u1ED6\u1ED8\u1EDA\u1EDC\u1EDE\u1EE0\u1EE2\u1EE4\u1EE6\u1EE8\u1EEA\u1EEC\u1EEE\u1EF0\u1EF2\u1EF4\u1EF6\u1EF8\u1EFA\u1EFC\u1EFEЁА-ЯӘӨҮҖҢҺΑ-ΩΆΈΊΌΏΉΎА-ЩЮЯІЇЄҐЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])\.$�infix_finditer�>�\.\.+|…|[\u00A6\u00A9\u00AE\u00B0\u0482\u058D\u058E\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u09FA\u0B70\u0BF3-\u0BF8\u0BFA\u0C7F\u0D4F\u0D79\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116\u2117\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u214A\u214C\u214D\u214F\u218A\u218B\u2195-\u2199\u219C-\u219F\u21A1\u21A2\u21A4\u21A5\u21A7-\u21AD\u21AF-\u21CD\u21D0\u21D1\u21D3\u21D5-\u21F3\u2300-\u2307\u230C-\u231F\u2322-\u2328\u232B-\u237B\u237D-\u239A\u23B4-\u23DB\u23E2-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u25B6\u25B8-\u25C0\u25C2-\u25F7\u2600-\u266E\u2670-\u2767\u2794-\u27BF\u2800-\u28FF\u2B00-\u2B2F\u2B45\u2B46\u2B4D-\u2B73\u2B76-\u2B95\u2B98-\u2BC8\u2BCA-\u2BFE\u2CE5-\u2CEA\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u32FE\u3300-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA828-\uA82B\uA836\uA837\uA839\uAA77-\uAA79\uFDFD\uFFE4\uFFE8\uFFED\uFFEE\uFFFC\uFFFD\U00010137-\U0001013F\U00010179-\U00010189\U0001018C-\U0001018E\U00010190-\U0001019B\U000101A0\U000101D0-\U000101FC\U00010877\U00010878\U00010AC8\U0001173F\U00016B3C-\U00016B3F\U00016B45\U0001BC9C\U0001D000-\U0001D0F5\U0001D100-\U0001D126\U0001D129-\U0001D164\U0001D16A-\U0001D16C\U0001D183\U0001D184\U0001D18C-\U0001D1A9\U0001D1AE-\U0001D1E8\U0001D200-\U0001D241\U0001D245\U0001D300-\U0001D356\U0001D800-\U0001D9FF\U0001DA37-\U0001DA3A\U0001DA6D-\U0001DA74\U0001DA76-\U0001DA83\U0001DA85\U0001DA86\U0001ECAC\U0001F000-\U0001F02B\U0001F030-\U0001F093\U0001F0A0-\U0001F0AE\U0001F0B1-\U0001F0BF\U0001F0C1-\U0001F0CF\U0001F0D1-\U0001F0F5\U0001F110-\U0001F16B\U0001F170-\U0001F1AC\U0001F1E6-\U0001F202\U0001F210-\U0001F23B\U0001F240-\U0001F248\U0001F250\U0001F251\U0001F260-\U0001F265\U0001F300-\U0001F3FA\U0001F400-\U0001F6D4\U0001F6E0-\U0001F6EC\U0001F6F0-\U0001F6F9\U0001F700-\U0001F773\U0001F780-\U0001F7D8\U0001F800-\U0001F80B\U0001F810-\U0001F847\U0001F850-\U0001F859\U0001F860-\U0001F887\U0001F890-\U0001F8AD\U0001F900-\U0001F90B\U0001F910-\U0001F93E\U0001F940-\U0001F970\U0001F973-\U0001F976\U0001F97A\U0001F97C-\U0001F9A2\U0001F9B0-\U0001F9B9\U0001F9C0-\U0001F9C2\U0001F9D0-\U0001F9FF\U0001FA60-\U0001FA6D]|(?<=[0-9])[+\-\*^](?=[0-9-])|(?<=[a-z\uFF41-\uFF5A\u00DF-\u00F6\u00F8-\u00FF\u0101\u0103\u0105\u0107\u0109\u010B\u010D\u010F\u0111\u0113\u0115\u0117\u0119\u011B\u011D\u011F\u0121\u0123\u0125\u0127\u0129\u012B\u012D\u012F\u0131\u0133\u0135\u0137\u0138\u013A\u013C\u013E\u0140\u0142\u0144\u0146\u0148\u0149\u014B\u014D\u014F\u0151\u0153\u0155\u0157\u0159\u015B\u015D\u015F\u0161\u0163\u0165\u0167\u0169\u016B\u016D\u016F\u0171\u0173\u0175\u0177\u017A\u017C\u017E\u017F\u0180\u0183\u0185\u0188\u018C\u018D\u0192\u0195\u0199-\u019B\u019E\u01A1\u01A3\u01A5\u01A8\u01AA\u01AB\u01AD\u01B0\u01B4\u01B6\u01B9\u01BA\u01BD-\u01BF\u01C6\u01C9\u01CC\u01CE\u01D0\u01D2\u01D4\u01D6\u01D8\u01DA\u01DC\u01DD\u01DF\u01E1\u01E3\u01E5\u01E7\u01E9\u01EB\u01ED\u01EF\u01F0\u01F3\u01F5\u01F9\u01FB\u01FD\u01FF\u0201\u0203\u0205\u0207\u0209\u020B\u020D\u020F\u0211\u0213\u0215\u0217\u0219\u021B\u021D\u021F\u0221\u0223\u0225\u0227\u0229\u022B\u022D\u022F\u0231\u0233-\u0239\u023C\u023F\u0240\u0242\u0247\u0249\u024B\u024D\u024F\u2C61\u2C65\u2C66\u2C68\u2C6A\u2C6C\u2C71\u2C73\u2C74\u2C76-\u2C7B\uA723\uA725\uA727\uA729\uA72B\uA72D\uA72F-\uA731\uA733\uA735\uA737\uA739\uA73B\uA73D\uA73F\uA741\uA743\uA745\uA747\uA749\uA74B\uA74D\uA74F\uA751\uA753\uA755\uA757\uA759\uA75B\uA75D\uA75F\uA761\uA763\uA765\uA767\uA769\uA76B\uA76D\uA76F\uA771-\uA778\uA77A\uA77C\uA77F\uA781\uA783\uA785\uA787\uA78C\uA78E\uA791\uA793-\uA795\uA797\uA799\uA79B\uA79D\uA79F\uA7A1\uA7A3\uA7A5\uA7A7\uA7A9\uA7AF\uA7B5\uA7B7\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E01\u1E03\u1E05\u1E07\u1E09\u1E0B\u1E0D\u1E0F\u1E11\u1E13\u1E15\u1E17\u1E19\u1E1B\u1E1D\u1E1F\u1E21\u1E23\u1E25\u1E27\u1E29\u1E2B\u1E2D\u1E2F\u1E31\u1E33\u1E35\u1E37\u1E39\u1E3B\u1E3D\u1E3F\u1E41\u1E43\u1E45\u1E47\u1E49\u1E4B\u1E4D\u1E4F\u1E51\u1E53\u1E55\u1E57\u1E59\u1E5B\u1E5D\u1E5F\u1E61\u1E63\u1E65\u1E67\u1E69\u1E6B\u1E6D\u1E6F\u1E71\u1E73\u1E75\u1E77\u1E79\u1E7B\u1E7D\u1E7F\u1E81\u1E83\u1E85\u1E87\u1E89\u1E8B\u1E8D\u1E8F\u1E91\u1E93\u1E95-\u1E9D\u1E9F\u1EA1\u1EA3\u1EA5\u1EA7\u1EA9\u1EAB\u1EAD\u1EAF\u1EB1\u1EB3\u1EB5\u1EB7\u1EB9\u1EBB\u1EBD\u1EBF\u1EC1\u1EC3\u1EC5\u1EC7\u1EC9\u1ECB\u1ECD\u1ECF\u1ED1\u1ED3\u1ED5\u1ED7\u1ED9\u1EDB\u1EDD\u1EDF\u1EE1\u1EE3\u1EE5\u1EE7\u1EE9\u1EEB\u1EED\u1EEF\u1EF1\u1EF3\u1EF5\u1EF7\u1EF9\u1EFB\u1EFD\u1EFFёа-яәөүҗңһα-ωάέίόώήύа-щюяіїєґѓѕјљњќѐѝ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F\'"”“`‘´’‚,„»«「」『』()〔〕【】《》〈〉〈〉⟦⟧])\.(?=[A-Z\uFF21-\uFF3A\u00C0-\u00D6\u00D8-\u00DE\u0100\u0102\u0104\u0106\u0108\u010A\u010C\u010E\u0110\u0112\u0114\u0116\u0118\u011A\u011C\u011E\u0120\u0122\u0124\u0126\u0128\u012A\u012C\u012E\u0130\u0132\u0134\u0136\u0139\u013B\u013D\u013F\u0141\u0143\u0145\u0147\u014A\u014C\u014E\u0150\u0152\u0154\u0156\u0158\u015A\u015C\u015E\u0160\u0162\u0164\u0166\u0168\u016A\u016C\u016E\u0170\u0172\u0174\u0176\u0178\u0179\u017B\u017D\u0181\u0182\u0184\u0186\u0187\u0189-\u018B\u018E-\u0191\u0193\u0194\u0196-\u0198\u019C\u019D\u019F\u01A0\u01A2\u01A4\u01A6\u01A7\u01A9\u01AC\u01AE\u01AF\u01B1-\u01B3\u01B5\u01B7\u01B8\u01BC\u01C4\u01C7\u01CA\u01CD\u01CF\u01D1\u01D3\u01D5\u01D7\u01D9\u01DB\u01DE\u01E0\u01E2\u01E4\u01E6\u01E8\u01EA\u01EC\u01EE\u01F1\u01F4\u01F6-\u01F8\u01FA\u01FC\u01FE\u0200\u0202\u0204\u0206\u0208\u020A\u020C\u020E\u0210\u0212\u0214\u0216\u0218\u021A\u021C\u021E\u0220\u0222\u0224\u0226\u0228\u022A\u022C\u022E\u0230\u0232\u023A\u023B\u023D\u023E\u0241\u0243-\u0246\u0248\u024A\u024C\u024E\u2C60\u2C62-\u2C64\u2C67\u2C69\u2C6B\u2C6D-\u2C70\u2C72\u2C75\u2C7E\u2C7F\uA722\uA724\uA726\uA728\uA72A\uA72C\uA72E\uA732\uA734\uA736\uA738\uA73A\uA73C\uA73E\uA740\uA742\uA744\uA746\uA748\uA74A\uA74C\uA74E\uA750\uA752\uA754\uA756\uA758\uA75A\uA75C\uA75E\uA760\uA762\uA764\uA766\uA768\uA76A\uA76C\uA76E\uA779\uA77B\uA77D\uA77E\uA780\uA782\uA784\uA786\uA78B\uA78D\uA790\uA792\uA796\uA798\uA79A\uA79C\uA79E\uA7A0\uA7A2\uA7A4\uA7A6\uA7A8\uA7AA-\uA7AE\uA7B0-\uA7B4\uA7B6\uA7B8\u1E00\u1E02\u1E04\u1E06\u1E08\u1E0A\u1E0C\u1E0E\u1E10\u1E12\u1E14\u1E16\u1E18\u1E1A\u1E1C\u1E1E\u1E20\u1E22\u1E24\u1E26\u1E28\u1E2A\u1E2C\u1E2E\u1E30\u1E32\u1E34\u1E36\u1E38\u1E3A\u1E3C\u1E3E\u1E40\u1E42\u1E44\u1E46\u1E48\u1E4A\u1E4C\u1E4E\u1E50\u1E52\u1E54\u1E56\u1E58\u1E5A\u1E5C\u1E5E\u1E60\u1E62\u1E64\u1E66\u1E68\u1E6A\u1E6C\u1E6E\u1E70\u1E72\u1E74\u1E76\u1E78\u1E7A\u1E7C\u1E7E\u1E80\u1E82\u1E84\u1E86\u1E88\u1E8A\u1E8C\u1E8E\u1E90\u1E92\u1E94\u1E9E\u1EA0\u1EA2\u1EA4\u1EA6\u1EA8\u1EAA\u1EAC\u1EAE\u1EB0\u1EB2\u1EB4\u1EB6\u1EB8\u1EBA\u1EBC\u1EBE\u1EC0\u1EC2\u1EC4\u1EC6\u1EC8\u1ECA\u1ECC\u1ECE\u1ED0\u1ED2\u1ED4\u1ED6\u1ED8\u1EDA\u1EDC\u1EDE\u1EE0\u1EE2\u1EE4\u1EE6\u1EE8\u1EEA\u1EEC\u1EEE\u1EF0\u1EF2\u1EF4\u1EF6\u1EF8\u1EFA\u1EFC\u1EFEЁА-ЯӘӨҮҖҢҺΑ-ΩΆΈΊΌΏΉΎА-ЩЮЯІЇЄҐЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F\'"”“`‘´’‚,„»«「」『』()〔〕【】《》〈〉〈〉⟦⟧])|(?<=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F]),(?=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])|(?<=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F0-9])(?:-|–|—|--|---|——|~)(?=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])|(?<=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F0-9])[:<>=/](?=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])�token_match��url_match�
2
+ ��A�
3
+ � ��A� �'��A�'�''��A�''�'Cause��A�'CauseC�because�'Cos��A�'CosC�because�'Coz��A�'CozC�because�'Cuz��A�'CuzC�because�'S��A�'SC�'s�'bout��A�'boutC�about�'cause��A�'causeC�because�'cos��A�'cosC�because�'coz��A�'cozC�because�'cuz��A�'cuzC�because�'d��A�'d�'em��A�'emC�them�'ll��A�'llC�will�'nuff��A�'nuffC�enough�'re��A�'reC�are�'s��A�'sC�'s�(*_*)��A�(*_*)�(-8��A�(-8�(-:��A�(-:�(-;��A�(-;�(-_-)��A�(-_-)�(._.)��A�(._.)�(:��A�(:�(;��A�(;�(=��A�(=�(>_<)��A�(>_<)�(^_^)��A�(^_^)�(o:��A�(o:�(¬_¬)��A�(¬_¬)�(ಠ_ಠ)��A�(ಠ_ಠ)�(╯°□°)╯︵┻━┻��A�(╯°□°)╯︵┻━┻�)-:��A�)-:�):��A�):�-_-��A�-_-�-__-��A�-__-�._.��A�._.�0.0��A�0.0�0.o��A�0.o�0_0��A�0_0�0_o��A�0_o�10a.m.��A�10�A�a.m.C�a.m.�10am��A�10�A�amC�a.m.�10p.m.��A�10�A�p.m.C�p.m.�10pm��A�10�A�pmC�p.m.�11a.m.��A�11�A�a.m.C�a.m.�11am��A�11�A�amC�a.m.�11p.m.��A�11�A�p.m.C�p.m.�11pm��A�11�A�pmC�p.m.�12a.m.��A�12�A�a.m.C�a.m.�12am��A�12�A�amC�a.m.�12p.m.��A�12�A�p.m.C�p.m.�12pm��A�12�A�pmC�p.m.�1a.m.��A�1�A�a.m.C�a.m.�1am��A�1�A�amC�a.m.�1p.m.��A�1�A�p.m.C�p.m.�1pm��A�1�A�pmC�p.m.�2a.m.��A�2�A�a.m.C�a.m.�2am��A�2�A�amC�a.m.�2p.m.��A�2�A�p.m.C�p.m.�2pm��A�2�A�pmC�p.m.�3a.m.��A�3�A�a.m.C�a.m.�3am��A�3�A�amC�a.m.�3p.m.��A�3�A�p.m.C�p.m.�3pm��A�3�A�pmC�p.m.�4a.m.��A�4�A�a.m.C�a.m.�4am��A�4�A�amC�a.m.�4p.m.��A�4�A�p.m.C�p.m.�4pm��A�4�A�pmC�p.m.�5a.m.��A�5�A�a.m.C�a.m.�5am��A�5�A�amC�a.m.�5p.m.��A�5�A�p.m.C�p.m.�5pm��A�5�A�pmC�p.m.�6a.m.��A�6�A�a.m.C�a.m.�6am��A�6�A�amC�a.m.�6p.m.��A�6�A�p.m.C�p.m.�6pm��A�6�A�pmC�p.m.�7a.m.��A�7�A�a.m.C�a.m.�7am��A�7�A�amC�a.m.�7p.m.��A�7�A�p.m.C�p.m.�7pm��A�7�A�pmC�p.m.�8)��A�8)�8-)��A�8-)�8-D��A�8-D�8D��A�8D�8a.m.��A�8�A�a.m.C�a.m.�8am��A�8�A�amC�a.m.�8p.m.��A�8�A�p.m.C�p.m.�8pm��A�8�A�pmC�p.m.�9a.m.��A�9�A�a.m.C�a.m.�9am��A�9�A�amC�a.m.�9p.m.��A�9�A�p.m.C�p.m.�9pm��A�9�A�pmC�p.m.�:'(��A�:'(�:')��A�:')�:'-(��A�:'-(�:'-)��A�:'-)�:(��A�:(�:((��A�:((�:(((��A�:(((�:()��A�:()�:)��A�:)�:))��A�:))�:)))��A�:)))�:*��A�:*�:-(��A�:-(�:-((��A�:-((�:-(((��A�:-(((�:-)��A�:-)�:-))��A�:-))�:-)))��A�:-)))�:-*��A�:-*�:-/��A�:-/�:-0��A�:-0�:-3��A�:-3�:->��A�:->�:-D��A�:-D�:-O��A�:-O�:-P��A�:-P�:-X��A�:-X�:-]��A�:-]�:-o��A�:-o�:-p��A�:-p�:-x��A�:-x�:-|��A�:-|�:-}��A�:-}�:/��A�:/�:0��A�:0�:1��A�:1�:3��A�:3�:>��A�:>�:D��A�:D�:O��A�:O�:P��A�:P�:X��A�:X�:]��A�:]�:o��A�:o�:o)��A�:o)�:p��A�:p�:x��A�:x�:|��A�:|�:}��A�:}�:’(��A�:’(�:’)��A�:’)�:’-(��A�:’-(�:’-)��A�:’-)�;)��A�;)�;-)��A�;-)�;-D��A�;-D�;D��A�;D�;_;��A�;_;�<.<��A�<.<�</3��A�</3�<3��A�<3�<33��A�<33�<333��A�<333�<space>��A�<space>�=(��A�=(�=)��A�=)�=/��A�=/�=3��A�=3�=D��A�=D�=[��A�=[�=]��A�=]�=|��A�=|�>.<��A�>.<�>.>��A�>.>�>:(��A�>:(�>:o��A�>:o�><(((*>��A�><(((*>�@_@��A�@_@�Adm.��A�Adm.�Ain't��A�Ai�A�n'tC�not�Aint��A�Ai�A�ntC�not�Ain’t��A�Ai�A�n’tC�not�Ak.��A�Ak.C�Alaska�Ala.��A�Ala.C�Alabama�Apr.��A�Apr.C�April�Aren't��A�AreC�are�A�n'tC�not�Arent��A�AreC�are�A�ntC�not�Aren’t��A�AreC�are�A�n’tC�not�Ariz.��A�Ariz.C�Arizona�Ark.��A�Ark.C�Arkansas�Aug.��A�Aug.C�August�Bros.��A�Bros.�C'mon��A�C'mC�come�A�on�C++��A�C++�Calif.��A�Calif.C�California�Can't��A�CaC�can�A�n'tC�not�Can't've��A�CaC�can�A�n'tC�not�A�'veC�have�Cannot��A�CanC�can�A�not�Cant��A�CaC�can�A�ntC�not�Cantve��A�CaC�can�A�ntC�not�A�veC�have�Can’t��A�CaC�can�A�n’tC�not�Can’t’ve��A�CaC�can�A�n’tC�not�A�’veC�have�Co.��A�Co.�Colo.��A�Colo.C�Colorado�Conn.��A�Conn.C�Connecticut�Corp.��A�Corp.�Could've��A�CouldC�could�A�'ve�Couldn't��A�CouldC�could�A�n'tC�not�Couldn't've��A�CouldC�could�A�n'tC�not�A�'veC�have�Couldnt��A�CouldC�could�A�ntC�not�Couldntve��A�CouldC�could�A�ntC�not�A�veC�have�Couldn’t��A�CouldC�could�A�n’tC�not�Couldn’t’ve��A�CouldC�could�A�n’tC�not�A�’veC�have�Couldve��A�CouldC�could�A�ve�Could’ve��A�CouldC�could�A�’ve�C’mon��A�C’mC�come�A�on�D.C.��A�D.C.�Daren't��A�DareC�dare�A�n'tC�not�Darent��A�DareC�dare�A�ntC�not�Daren’t��A�DareC�dare�A�n’tC�not�Dec.��A�Dec.C�December�Del.��A�Del.C�Delaware�Didn't��A�DidC�do�A�n'tC�not�Didn't've��A�DidC�do�A�n'tC�not�A�'veC�have�Didnt��A�DidC�do�A�ntC�not�Didntve��A�DidC�do�A�ntC�not�A�veC�have�Didn’t��A�DidC�do�A�n’tC�not�Didn’t’ve��A�DidC�do�A�n’tC�not�A�’veC�have�Doesn't��A�DoesC�does�A�n'tC�not�Doesn't've��A�DoesC�does�A�n'tC�not�A�'veC�have�Doesnt��A�DoesC�does�A�ntC�not�Doesntve��A�DoesC�does�A�ntC�not�A�veC�have�Doesn’t��A�DoesC�does�A�n’tC�not�Doesn’t’ve��A�DoesC�does�A�n’tC�not�A�’veC�have�Doin��A�DoinC�doing�Doin'��A�Doin'C�doing�Doin’��A�Doin’C�doing�Don't��A�DoC�do�A�n'tC�not�Don't've��A�DoC�do�A�n'tC�not�A�'veC�have�Dont��A�DoC�do�A�ntC�not�Dontve��A�DoC�do�A�ntC�not�A�veC�have�Don’t��A�DoC�do�A�n’tC�not�Don’t’ve��A�DoC�do�A�n’tC�not�A�’veC�have�Dr.��A�Dr.�E.G.��A�E.G.�E.g.��A�E.g.�Feb.��A�Feb.C�February�Fla.��A�Fla.C�Florida�Ga.��A�Ga.C�Georgia�Gen.��A�Gen.�Goin��A�GoinC�going�Goin'��A�Goin'C�going�Goin’��A�Goin’C�going�Gonna��A�GonC�going�A�naC�to�Gotta��A�GotC�got�A�taC�to�Gov.��A�Gov.�Hadn't��A�HadC�have�A�n'tC�not�Hadn't've��A�HadC�have�A�n'tC�not�A�'veC�have�Hadnt��A�HadC�have�A�ntC�not�Hadntve��A�HadC�have�A�ntC�not�A�veC�have�Hadn’t��A�HadC�have�A�n’tC�not�Hadn’t’ve��A�HadC�have�A�n’tC�not�A�’veC�have�Hasn't��A�HasC�has�A�n'tC�not�Hasnt��A�HasC�has�A�ntC�not�Hasn’t��A�HasC�has�A�n’tC�not�Haven't��A�HaveC�have�A�n'tC�not�Havent��A�HaveC�have�A�ntC�not�Haven’t��A�HaveC�have�A�n’tC�not�Havin��A�HavinC�having�Havin'��A�Havin'C�having�Havin’��A�Havin’C�having�He'd��A�HeC�he�A�'dC�'d�He'd've��A�HeC�he�A�'dC�would�A�'veC�have�He'll��A�HeC�he�A�'llC�will�He'll've��A�HeC�he�A�'llC�will�A�'veC�have�He's��A�HeC�he�A�'sC�'s�Hed��A�HeC�he�A�dC�'d�Hedve��A�HeC�he�A�dC�would�A�veC�have�Hellve��A�HeC�he�A�llC�will�A�veC�have�Hes��A�HeC�he�A�s�He’d��A�HeC�he�A�’dC�'d�He’d’ve��A�HeC�he�A�’dC�would�A�’veC�have�He’ll��A�HeC�he�A�’llC�will�He’ll’ve��A�HeC�he�A�’llC�will�A�’veC�have�He’s��A�HeC�he�A�’sC�'s�How'd��A�HowC�how�A�'dC�'d�How'd've��A�HowC�how�A�'dC�would�A�'veC�have�How'd'y��A�HowC�how�A�'d�A�'yC�you�How'll��A�HowC�how�A�'llC�will�How'll've��A�HowC�how�A�'llC�will�A�'veC�have�How're��A�HowC�how�A�'reC�are�How's��A�HowC�how�A�'sC�'s�How've��A�HowC�how�A�'ve�Howd��A�HowC�how�A�dC�'d�Howdve��A�HowC�how�A�dC�would�A�veC�have�Howll��A�HowC�how�A�llC�will�Howllve��A�HowC�how�A�llC�will�A�veC�have�Howre��A�HowC�how�A�reC�are�Hows��A�HowC�how�A�s�Howve��A�How�A�veC�have�How’d��A�HowC�how�A�’dC�'d�How’d’ve��A�HowC�how�A�’dC�would�A�’veC�have�How’d’y��A�HowC�how�A�’d�A�’yC�you�How’ll��A�HowC�how�A�’llC�will�How’ll’ve��A�HowC�how�A�’llC�will�A�’veC�have�How’re��A�HowC�how�A�’reC�are�How’s��A�HowC�how�A�’sC�'s�How’ve��A�HowC�how�A�’ve�I'd��A�IC�i�A�'dC�'d�I'd've��A�IC�i�A�'dC�would�A�'veC�have�I'll��A�IC�i�A�'llC�will�I'll've��A�IC�i�A�'llC�will�A�'veC�have�I'm��A�IC�i�A�'mC�am�I'ma��A�IC�i�A�'mC�am�A�aC�gonna�I've��A�IC�i�A�'veC�have�I.E.��A�I.E.�I.e.��A�I.e.�Ia.��A�Ia.C�Iowa�Id��A�IC�i�A�dC�'d�Id.��A�Id.C�Idaho�Idve��A�IC�i�A�dC�would�A�veC�have�Ill.��A�Ill.C�Illinois�Illve��A�IC�i�A�llC�will�A�veC�have�Im��A�IC�i�A�m�Ima��A�IC�i�A�mC�am�A�aC�gonna�Inc.��A�Inc.�Ind.��A�Ind.C�Indiana�Isn't��A�IsC�is�A�n'tC�not�Isnt��A�IsC�is�A�ntC�not�Isn’t��A�IsC�is�A�n’tC�not�It'd��A�ItC�it�A�'dC�'d�It'd've��A�ItC�it�A�'dC�would�A�'veC�have�It'll��A�ItC�it�A�'llC�will�It'll've��A�ItC�it�A�'llC�will�A�'veC�have�It's��A�ItC�it�A�'sC�'s�Itd��A�ItC�it�A�dC�'d�Itdve��A�ItC�it�A�dC�would�A�veC�have�Itll��A�ItC�it�A�llC�will�Itllve��A�ItC�it�A�llC�will�A�veC�have�It’d��A�ItC�it�A�’dC�'d�It’d’ve��A�ItC�it�A�’dC�would�A�’veC�have�It’ll��A�ItC�it�A�’llC�will�It’ll’ve��A�ItC�it�A�’llC�will�A�’veC�have�It’s��A�ItC�it�A�’sC�'s�Ive��A�IC�i�A�veC�have�I’d��A�IC�i�A�’dC�'d�I’d’ve��A�IC�i�A�’dC�would�A�’veC�have�I’ll��A�IC�i�A�’llC�will�I’ll’ve��A�IC�i�A�’llC�will�A�’veC�have�I’m��A�IC�i�A�’mC�am�I’ma��A�IC�i�A�’mC�am�A�aC�gonna�I’ve��A�IC�i�A�’veC�have�Jan.��A�Jan.C�January�Jr.��A�Jr.�Jul.��A�Jul.C�July�Jun.��A�Jun.C�June�Kan.��A�Kan.C�Kansas�Kans.��A�Kans.C�Kansas�Ky.��A�Ky.C�Kentucky�La.��A�La.C�Louisiana�Let's��A�LetC�let�A�'sC�us�Let’s��A�LetC�let�A�’sC�us�Lovin��A�LovinC�loving�Lovin'��A�Lovin'C�loving�Lovin’��A�Lovin’C�loving�Ltd.��A�Ltd.�Ma'am��A�Ma'amC�madam�Mar.��A�Mar.C�March�Mass.��A�Mass.C�Massachusetts�Mayn't��A�MayC�may�A�n'tC�not�Mayn't've��A�MayC�may�A�n'tC�not�A�'veC�have�Maynt��A�MayC�may�A�ntC�not�Mayntve��A�MayC�may�A�ntC�not�A�veC�have�Mayn’t��A�MayC�may�A�n’tC�not�Mayn’t’ve��A�MayC�may�A�n’tC�not�A�’veC�have�Ma’am��A�Ma’amC�madam�Md.��A�Md.�Messrs.��A�Messrs.�Mich.��A�Mich.C�Michigan�Might've��A�MightC�might�A�'ve�Mightn't��A�MightC�might�A�n'tC�not�Mightn't've��A�MightC�might�A�n'tC�not�A�'veC�have�Mightnt��A�MightC�might�A�ntC�not�Mightntve��A�MightC�might�A�ntC�not�A�veC�have�Mightn’t��A�MightC�might�A�n’tC�not�Mightn’t’ve��A�MightC�might�A�n’tC�not�A�’veC�have�Mightve��A�MightC�might�A�ve�Might’ve��A�MightC�might�A�’ve�Minn.��A�Minn.C�Minnesota�Miss.��A�Miss.C�Mississippi�Mo.��A�Mo.�Mont.��A�Mont.�Mr.��A�Mr.�Mrs.��A�Mrs.�Ms.��A�Ms.�Mt.��A�Mt.C�Mount�Must've��A�MustC�must�A�'ve�Mustn't��A�MustC�must�A�n'tC�not�Mustn't've��A�MustC�must�A�n'tC�not�A�'veC�have�Mustnt��A�MustC�must�A�ntC�not�Mustntve��A�MustC�must�A�ntC�not�A�veC�have�Mustn’t��A�MustC�must�A�n’tC�not�Mustn’t’ve��A�MustC�must�A�n’tC�not�A�’veC�have�Mustve��A�MustC�must�A�ve�Must’ve��A�MustC�must�A�’ve�N.C.��A�N.C.C�North Carolina�N.D.��A�N.D.C�North Dakota�N.H.��A�N.H.C�New Hampshire�N.J.��A�N.J.C�New Jersey�N.M.��A�N.M.C�New Mexico�N.Y.��A�N.Y.C�New York�Neb.��A�Neb.C�Nebraska�Nebr.��A�Nebr.C�Nebraska�Needn't��A�NeedC�need�A�n'tC�not�Needn't've��A�NeedC�need�A�n'tC�not�A�'veC�have�Neednt��A�NeedC�need�A�ntC�not�Needntve��A�NeedC�need�A�ntC�not�A�veC�have�Needn’t��A�NeedC�need�A�n’tC�not�Needn’t’ve��A�NeedC�need�A�n’tC�not�A�’veC�have�Nev.��A�Nev.C�Nevada�Not've��A�NotC�not�A�'veC�have�Nothin��A�NothinC�nothing�Nothin'��A�Nothin'C�nothing�Nothin’��A�Nothin’C�nothing�Notve��A�NotC�not�A�veC�have�Not’ve��A�NotC�not�A�’veC�have�Nov.��A�Nov.C�November�Nuthin��A�NuthinC�nothing�Nuthin'��A�Nuthin'C�nothing�Nuthin’��A�Nuthin’C�nothing�O'clock��A�O'clockC�o'clock�O.O��A�O.O�O.o��A�O.o�O_O��A�O_O�O_o��A�O_o�Oct.��A�Oct.C�October�Okla.��A�Okla.C�Oklahoma�Ol��A�OlC�old�Ol'��A�Ol'C�old�Ol’��A�Ol’C�old�Ore.��A�Ore.C�Oregon�Oughtn't��A�OughtC�ought�A�n'tC�not�Oughtn't've��A�OughtC�ought�A�n'tC�not�A�'veC�have�Oughtnt��A�OughtC�ought�A�ntC�not�Oughtntve��A�OughtC�ought�A�ntC�not�A�veC�have�Oughtn’t��A�OughtC�ought�A�n’tC�not�Oughtn’t’ve��A�OughtC�ought�A�n’tC�not�A�’veC�have�O’clock��A�O’clockC�o'clock�Pa.��A�Pa.C�Pennsylvania�Ph.D.��A�Ph.D.�Prof.��A�Prof.�Rep.��A�Rep.�Rev.��A�Rev.�S.C.��A�S.C.C�South Carolina�Sen.��A�Sen.�Sep.��A�Sep.C�September�Sept.��A�Sept.C�September�Shan't��A�ShaC�shall�A�n'tC�not�Shan't've��A�ShaC�shall�A�n'tC�not�A�'veC�have�Shant��A�ShaC�shall�A�ntC�not�Shantve��A�ShaC�shall�A�ntC�not�A�veC�have�Shan’t��A�ShaC�shall�A�n’tC�not�Shan’t’ve��A�ShaC�shall�A�n’tC�not�A�’veC�have�She'd��A�SheC�she�A�'dC�'d�She'd've��A�SheC�she�A�'dC�would�A�'veC�have�She'll��A�SheC�she�A�'llC�will�She'll've��A�SheC�she�A�'llC�will�A�'veC�have�She's��A�SheC�she�A�'sC�'s�Shedve��A�SheC�she�A�dC�would�A�veC�have�Shellve��A�SheC�she�A�llC�will�A�veC�have�Shes��A�SheC�she�A�s�She’d��A�SheC�she�A�’dC�'d�She’d’ve��A�SheC�she�A�’dC�would�A�’veC�have�She’ll��A�SheC�she�A�’llC�will�She’ll’ve��A�SheC�she�A�’llC�will�A�’veC�have�She’s��A�SheC�she�A�’sC�'s�Should've��A�ShouldC�should�A�'ve�Shouldn't��A�ShouldC�should�A�n'tC�not�Shouldn't've��A�ShouldC�should�A�n'tC�not�A�'veC�have�Shouldnt��A�ShouldC�should�A�ntC�not�Shouldntve��A�ShouldC�should�A�ntC�not�A�veC�have�Shouldn’t��A�ShouldC�should�A�n’tC�not�Shouldn’t’ve��A�ShouldC�should�A�n’tC�not�A�’veC�have�Shouldve��A�ShouldC�should�A�ve�Should’ve��A�ShouldC�should�A�’ve�Somethin��A�SomethinC�something�Somethin'��A�Somethin'C�something�Somethin’��A�Somethin’C�something�St.��A�St.�Tenn.��A�Tenn.C�Tennessee�That'd��A�ThatC�that�A�'dC�'d�That'd've��A�ThatC�that�A�'dC�would�A�'veC�have�That'll��A�ThatC�that�A�'llC�will�That'll've��A�ThatC�that�A�'llC�will�A�'veC�have�That's��A�ThatC�that�A�'sC�'s�Thatd��A�ThatC�that�A�dC�'d�Thatdve��A�ThatC�that�A�dC�would�A�veC�have�Thatll��A�ThatC�that�A�llC�will�Thatllve��A�ThatC�that�A�llC�will�A�veC�have�Thats��A�ThatC�that�A�s�That’d��A�ThatC�that�A�’dC�'d�That’d’ve��A�ThatC�that�A�’dC�would�A�’veC�have�That’ll��A�ThatC�that�A�’llC�will�That’ll’ve��A�ThatC�that�A�’llC�will�A�’veC�have�That’s��A�ThatC�that�A�’sC�'s�There'd��A�ThereC�there�A�'dC�'d�There'd've��A�ThereC�there�A�'dC�would�A�'veC�have�There'll��A�ThereC�there�A�'llC�will�There'll've��A�ThereC�there�A�'llC�will�A�'veC�have�There're��A�ThereC�there�A�'reC�are�There's��A�ThereC�there�A�'sC�'s�There've��A�ThereC�there�A�'ve�Thered��A�ThereC�there�A�dC�'d�Theredve��A�ThereC�there�A�dC�would�A�veC�have�Therell��A�ThereC�there�A�llC�will�Therellve��A�ThereC�there�A�llC�will�A�veC�have�Therere��A�ThereC�there�A�reC�are�Theres��A�ThereC�there�A�s�Thereve��A�There�A�veC�have�There’d��A�ThereC�there�A�’dC�'d�There’d’ve��A�ThereC�there�A�’dC�would�A�’veC�have�There’ll��A�ThereC�there�A�’llC�will�There’ll’ve��A�ThereC�there�A�’llC�will�A�’veC�have�There’re��A�ThereC�there�A�’reC�are�There’s��A�ThereC�there�A�’sC�'s�There’ve��A�ThereC�there�A�’ve�These'd��A�TheseC�these�A�'dC�'d�These'd've��A�TheseC�these�A�'dC�would�A�'veC�have�These'll��A�TheseC�these�A�'llC�will�These'll've��A�TheseC�these�A�'llC�will�A�'veC�have�These're��A�TheseC�these�A�'reC�are�These've��A�TheseC�these�A�'ve�Thesed��A�TheseC�these�A�dC�'d�Thesedve��A�TheseC�these�A�dC�would�A�veC�have�Thesell��A�TheseC�these�A�llC�will�Thesellve��A�TheseC�these�A�llC�will�A�veC�have�Thesere��A�TheseC�these�A�reC�are�Theseve��A�These�A�veC�have�These’d��A�TheseC�these�A�’dC�'d�These’d’ve��A�TheseC�these�A�’dC�would�A�’veC�have�These’ll��A�TheseC�these�A�’llC�will�These’ll’ve��A�TheseC�these�A�’llC�will�A�’veC�have�These’re��A�TheseC�these�A�’reC�are�These’ve��A�TheseC�these�A�’ve�They'd��A�TheyC�they�A�'dC�'d�They'd've��A�TheyC�they�A�'dC�would�A�'veC�have�They'll��A�TheyC�they�A�'llC�will�They'll've��A�TheyC�they�A�'llC�will�A�'veC�have�They're��A�TheyC�they�A�'reC�are�They've��A�TheyC�they�A�'veC�have�Theyd��A�TheyC�they�A�dC�'d�Theydve��A�TheyC�they�A�dC�would�A�veC�have�Theyll��A�TheyC�they�A�llC�will�Theyllve��A�TheyC�they�A�llC�will�A�veC�have�Theyre��A�TheyC�they�A�reC�are�Theyve��A�TheyC�they�A�veC�have�They’d��A�TheyC�they�A�’dC�'d�They’d’ve��A�TheyC�they�A�’dC�would�A�’veC�have�They’ll��A�TheyC�they�A�’llC�will�They’ll’ve��A�TheyC�they�A�’llC�will�A�’veC�have�They’re��A�TheyC�they�A�’reC�are�They’ve��A�TheyC�they�A�’veC�have�This'd��A�ThisC�this�A�'dC�'d�This'd've��A�ThisC�this�A�'dC�would�A�'veC�have�This'll��A�ThisC�this�A�'llC�will�This'll've��A�ThisC�this�A�'llC�will�A�'veC�have�This's��A�ThisC�this�A�'sC�'s�Thisd��A�ThisC�this�A�dC�'d�Thisdve��A�ThisC�this�A�dC�would�A�veC�have�Thisll��A�ThisC�this�A�llC�will�Thisllve��A�ThisC�this�A�llC�will�A�veC�have�Thiss��A�ThisC�this�A�s�This’d��A�ThisC�this�A�’dC�'d�This’d’ve��A�ThisC�this�A�’dC�would�A�’veC�have�This’ll��A�ThisC�this�A�’llC�will�This’ll’ve��A�ThisC�this�A�’llC�will�A�’veC�have�This’s��A�ThisC�this�A�’sC�'s�Those'd��A�ThoseC�those�A�'dC�'d�Those'd've��A�ThoseC�those�A�'dC�would�A�'veC�have�Those'll��A�ThoseC�those�A�'llC�will�Those'll've��A�ThoseC�those�A�'llC�will�A�'veC�have�Those're��A�ThoseC�those�A�'reC�are�Those've��A�ThoseC�those�A�'ve�Thosed��A�ThoseC�those�A�dC�'d�Thosedve��A�ThoseC�those�A�dC�would�A�veC�have�Thosell��A�ThoseC�those�A�llC�will�Thosellve��A�ThoseC�those�A�llC�will�A�veC�have�Thosere��A�ThoseC�those�A�reC�are�Thoseve��A�Those�A�veC�have�Those’d��A�ThoseC�those�A�’dC�'d�Those’d’ve��A�ThoseC�those�A�’dC�would�A�’veC�have�Those’ll��A�ThoseC�those�A�’llC�will�Those’ll’ve��A�ThoseC�those�A�’llC�will�A�’veC�have�Those’re��A�ThoseC�those�A�’reC�are�Those’ve��A�ThoseC�those�A�’ve�V.V��A�V.V�V_V��A�V_V�Va.��A�Va.C�Virginia�Wash.��A�Wash.C�Washington�Wasn't��A�WasC�was�A�n'tC�not�Wasnt��A�WasC�was�A�ntC�not�Wasn’t��A�WasC�was�A�n’tC�not�We'd��A�WeC�we�A�'dC�'d�We'd've��A�WeC�we�A�'dC�would�A�'veC�have�We'll��A�WeC�we�A�'llC�will�We'll've��A�WeC�we�A�'llC�will�A�'veC�have�We're��A�WeC�we�A�'reC�are�We've��A�WeC�we�A�'veC�have�Wed��A�WeC�we�A�dC�'d�Wedve��A�WeC�we�A�dC�would�A�veC�have�Wellve��A�WeC�we�A�llC�will�A�veC�have�Weren't��A�WereC�were�A�n'tC�not�Werent��A�WereC�were�A�ntC�not�Weren’t��A�WereC�were�A�n’tC�not�Weve��A�WeC�we�A�veC�have�We’d��A�WeC�we�A�’dC�'d�We’d’ve��A�WeC�we�A�’dC�would�A�’veC�have�We’ll��A�WeC�we�A�’llC�will�We’ll’ve��A�WeC�we�A�’llC�will�A�’veC�have�We’re��A�WeC�we�A�’reC�are�We’ve��A�WeC�we�A�’veC�have�What'd��A�WhatC�what�A�'dC�'d�What'd've��A�WhatC�what�A�'dC�would�A�'veC�have�What'll��A�WhatC�what�A�'llC�will�What'll've��A�WhatC�what�A�'llC�will�A�'veC�have�What're��A�WhatC�what�A�'reC�are�What's��A�WhatC�what�A�'sC�'s�What've��A�WhatC�what�A�'ve�Whatd��A�WhatC�what�A�dC�'d�Whatdve��A�WhatC�what�A�dC�would�A�veC�have�Whatll��A�WhatC�what�A�llC�will�Whatllve��A�WhatC�what�A�llC�will�A�veC�have�Whatre��A�WhatC�what�A�reC�are�Whats��A�WhatC�what�A�s�Whatve��A�What�A�veC�have�What’d��A�WhatC�what�A�’dC�'d�What’d’ve��A�WhatC�what�A�’dC�would�A�’veC�have�What’ll��A�WhatC�what�A�’llC�will�What’ll’ve��A�WhatC�what�A�’llC�will�A�’veC�have�What’re��A�WhatC�what�A�’reC�are�What’s��A�WhatC�what�A�’sC�'s�What’ve��A�WhatC�what�A�’ve�When'd��A�WhenC�when�A�'dC�'d�When'd've��A�WhenC�when�A�'dC�would�A�'veC�have�When'll��A�WhenC�when�A�'llC�will�When'll've��A�WhenC�when�A�'llC�will�A�'veC�have�When're��A�WhenC�when�A�'reC�are�When's��A�WhenC�when�A�'sC�'s�When've��A�WhenC�when�A�'ve�Whend��A�WhenC�when�A�dC�'d�Whendve��A�WhenC�when�A�dC�would�A�veC�have�Whenll��A�WhenC�when�A�llC�will�Whenllve��A�WhenC�when�A�llC�will�A�veC�have�Whenre��A�WhenC�when�A�reC�are�Whens��A�WhenC�when�A�s�Whenve��A�When�A�veC�have�When’d��A�WhenC�when�A�’dC�'d�When’d’ve��A�WhenC�when�A�’dC�would�A�’veC�have�When’ll��A�WhenC�when�A�’llC�will�When’ll’ve��A�WhenC�when�A�’llC�will�A�’veC�have�When’re��A�WhenC�when�A�’reC�are�When’s��A�WhenC�when�A�’sC�'s�When’ve��A�WhenC�when�A�’ve�Where'd��A�WhereC�where�A�'dC�'d�Where'd've��A�WhereC�where�A�'dC�would�A�'veC�have�Where'll��A�WhereC�where�A�'llC�will�Where'll've��A�WhereC�where�A�'llC�will�A�'veC�have�Where're��A�WhereC�where�A�'reC�are�Where's��A�WhereC�where�A�'sC�'s�Where've��A�WhereC�where�A�'ve�Whered��A�WhereC�where�A�dC�'d�Wheredve��A�WhereC�where�A�dC�would�A�veC�have�Wherell��A�WhereC�where�A�llC�will�Wherellve��A�WhereC�where�A�llC�will�A�veC�have�Wherere��A�WhereC�where�A�reC�are�Wheres��A�WhereC�where�A�s�Whereve��A�Where�A�veC�have�Where’d��A�WhereC�where�A�’dC�'d�Where’d’ve��A�WhereC�where�A�’dC�would�A�’veC�have�Where’ll��A�WhereC�where�A�’llC�will�Where’ll’ve��A�WhereC�where�A�’llC�will�A�’veC�have�Where’re��A�WhereC�where�A�’reC�are�Where’s��A�WhereC�where�A�’sC�'s�Where’ve��A�WhereC�where�A�’ve�Who'd��A�WhoC�who�A�'dC�'d�Who'd've��A�WhoC�who�A�'dC�would�A�'veC�have�Who'll��A�WhoC�who�A�'llC�will�Who'll've��A�WhoC�who�A�'llC�will�A�'veC�have�Who're��A�WhoC�who�A�'reC�are�Who's��A�WhoC�who�A�'sC�'s�Who've��A�WhoC�who�A�'ve�Whod��A�WhoC�who�A�dC�'d�Whodve��A�WhoC�who�A�dC�would�A�veC�have�Wholl��A�WhoC�who�A�llC�will�Whollve��A�WhoC�who�A�llC�will�A�veC�have�Whos��A�WhoC�who�A�s�Whove��A�Who�A�veC�have�Who’d��A�WhoC�who�A�’dC�'d�Who’d’ve��A�WhoC�who�A�’dC�would�A�’veC�have�Who’ll��A�WhoC�who�A�’llC�will�Who’ll’ve��A�WhoC�who�A�’llC�will�A�’veC�have�Who’re��A�WhoC�who�A�’reC�are�Who’s��A�WhoC�who�A�’sC�'s�Who’ve��A�WhoC�who�A�’ve�Why'd��A�WhyC�why�A�'dC�'d�Why'd've��A�WhyC�why�A�'dC�would�A�'veC�have�Why'll��A�WhyC�why�A�'llC�will�Why'll've��A�WhyC�why�A�'llC�will�A�'veC�have�Why're��A�WhyC�why�A�'reC�are�Why's��A�WhyC�why�A�'sC�'s�Why've��A�WhyC�why�A�'ve�Whyd��A�WhyC�why�A�dC�'d�Whydve��A�WhyC�why�A�dC�would�A�veC�have�Whyll��A�WhyC�why�A�llC�will�Whyllve��A�WhyC�why�A�llC�will�A�veC�have�Whyre��A�WhyC�why�A�reC�are�Whys��A�WhyC�why�A�s�Whyve��A�Why�A�veC�have�Why’d��A�WhyC�why�A�’dC�'d�Why’d’ve��A�WhyC�why�A�’dC�would�A�’veC�have�Why’ll��A�WhyC�why�A�’llC�will�Why’ll’ve��A�WhyC�why�A�’llC�will�A�’veC�have�Why’re��A�WhyC�why�A�’reC�are�Why’s��A�WhyC�why�A�’sC�'s�Why’ve��A�WhyC�why�A�’ve�Wis.��A�Wis.C�Wisconsin�Won't��A�WoC�will�A�n'tC�not�Won't've��A�WoC�will�A�n'tC�not�A�'veC�have�Wont��A�WoC�will�A�ntC�not�Wontve��A�WoC�will�A�ntC�not�A�veC�have�Won’t��A�WoC�will�A�n’tC�not�Won’t’ve��A�WoC�will�A�n’tC�not�A�’veC�have�Would've��A�WouldC�would�A�'ve�Wouldn't��A�WouldC�would�A�n'tC�not�Wouldn't've��A�WouldC�would�A�n'tC�not�A�'veC�have�Wouldnt��A�WouldC�would�A�ntC�not�Wouldntve��A�WouldC�would�A�ntC�not�A�veC�have�Wouldn’t��A�WouldC�would�A�n’tC�not�Wouldn’t’ve��A�WouldC�would�A�n’tC�not�A�’veC�have�Wouldve��A�WouldC�would�A�ve�Would’ve��A�WouldC�would�A�’ve�XD��A�XD�XDD��A�XDD�You'd��A�YouC�you�A�'dC�'d�You'd've��A�YouC�you�A�'dC�would�A�'veC�have�You'll��A�YouC�you�A�'llC�will�You'll've��A�YouC�you�A�'llC�will�A�'veC�have�You're��A�YouC�you�A�'reC�are�You've��A�YouC�you�A�'veC�have�Youd��A�YouC�you�A�dC�'d�Youdve��A�YouC�you�A�dC�would�A�veC�have�Youll��A�YouC�you�A�llC�will�Youllve��A�YouC�you�A�llC�will�A�veC�have�Youre��A�YouC�you�A�reC�are�Youve��A�YouC�you�A�veC�have�You’d��A�YouC�you�A�’dC�'d�You’d’ve��A�YouC�you�A�’dC�would�A�’veC�have�You’ll��A�YouC�you�A�’llC�will�You’ll’ve��A�YouC�you�A�’llC�will�A�’veC�have�You’re��A�YouC�you�A�’reC�are�You’ve��A�YouC�you�A�’veC�have�[-:��A�[-:�[:��A�[:�[=��A�[=�\")��A�\")�\n��A�\n�\t��A�\t�]=��A�]=�^_^��A�^_^�^__^��A�^__^�^___^��A�^___^�a.��A�a.�a.m.��A�a.m.�ain't��A�ai�A�n'tC�not�aint��A�ai�A�ntC�not�ain’t��A�ai�A�n’tC�not�and/or��A�and/orC�and/or�aren't��A�areC�are�A�n'tC�not�arent��A�areC�are�A�ntC�not�aren’t��A�areC�are�A�n’tC�not�b.��A�b.�c'mon��A�c'mC�come�A�on�c.��A�c.�can't��A�caC�can�A�n'tC�not�can't've��A�caC�can�A�n'tC�not�A�'veC�have�cannot��A�can�A�not�cant��A�caC�can�A�ntC�not�cantve��A�caC�can�A�ntC�not�A�veC�have�can’t��A�caC�can�A�n’tC�not�can’t’ve��A�caC�can�A�n’tC�not�A�’veC�have�co.��A�co.�could've��A�couldC�could�A�'ve�couldn't��A�couldC�could�A�n'tC�not�couldn't've��A�couldC�could�A�n'tC�not�A�'veC�have�couldnt��A�couldC�could�A�ntC�not�couldntve��A�couldC�could�A�ntC�not�A�veC�have�couldn’t��A�couldC�could�A�n’tC�not�couldn’t’ve��A�couldC�could�A�n’tC�not�A�’veC�have�couldve��A�couldC�could�A�ve�could’ve��A�couldC�could�A�’ve�c’mon��A�c’mC�come�A�on�d.��A�d.�daren't��A�dareC�dare�A�n'tC�not�darent��A�dareC�dare�A�ntC�not�daren’t��A�dareC�dare�A�n’tC�not�didn't��A�didC�do�A�n'tC�not�didn't've��A�didC�do�A�n'tC�not�A�'veC�have�didnt��A�didC�do�A�ntC�not�didntve��A�didC�do�A�ntC�not�A�veC�have�didn’t��A�didC�do�A�n’tC�not�didn’t’ve��A�didC�do�A�n’tC�not�A�’veC�have�doesn't��A�doesC�does�A�n'tC�not�doesn't've��A�doesC�does�A�n'tC�not�A�'veC�have�doesnt��A�doesC�does�A�ntC�not�doesntve��A�doesC�does�A�ntC�not�A�veC�have�doesn’t��A�doesC�does�A�n’tC�not�doesn’t’ve��A�doesC�does�A�n’tC�not�A�’veC�have�doin��A�doinC�doing�doin'��A�doin'C�doing�doin’��A�doin’C�doing�don't��A�doC�do�A�n'tC�not�don't've��A�doC�do�A�n'tC�not�A�'veC�have�dont��A�doC�do�A�ntC�not�dontve��A�doC�do�A�ntC�not�A�veC�have�don’t��A�doC�do�A�n’tC�not�don’t’ve��A�doC�do�A�n’tC�not�A�’veC�have�e.��A�e.�e.g.��A�e.g.�em��A�emC�them�f.��A�f.�g.��A�g.�goin��A�goinC�going�goin'��A�goin'C�going�goin’��A�goin’C�going�gonna��A�gonC�going�A�naC�to�gotta��A�got�A�taC�to�h.��A�h.�hadn't��A�hadC�have�A�n'tC�not�hadn't've��A�hadC�have�A�n'tC�not�A�'veC�have�hadnt��A�hadC�have�A�ntC�not�hadntve��A�hadC�have�A�ntC�not�A�veC�have�hadn’t��A�hadC�have�A�n’tC�not�hadn’t’ve��A�hadC�have�A�n’tC�not�A�’veC�have�hasn't��A�hasC�has�A�n'tC�not�hasnt��A�hasC�has�A�ntC�not�hasn’t��A�hasC�has�A�n’tC�not�haven't��A�haveC�have�A�n'tC�not�havent��A�haveC�have�A�ntC�not�haven’t��A�haveC�have�A�n’tC�not�havin��A�havinC�having�havin'��A�havin'C�having�havin’��A�havin’C�having�he'd��A�heC�he�A�'dC�'d�he'd've��A�heC�he�A�'dC�would�A�'veC�have�he'll��A�heC�he�A�'llC�will�he'll've��A�heC�he�A�'llC�will�A�'veC�have�he's��A�heC�he�A�'sC�'s�hed��A�heC�he�A�dC�'d�hedve��A�heC�he�A�dC�would�A�veC�have�hellve��A�heC�he�A�llC�will�A�veC�have�hes��A�heC�he�A�s�he’d��A�heC�he�A�’dC�'d�he’d’ve��A�heC�he�A�’dC�would�A�’veC�have�he’ll��A�heC�he�A�’llC�will�he’ll’ve��A�heC�he�A�’llC�will�A�’veC�have�he’s��A�heC�he�A�’sC�'s�how'd��A�howC�how�A�'dC�'d�how'd've��A�howC�how�A�'dC�would�A�'veC�have�how'd'y��A�how�A�'d�A�'yC�you�how'll��A�howC�how�A�'llC�will�how'll've��A�howC�how�A�'llC�will�A�'veC�have�how're��A�howC�how�A�'reC�are�how's��A�howC�how�A�'sC�'s�how've��A�howC�how�A�'ve�howd��A�howC�how�A�dC�'d�howdve��A�howC�how�A�dC�would�A�veC�have�howll��A�howC�how�A�llC�will�howllve��A�howC�how�A�llC�will�A�veC�have�howre��A�howC�how�A�reC�are�hows��A�howC�how�A�s�howve��A�how�A�veC�have�how’d��A�howC�how�A�’dC�'d�how’d’ve��A�howC�how�A���dC�would�A�’veC�have�how’d’y��A�how�A�’d�A�’yC�you�how’ll��A�howC�how�A�’llC�will�how’ll’ve��A�howC�how�A�’llC�will�A�’veC�have�how’re��A�howC�how�A�’reC�are�how’s��A�howC�how�A�’sC�'s�how’ve��A�howC�how�A�’ve�i'd��A�iC�i�A�'dC�'d�i'd've��A�iC�i�A�'dC�would�A�'veC�have�i'll��A�iC�i�A�'llC�will�i'll've��A�iC�i�A�'llC�will�A�'veC�have�i'm��A�iC�i�A�'mC�am�i'ma��A�iC�i�A�'mC�am�A�aC�gonna�i've��A�iC�i�A�'veC�have�i.��A�i.�i.e.��A�i.e.�id��A�iC�i�A�dC�'d�idve��A�iC�i�A�dC�would�A�veC�have�illve��A�iC�i�A�llC�will�A�veC�have�im��A�iC�i�A�m�ima��A�iC�i�A�mC�am�A�aC�gonna�isn't��A�isC�is�A�n'tC�not�isnt��A�isC�is�A�ntC�not�isn’t��A�isC�is�A�n’tC�not�it'd��A�itC�it�A�'dC�'d�it'd've��A�itC�it�A�'dC�would�A�'veC�have�it'll��A�itC�it�A�'llC�will�it'll've��A�itC�it�A�'llC�will�A�'veC�have�it's��A�itC�it�A�'sC�'s�itd��A�itC�it�A�dC�'d�itdve��A�itC�it�A�dC�would�A�veC�have�itll��A�itC�it�A�llC�will�itllve��A�itC�it�A�llC�will�A�veC�have�it’d��A�itC�it�A�’dC�'d�it’d’ve��A�itC�it�A�’dC�would�A�’veC�have�it’ll��A�itC�it�A�’llC�will�it’ll’ve��A�itC�it�A�’llC�will�A�’veC�have�it’s��A�itC�it�A�’sC�'s�ive��A�iC�i�A�veC�have�i’d��A�iC�i�A�’dC�'d�i’d’ve��A�iC�i�A�’dC�would�A�’veC�have�i’ll��A�iC�i�A�’llC�will�i’ll’ve��A�iC�i�A�’llC�will�A�’veC�have�i’m��A�iC�i�A�’mC�am�i’ma��A�iC�i�A�’mC�am�A�aC�gonna�i’ve��A�iC�i�A�’veC�have�j.��A�j.�k.��A�k.�l.��A�l.�let's��A�let�A�'sC�us�let’s��A�let�A�’sC�us�ll��A�llC�will�lovin��A�lovinC�loving�lovin'��A�lovin'C�loving�lovin’��A�lovin’C�loving�m.��A�m.�ma'am��A�ma'amC�madam�mayn't��A�mayC�may�A�n'tC�not�mayn't've��A�mayC�may�A�n'tC�not�A�'veC�have�maynt��A�mayC�may�A�ntC�not�mayntve��A�mayC�may�A�ntC�not�A�veC�have�mayn’t��A�mayC�may�A�n’tC�not�mayn’t’ve��A�mayC�may�A�n’tC�not�A�’veC�have�ma’am��A�ma’amC�madam�might've��A�mightC�might�A�'ve�mightn't��A�mightC�might�A�n'tC�not�mightn't've��A�mightC�might�A�n'tC�not�A�'veC�have�mightnt��A�mightC�might�A�ntC�not�mightntve��A�mightC�might�A�ntC�not�A�veC�have�mightn’t��A�mightC�might�A�n’tC�not�mightn’t’ve��A�mightC�might�A�n’tC�not�A�’veC�have�mightve��A�mightC�might�A�ve�might’ve��A�mightC�might�A�’ve�must've��A�mustC�must�A�'ve�mustn't��A�mustC�must�A�n'tC�not�mustn't've��A�mustC�must�A�n'tC�not�A�'veC�have�mustnt��A�mustC�must�A�ntC�not�mustntve��A�mustC�must�A�ntC�not�A�veC�have�mustn’t��A�mustC�must�A�n’tC�not�mustn’t’ve��A�mustC�must�A�n’tC�not�A�’veC�have�mustve��A�mustC�must�A�ve�must’ve��A�mustC�must�A�’ve�n.��A�n.�needn't��A�needC�need�A�n'tC�not�needn't've��A�needC�need�A�n'tC�not�A�'veC�have�neednt��A�needC�need�A�ntC�not�needntve��A�needC�need�A�ntC�not�A�veC�have�needn’t��A�needC�need�A�n’tC�not�needn’t’ve��A�needC�need�A�n’tC�not�A�’veC�have�not've��A�not�A�'veC�have�nothin��A�nothinC�nothing�nothin'��A�nothin'C�nothing�nothin’��A�nothin’C�nothing�notve��A�not�A�veC�have�not’ve��A�not�A�’veC�have�nuff��A�nuffC�enough�nuthin��A�nuthinC�nothing�nuthin'��A�nuthin'C�nothing�nuthin’��A�nuthin’C�nothing�o'clock��A�o'clockC�o'clock�o.��A�o.�o.0��A�o.0�o.O��A�o.O�o.o��A�o.o�o_0��A�o_0�o_O��A�o_O�o_o��A�o_o�ol��A�olC�old�ol'��A�ol'C�old�ol’��A�ol’C�old�oughtn't��A�oughtC�ought�A�n'tC�not�oughtn't've��A�oughtC�ought�A�n'tC�not�A�'veC�have�oughtnt��A�oughtC�ought�A�ntC�not�oughtntve��A�oughtC�ought�A�ntC�not�A�veC�have�oughtn’t��A�oughtC�ought�A�n’tC�not�oughtn’t’ve��A�oughtC�ought�A�n’tC�not�A�’veC�have�o’clock��A�o’clockC�o'clock�p.��A�p.�p.m.��A�p.m.�q.��A�q.�r.��A�r.�s.��A�s.�shan't��A�shaC�shall�A�n'tC�not�shan't've��A�shaC�shall�A�n'tC�not�A�'veC�have�shant��A�shaC�shall�A�ntC�not�shantve��A�shaC�shall�A�ntC�not�A�veC�have�shan’t��A�shaC�shall�A�n’tC�not�shan’t’ve��A�shaC�shall�A�n’tC�not�A�’veC�have�she'd��A�sheC�she�A�'dC�'d�she'd've��A�sheC�she�A�'dC�would�A�'veC�have�she'll��A�sheC�she�A�'llC�will�she'll've��A�sheC�she�A�'llC�will�A�'veC�have�she's��A�sheC�she�A�'sC�'s�shedve��A�sheC�she�A�dC�would�A�veC�have�shellve��A�sheC�she�A�llC�will�A�veC�have�shes��A�sheC�she�A�s�she’d��A�sheC�she�A�’dC�'d�she’d’ve��A�sheC�she�A�’dC�would�A�’veC�have�she’ll��A�sheC�she�A�’llC�will�she’ll’ve��A�sheC�she�A�’llC�will�A�’veC�have�she’s��A�sheC�she�A�’sC�'s�should've��A�shouldC�should�A�'ve�shouldn't��A�shouldC�should�A�n'tC�not�shouldn't've��A�shouldC�should�A�n'tC�not�A�'veC�have�shouldnt��A�shouldC�should�A�ntC�not�shouldntve��A�shouldC�should�A�ntC�not�A�veC�have�shouldn’t��A�shouldC�should�A�n’tC�not�shouldn’t’ve��A�shouldC�should�A�n’tC�not�A�’veC�have�shouldve��A�shouldC�should�A�ve�should’ve��A�shouldC�should�A�’ve�somethin��A�somethinC�something�somethin'��A�somethin'C�something�somethin’��A�somethin’C�something�t.��A�t.�that'd��A�thatC�that�A�'dC�'d�that'd've��A�thatC�that�A�'dC�would�A�'veC�have�that'll��A�thatC�that�A�'llC�will�that'll've��A�thatC�that�A�'llC�will�A�'veC�have�that's��A�thatC�that�A�'sC�'s�thatd��A�thatC�that�A�dC�'d�thatdve��A�thatC�that�A�dC�would�A�veC�have�thatll��A�thatC�that�A�llC�will�thatllve��A�thatC�that�A�llC�will�A�veC�have�thats��A�thatC�that�A�s�that’d��A�thatC�that�A�’dC�'d�that’d’ve��A�thatC�that�A�’dC�would�A�’veC�have�that’ll��A�thatC�that�A�’llC�will�that’ll’ve��A�thatC�that�A�’llC�will�A�’veC�have�that’s��A�thatC�that�A�’sC�'s�there'd��A�thereC�there�A�'dC�'d�there'd've��A�thereC�there�A�'dC�would�A�'veC�have�there'll��A�thereC�there�A�'llC�will�there'll've��A�thereC�there�A�'llC�will�A�'veC�have�there're��A�thereC�there�A�'reC�are�there's��A�thereC�there�A�'sC�'s�there've��A�thereC�there�A�'ve�thered��A�thereC�there�A�dC�'d�theredve��A�thereC�there�A�dC�would�A�veC�have�therell��A�thereC�there�A�llC�will�therellve��A�thereC�there�A�llC�will�A�veC�have�therere��A�thereC�there�A�reC�are�theres��A�thereC�there�A�s�thereve��A�there�A�veC�have�there’d��A�thereC�there�A�’dC�'d�there’d’ve��A�thereC�there�A�’dC�would�A�’veC�have�there’ll��A�thereC�there�A�’llC�will�there’ll’ve��A�thereC�there�A�’llC�will�A�’veC�have�there’re��A�thereC�there�A�’reC�are�there’s��A�thereC�there�A�’sC�'s�there’ve��A�thereC�there�A�’ve�these'd��A�theseC�these�A�'dC�'d�these'd've��A�theseC�these�A�'dC�would�A�'veC�have�these'll��A�theseC�these�A�'llC�will�these'll've��A�theseC�these�A�'llC�will�A�'veC�have�these're��A�theseC�these�A�'reC�are�these've��A�theseC�these�A�'ve�thesed��A�theseC�these�A�dC�'d�thesedve��A�theseC�these�A�dC�would�A�veC�have�thesell��A�theseC�these�A�llC�will�thesellve��A�theseC�these�A�llC�will�A�veC�have�thesere��A�theseC�these�A�reC�are�theseve��A�these�A�veC�have�these’d��A�theseC�these�A�’dC�'d�these’d’ve��A�theseC�these�A�’dC�would�A�’veC�have�these’ll��A�theseC�these�A�’llC�will�these’ll’ve��A�theseC�these�A�’llC�will�A�’veC�have�these’re��A�theseC�these�A�’reC�are�these’ve��A�theseC�these�A�’ve�they'd��A�theyC�they�A�'dC�'d�they'd've��A�theyC�they�A�'dC�would�A�'veC�have�they'll��A�theyC�they�A�'llC�will�they'll've��A�theyC�they�A�'llC�will�A�'veC�have�they're��A�theyC�they�A�'reC�are�they've��A�theyC�they�A�'veC�have�theyd��A�theyC�they�A�dC�'d�theydve��A�theyC�they�A�dC�would�A�veC�have�theyll��A�theyC�they�A�llC�will�theyllve��A�theyC�they�A�llC�will�A�veC�have�theyre��A�theyC�they�A�reC�are�theyve��A�theyC�they�A�veC�have�they’d��A�theyC�they�A�’dC�'d�they’d’ve��A�theyC�they�A�’dC�would�A�’veC�have�they’ll��A�theyC�they�A�’llC�will�they’ll’ve��A�theyC�they�A�’llC�will�A�’veC�have�they’re��A�theyC�they�A�’reC�are�they’ve��A�theyC�they�A�’veC�have�this'd��A�thisC�this�A�'dC�'d�this'd've��A�thisC�this�A�'dC�would�A�'veC�have�this'll��A�thisC�this�A�'llC�will�this'll've��A�thisC�this�A�'llC�will�A�'veC�have�this's��A�thisC�this�A�'sC�'s�thisd��A�thisC�this�A�dC�'d�thisdve��A�thisC�this�A�dC�would�A�veC�have�thisll��A�thisC�this�A�llC�will�thisllve��A�thisC�this�A�llC�will�A�veC�have�thiss��A�thisC�this�A�s�this’d��A�thisC�this�A�’dC�'d�this’d’ve��A�thisC�this�A�’dC�would�A�’veC�have�this’ll��A�thisC�this�A�’llC�will�this’ll’ve��A�thisC�this�A�’llC�will�A�’veC�have�this’s��A�thisC�this�A�’sC�'s�those'd��A�thoseC�those�A�'dC�'d�those'd've��A�thoseC�those�A�'dC�would�A�'veC�have�those'll��A�thoseC�those�A�'llC�will�those'll've��A�thoseC�those�A�'llC�will�A�'veC�have�those're��A�thoseC�those�A�'reC�are�those've��A�thoseC�those�A�'ve�thosed��A�thoseC�those�A�dC�'d�thosedve��A�thoseC�those�A�dC�would�A�veC�have�thosell��A�thoseC�those�A�llC�will�thosellve��A�thoseC�those�A�llC�will�A�veC�have�thosere��A�thoseC�those�A�reC�are�thoseve��A�those�A�veC�have�those’d��A�thoseC�those�A�’dC�'d�those’d’ve��A�thoseC�those�A�’dC�would�A�’veC�have�those’ll��A�thoseC�those�A�’llC�will�those’ll’ve��A�thoseC�those�A�’llC�will�A�’veC�have�those’re��A�thoseC�those�A�’reC�are�those’ve��A�thoseC�those�A�’ve�u.��A�u.�v.��A�v.�v.s.��A�v.s.�v.v��A�v.v�v_v��A�v_v�vs.��A�vs.�w.��A�w.�w/o��A�w/oC�without�wasn't��A�wasC�was�A�n'tC�not�wasnt��A�wasC�was�A�ntC�not�wasn’t��A�wasC�was�A�n’tC�not�we'd��A�weC�we�A�'dC�'d�we'd've��A�weC�we�A�'dC�would�A�'veC�have�we'll��A�weC�we�A�'llC�will�we'll've��A�weC�we�A�'llC�will�A�'veC�have�we're��A�weC�we�A�'reC�are�we've��A�weC�we�A�'veC�have�wed��A�weC�we�A�dC�'d�wedve��A�weC�we�A�dC�would�A�veC�have�wellve��A�weC�we�A�llC�will�A�veC�have�weren't��A�wereC�were�A�n'tC�not�werent��A�wereC�were�A�ntC�not�weren’t��A�wereC�were�A�n’tC�not�weve��A�weC�we�A�veC�have�we’d��A�weC�we�A�’dC�'d�we’d’ve��A�weC�we�A�’dC�would�A�’veC�have�we’ll��A�weC�we�A�’llC�will�we’ll’ve��A�weC�we�A�’llC�will�A�’veC�have�we’re��A�weC�we�A�’reC�are�we’ve��A�weC�we�A�’veC�have�what'd��A�whatC�what�A�'dC�'d�what'd've��A�whatC�what�A�'dC�would�A�'veC�have�what'll��A�whatC�what�A�'llC�will�what'll've��A�whatC�what�A�'llC�will�A�'veC�have�what're��A�whatC�what�A�'reC�are�what's��A�whatC�what�A�'sC�'s�what've��A�whatC�what�A�'ve�whatd��A�whatC�what�A�dC�'d�whatdve��A�whatC�what�A�dC�would�A�veC�have�whatll��A�whatC�what�A�llC�will�whatllve��A�whatC�what�A�llC�will�A�veC�have�whatre��A�whatC�what�A�reC�are�whats��A�whatC�what�A�s�whatve��A�what�A�veC�have�what’d��A�whatC�what�A�’dC�'d�what’d’ve��A�whatC�what�A�’dC�would�A�’veC�have�what’ll��A�whatC�what�A�’llC�will�what’ll’ve��A�whatC�what�A�’llC�will�A�’veC�have�what’re��A�whatC�what�A�’reC�are�what’s��A�whatC�what�A�’sC�'s�what’ve��A�whatC�what�A�’ve�when'd��A�whenC�when�A�'dC�'d�when'd've��A�whenC�when�A�'dC�would�A�'veC�have�when'll��A�whenC�when�A�'llC�will�when'll've��A�whenC�when�A�'llC�will�A�'veC�have�when're��A�whenC�when�A�'reC�are�when's��A�whenC�when�A�'sC�'s�when've��A�whenC�when�A�'ve�whend��A�whenC�when�A�dC�'d�whendve��A�whenC�when�A�dC�would�A�veC�have�whenll��A�whenC�when�A�llC�will�whenllve��A�whenC�when�A�llC�will�A�veC�have�whenre��A�whenC�when�A�reC�are�whens��A�whenC�when�A�s�whenve��A�when�A�veC�have�when’d��A�whenC�when�A�’dC�'d�when’d’ve��A�whenC�when�A�’dC�would�A�’veC�have�when’ll��A�whenC�when�A�’llC�will�when’ll’ve��A�whenC�when�A�’llC�will�A�’veC�have�when’re��A�whenC�when�A�’reC�are�when’s��A�whenC�when�A�’sC�'s�when’ve��A�whenC�when�A�’ve�where'd��A�whereC�where�A�'dC�'d�where'd've��A�whereC�where�A�'dC�would�A�'veC�have�where'll��A�whereC�where�A�'llC�will�where'll've��A�whereC�where�A�'llC�will�A�'veC�have�where're��A�whereC�where�A�'reC�are�where's��A�whereC�where�A�'sC�'s�where've��A�whereC�where�A�'ve�whered��A�whereC�where�A�dC�'d�wheredve��A�whereC�where�A�dC�would�A�veC�have�wherell��A�whereC�where�A�llC�will�wherellve��A�whereC�where�A�llC�will�A�veC�have�wherere��A�whereC�where�A�reC�are�wheres��A�whereC�where�A�s�whereve��A�where�A�veC�have�where’d��A�whereC�where�A�’dC�'d�where’d’ve��A�whereC�where�A�’dC�would�A�’veC�have�where’ll��A�whereC�where�A�’llC�will�where’ll’ve��A�whereC�where�A�’llC�will�A�’veC�have�where’re��A�whereC�where�A�’reC�are�where’s��A�whereC�where�A�’sC�'s�where’ve��A�whereC�where�A�’ve�who'd��A�whoC�who�A�'dC�'d�who'd've��A�whoC�who�A�'dC�would�A�'veC�have�who'll��A�whoC�who�A�'llC�will�who'll've��A�whoC�who�A�'llC�will�A�'veC�have�who're��A�whoC�who�A�'reC�are�who's��A�whoC�who�A�'sC�'s�who've��A�whoC�who�A�'ve�whod��A�whoC�who�A�dC�'d�whodve��A�whoC�who�A�dC�would�A�veC�have�wholl��A�whoC�who�A�llC�will�whollve��A�whoC�who�A�llC�will�A�veC�have�whos��A�whoC�who�A�s�whove��A�who�A�veC�have�who’d��A�whoC�who�A�’dC�'d�who’d’ve��A�whoC�who�A�’dC�would�A�’veC�have�who’ll��A�whoC�who�A�’llC�will�who’ll’ve��A�whoC�who�A�’llC�will�A�’veC�have�who’re��A�whoC�who�A�’reC�are�who’s��A�whoC�who�A�’sC�'s�who’ve��A�whoC�who�A�’ve�why'd��A�whyC�why�A�'dC�'d�why'd've��A�whyC�why�A�'dC�would�A�'veC�have�why'll��A�whyC�why�A�'llC�will�why'll've��A�whyC�why�A�'llC�will�A�'veC�have�why're��A�whyC�why�A�'reC�are�why's��A�whyC�why�A�'sC�'s�why've��A�whyC�why�A�'ve�whyd��A�whyC�why�A�dC�'d�whydve��A�whyC�why�A�dC�would�A�veC�have�whyll��A�whyC�why�A�llC�will�whyllve��A�whyC�why�A�llC�will�A�veC�have�whyre��A�whyC�why�A�reC�are�whys��A�whyC�why�A�s�whyve��A�why�A�veC�have�why’d��A�whyC�why�A�’dC�'d�why’d’ve��A�whyC�why�A�’dC�would�A�’veC�have�why’ll��A�whyC�why�A�’llC�will�why’ll’ve��A�whyC�why�A�’llC�will�A�’veC�have�why’re��A�whyC�why�A�’reC�are�why’s��A�whyC�why�A�’sC�'s�why’ve��A�whyC�why�A�’ve�won't��A�woC�will�A�n'tC�not�won't've��A�woC�will�A�n'tC�not�A�'veC�have�wont��A�woC�will�A�ntC�not�wontve��A�woC�will�A�ntC�not�A�veC�have�won’t��A�woC�will�A�n’tC�not�won’t’ve��A�woC�will�A�n’tC�not�A�’veC�have�would've��A�wouldC�would�A�'ve�wouldn't��A�wouldC�would�A�n'tC�not�wouldn't've��A�wouldC�would�A�n'tC�not�A�'veC�have�wouldnt��A�wouldC�would�A�ntC�not�wouldntve��A�wouldC�would�A�ntC�not�A�veC�have�wouldn’t��A�wouldC�would�A�n’tC�not�wouldn’t’ve��A�wouldC�would�A�n’tC�not�A�’veC�have�wouldve��A�wouldC�would�A�ve�would’ve��A�wouldC�would�A�’ve�x.��A�x.�xD��A�xD�xDD��A�xDD�y'all��A�y'C�you�A�all�y.��A�y.�yall��A�yC�you�A�all�you'd��A�youC�you�A�'dC�'d�you'd've��A�youC�you�A�'dC�would�A�'veC�have�you'll��A�youC�you�A�'llC�will�you'll've��A�youC�you�A�'llC�will�A�'veC�have�you're��A�youC�you�A�'reC�are�you've��A�youC�you�A�'veC�have�youd��A�youC�you�A�dC�'d�youdve��A�youC�you�A�dC�would�A�veC�have�youll��A�youC�you�A�llC�will�youllve��A�youC�you�A�llC�will�A�veC�have�youre��A�youC�you�A�reC�are�youve��A�youC�you�A�veC�have�you’d��A�youC�you�A�’dC�'d�you’d’ve��A�youC�you�A�’dC�would�A�’veC�have�you’ll��A�youC�you�A�’llC�will�you’ll’ve��A�youC�you�A�’llC�will�A�’veC�have�you’re��A�youC�you�A�’reC�are�you’ve��A�youC�you�A�’veC�have�y’all��A�y’C�you�A�all�z.��A�z.� ��A� C� �¯\(ツ)/¯��A�¯\(ツ)/¯�°C.��A�°�A�C�A�.�°F.��A�°�A�F�A�.�°K.��A�°�A�K�A�.�°c.��A�°�A�c�A�.�°f.��A�°�A�f�A�.�°k.��A�°�A�k�A�.�ä.��A�ä.�ö.��A�ö.�ü.��A�ü.�ಠ_ಠ��A�ಠ_ಠ�ಠ︵ಠ��A�ಠ︵ಠ�—��A�—�‘S��A�‘SC�'s�‘s��A�‘sC�'s�’��A�’�’Cause��A�’CauseC�because�’Cos��A�’CosC�because�’Coz��A�’CozC�because�’Cuz��A�’CuzC�because�’S��A�’SC�'s�’bout��A�’boutC�about�’cause��A�’causeC�because�’cos��A�’cosC�because�’coz��A�’cozC�because�’cuz��A�’cuzC�because�’d��A�’d�’em��A�’emC�them�’ll��A�’llC�will�’nuff��A�’nuffC�enough�’re��A�’reC�are�’s��A�’sC�'s�’’��A�’’�faster_heuristics�
transformer/cfg ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+ "max_batch_items":4096
3
+ }
transformer/model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:864f5b78b8fb89f85f771bd0adf187562cc5c1861a65d203da4a33b6a8fc2dee
3
+ size 502027402
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,4280 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ "\t",
3
+ "\n",
4
+ " ",
5
+ " ",
6
+ "\"",
7
+ "'",
8
+ "''",
9
+ "'-(",
10
+ "'-)",
11
+ "'Cause",
12
+ "'Cos",
13
+ "'Coz",
14
+ "'Cuz",
15
+ "'S",
16
+ "'X",
17
+ "'Xxx",
18
+ "'Xxxxx",
19
+ "'am",
20
+ "'bout",
21
+ "'cause",
22
+ "'cos",
23
+ "'coz",
24
+ "'cuz",
25
+ "'d",
26
+ "'em",
27
+ "'ll",
28
+ "'m",
29
+ "'nuff",
30
+ "'re",
31
+ "'s",
32
+ "'ve",
33
+ "'x",
34
+ "'xx",
35
+ "'xxx",
36
+ "'xxxx",
37
+ "'y",
38
+ "(",
39
+ "(((",
40
+ "(*>",
41
+ "(*_*)",
42
+ "(-8",
43
+ "(-:",
44
+ "(-;",
45
+ "(-_-)",
46
+ "(-d",
47
+ "(._.)",
48
+ "(:",
49
+ "(;",
50
+ "(=",
51
+ "(>_<)",
52
+ "(^_^)",
53
+ "(o:",
54
+ "(x:",
55
+ "(x_x)",
56
+ "(\u00ac_\u00ac)",
57
+ "(\u0ca0_\u0ca0)",
58
+ "(\u256f\u00b0\u25a1\u00b0\uff09\u256f\ufe35\u253b\u2501\u253b",
59
+ ")",
60
+ ")))",
61
+ ")-:",
62
+ ")/\u00af",
63
+ "):",
64
+ "*",
65
+ "+",
66
+ "+44",
67
+ "+dd",
68
+ ",",
69
+ "-",
70
+ "-((",
71
+ "-))",
72
+ "-/",
73
+ "-0",
74
+ "-3",
75
+ "-8",
76
+ "-D",
77
+ "-O",
78
+ "-P",
79
+ "-X",
80
+ "-_-",
81
+ "-__-",
82
+ "-d",
83
+ "-o",
84
+ "-p",
85
+ "-x",
86
+ "-|",
87
+ ".",
88
+ ".10",
89
+ ".15",
90
+ ".20",
91
+ ".25",
92
+ ".30",
93
+ ".50",
94
+ ".C.",
95
+ ".D.",
96
+ ".E.",
97
+ ".G.",
98
+ ".H.",
99
+ ".J.",
100
+ ".M.",
101
+ ".Y.",
102
+ "._.",
103
+ ".e.",
104
+ ".g.",
105
+ ".m.",
106
+ ".s.",
107
+ "/",
108
+ "/24",
109
+ "/25",
110
+ "/26",
111
+ "/27",
112
+ "/28",
113
+ "/29",
114
+ "/3",
115
+ "/d",
116
+ "/or",
117
+ "0",
118
+ "0.0",
119
+ "0.1",
120
+ "0.2",
121
+ "0.5",
122
+ "0.o",
123
+ "00",
124
+ "000",
125
+ "0000",
126
+ "0004",
127
+ "0006",
128
+ "0009",
129
+ "001",
130
+ "001122334455667788",
131
+ "0020",
132
+ "004",
133
+ "006",
134
+ "009",
135
+ "01/29",
136
+ "010",
137
+ "011",
138
+ "012",
139
+ "013",
140
+ "016",
141
+ "019",
142
+ "01S",
143
+ "01s",
144
+ "02/26",
145
+ "020",
146
+ "024",
147
+ "025",
148
+ "0259",
149
+ "03/28",
150
+ "034",
151
+ "036",
152
+ "04",
153
+ "04/27",
154
+ "05/27",
155
+ "05/29",
156
+ "0505",
157
+ "056",
158
+ "06/25",
159
+ "07/28",
160
+ "08/27",
161
+ "087",
162
+ "09/26",
163
+ "092",
164
+ "0958",
165
+ "0_0",
166
+ "0_o",
167
+ "0th",
168
+ "1",
169
+ "1.1",
170
+ "1.2",
171
+ "1.5",
172
+ "10",
173
+ "10.0.0.10",
174
+ "10.0.0.5",
175
+ "10.0.1.2",
176
+ "10.0.2.1",
177
+ "10.1.1.5",
178
+ "10.1.2.1",
179
+ "10.10.1.1",
180
+ "10/24",
181
+ "100",
182
+ "10a.m",
183
+ "10a.m.",
184
+ "10p.m",
185
+ "10p.m.",
186
+ "10th",
187
+ "11",
188
+ "11/25",
189
+ "11/26",
190
+ "110",
191
+ "111",
192
+ "1110",
193
+ "1111",
194
+ "1114",
195
+ "1115",
196
+ "1117",
197
+ "112",
198
+ "1122",
199
+ "112233445",
200
+ "1122334455667788",
201
+ "112233445566778899",
202
+ "114",
203
+ "115",
204
+ "117",
205
+ "118",
206
+ "11a.m",
207
+ "11a.m.",
208
+ "11p.m",
209
+ "11p.m.",
210
+ "12",
211
+ "12/25",
212
+ "1212",
213
+ "122",
214
+ "1223",
215
+ "123",
216
+ "123123123123123123",
217
+ "1234",
218
+ "1234567800000000",
219
+ "123456789",
220
+ "12345678901234567",
221
+ "123456789098765",
222
+ "1283",
223
+ "129",
224
+ "12a.m",
225
+ "12a.m.",
226
+ "12p.m",
227
+ "12p.m.",
228
+ "15",
229
+ "154",
230
+ "15th",
231
+ "160",
232
+ "172.16.0.1",
233
+ "172.16.0.2",
234
+ "172.16.1.1",
235
+ "172.16.254.1",
236
+ "18th",
237
+ "192.0.2.1",
238
+ "192.168.0.1",
239
+ "192.168.1.1",
240
+ "192.168.1.100",
241
+ "192.168.10.10",
242
+ "192.168.2.2",
243
+ "192.168.3.3",
244
+ "192.168.4.4",
245
+ "198.51.100.1",
246
+ "198.51.100.10",
247
+ "198.51.100.2",
248
+ "198.51.100.20",
249
+ "198.51.100.5",
250
+ "1992",
251
+ "1a.m",
252
+ "1a.m.",
253
+ "1p.m",
254
+ "1p.m.",
255
+ "1st",
256
+ "2",
257
+ "2.1",
258
+ "2.2",
259
+ "20",
260
+ "201",
261
+ "2016",
262
+ "2024",
263
+ "2025",
264
+ "203.0.113.15",
265
+ "203.0.113.25",
266
+ "203.0.113.30",
267
+ "203.0.113.5",
268
+ "203.0.113.50",
269
+ "2036",
270
+ "20th",
271
+ "21",
272
+ "210",
273
+ "211",
274
+ "212",
275
+ "213",
276
+ "22",
277
+ "222",
278
+ "2222",
279
+ "223",
280
+ "223344556",
281
+ "2233445566778899",
282
+ "223344556677889900",
283
+ "23",
284
+ "233",
285
+ "234",
286
+ "238",
287
+ "24/7",
288
+ "243",
289
+ "2468",
290
+ "259",
291
+ "25th",
292
+ "281",
293
+ "283",
294
+ "28th",
295
+ "291",
296
+ "2938",
297
+ "295",
298
+ "2a.m",
299
+ "2a.m.",
300
+ "2p.m",
301
+ "2p.m.",
302
+ "3",
303
+ "3.3",
304
+ "3.5",
305
+ "300",
306
+ "305",
307
+ "3056",
308
+ "309",
309
+ "30th",
310
+ "310",
311
+ "312",
312
+ "321",
313
+ "3210",
314
+ "322",
315
+ "3295",
316
+ "33",
317
+ "332",
318
+ "333",
319
+ "3333",
320
+ "334455667",
321
+ "334455667788990011",
322
+ "334466778",
323
+ "3421",
324
+ "344",
325
+ "3456",
326
+ "3566",
327
+ "3728",
328
+ "374",
329
+ "3827",
330
+ "390",
331
+ "392",
332
+ "3a.m",
333
+ "3a.m.",
334
+ "3p.m",
335
+ "3p.m.",
336
+ "4",
337
+ "4.1",
338
+ "4.4",
339
+ "4/7",
340
+ "4000",
341
+ "404",
342
+ "4111",
343
+ "415",
344
+ "421",
345
+ "424",
346
+ "427",
347
+ "432",
348
+ "4321",
349
+ "435",
350
+ "44",
351
+ "443",
352
+ "444",
353
+ "4444",
354
+ "445",
355
+ "445566778",
356
+ "4455667788990011",
357
+ "445566778899001122",
358
+ "45",
359
+ "4532",
360
+ "456",
361
+ "4567",
362
+ "465",
363
+ "466",
364
+ "468",
365
+ "4812",
366
+ "4a.m",
367
+ "4a.m.",
368
+ "4p.m",
369
+ "4p.m.",
370
+ "5",
371
+ "500",
372
+ "503",
373
+ "505",
374
+ "5291",
375
+ "5300",
376
+ "532",
377
+ "542",
378
+ "543",
379
+ "5432",
380
+ "55",
381
+ "5500",
382
+ "555",
383
+ "5555",
384
+ "556",
385
+ "556677889",
386
+ "5566778899001122",
387
+ "556677889900112233",
388
+ "566",
389
+ "567",
390
+ "5678",
391
+ "5a.m",
392
+ "5a.m.",
393
+ "5p.m",
394
+ "5p.m.",
395
+ "5th",
396
+ "6",
397
+ "600",
398
+ "6011",
399
+ "606",
400
+ "617",
401
+ "619",
402
+ "65",
403
+ "654",
404
+ "6543",
405
+ "66",
406
+ "665",
407
+ "665577889",
408
+ "666",
409
+ "6666",
410
+ "667",
411
+ "667788990",
412
+ "678",
413
+ "6780",
414
+ "6789",
415
+ "695",
416
+ "6:45",
417
+ "6a.m",
418
+ "6a.m.",
419
+ "6p.m",
420
+ "6p.m.",
421
+ "7",
422
+ "702",
423
+ "718",
424
+ "728",
425
+ "751",
426
+ "763",
427
+ "765",
428
+ "7654",
429
+ "77",
430
+ "776655443",
431
+ "7766554433221100",
432
+ "777",
433
+ "7777",
434
+ "778",
435
+ "778899001",
436
+ "7788990011223344",
437
+ "78",
438
+ "780",
439
+ "784",
440
+ "785",
441
+ "788",
442
+ "789",
443
+ "7890",
444
+ "79",
445
+ "7946",
446
+ "7:30",
447
+ "7a.m",
448
+ "7a.m.",
449
+ "7p.m",
450
+ "7p.m.",
451
+ "8",
452
+ "8)",
453
+ "8-",
454
+ "8-)",
455
+ "8-D",
456
+ "8-d",
457
+ "800",
458
+ "812",
459
+ "8129",
460
+ "819238",
461
+ "82390",
462
+ "82392",
463
+ "827",
464
+ "8281",
465
+ "8291",
466
+ "8654",
467
+ "87",
468
+ "870",
469
+ "876",
470
+ "88",
471
+ "888",
472
+ "8888",
473
+ "889",
474
+ "889900112",
475
+ "890",
476
+ "899",
477
+ "8D",
478
+ "8a.m",
479
+ "8a.m.",
480
+ "8d",
481
+ "8p.m",
482
+ "8p.m.",
483
+ "8th",
484
+ "9",
485
+ "900",
486
+ "9010",
487
+ "9012",
488
+ "9013",
489
+ "9019",
490
+ "9087",
491
+ "912",
492
+ "914",
493
+ "915",
494
+ "916",
495
+ "917",
496
+ "923",
497
+ "929",
498
+ "9309",
499
+ "938",
500
+ "9424",
501
+ "9427",
502
+ "943",
503
+ "9435",
504
+ "945",
505
+ "946",
506
+ "947",
507
+ "951",
508
+ "957",
509
+ "958",
510
+ "974",
511
+ "977",
512
+ "978",
513
+ "981",
514
+ "982",
515
+ "987",
516
+ "9870",
517
+ "9876",
518
+ "987654321",
519
+ "987654321000000",
520
+ "9876543210123456",
521
+ "988",
522
+ "99",
523
+ "990",
524
+ "990011223",
525
+ "992",
526
+ "998",
527
+ "998877665",
528
+ "9988776655443322",
529
+ "998877665544332211",
530
+ "999",
531
+ "9999",
532
+ "9a.m",
533
+ "9a.m.",
534
+ "9p.m",
535
+ "9p.m.",
536
+ ":",
537
+ ":'(",
538
+ ":')",
539
+ ":'-(",
540
+ ":'-)",
541
+ ":(",
542
+ ":((",
543
+ ":(((",
544
+ ":()",
545
+ ":)",
546
+ ":))",
547
+ ":)))",
548
+ ":*",
549
+ ":-(",
550
+ ":-((",
551
+ ":-(((",
552
+ ":-)",
553
+ ":-))",
554
+ ":-)))",
555
+ ":-*",
556
+ ":-/",
557
+ ":-0",
558
+ ":-3",
559
+ ":->",
560
+ ":-D",
561
+ ":-O",
562
+ ":-P",
563
+ ":-X",
564
+ ":-]",
565
+ ":-d",
566
+ ":-o",
567
+ ":-p",
568
+ ":-x",
569
+ ":-|",
570
+ ":-}",
571
+ ":/",
572
+ ":0",
573
+ ":1",
574
+ ":3",
575
+ ":30",
576
+ ":45",
577
+ ":>",
578
+ ":D",
579
+ ":O",
580
+ ":P",
581
+ ":X",
582
+ ":]",
583
+ ":d",
584
+ ":o",
585
+ ":o)",
586
+ ":p",
587
+ ":x",
588
+ ":x)",
589
+ ":|",
590
+ ":}",
591
+ ":\u2019(",
592
+ ":\u2019)",
593
+ ":\u2019-(",
594
+ ":\u2019-)",
595
+ ";",
596
+ ";)",
597
+ ";-)",
598
+ ";-D",
599
+ ";-X",
600
+ ";-d",
601
+ ";D",
602
+ ";X",
603
+ ";_;",
604
+ ";d",
605
+ "<",
606
+ "<.<",
607
+ "</3",
608
+ "</d",
609
+ "<3",
610
+ "<33",
611
+ "<333",
612
+ "<d",
613
+ "<dd",
614
+ "<ddd",
615
+ "<space>",
616
+ "<xxxx>",
617
+ "=",
618
+ "=(",
619
+ "=)",
620
+ "=/",
621
+ "=3",
622
+ "=D",
623
+ "=X",
624
+ "=[",
625
+ "=]",
626
+ "=d",
627
+ "=|",
628
+ ">",
629
+ ">.<",
630
+ ">.>",
631
+ ">:(",
632
+ ">:o",
633
+ ">:x",
634
+ "><(((*>",
635
+ "@",
636
+ "@_@",
637
+ "A",
638
+ "A1234567",
639
+ "A123456789",
640
+ "AM",
641
+ "ARD",
642
+ "AT611904300234573201",
643
+ "Adm",
644
+ "Adm.",
645
+ "Africa",
646
+ "After",
647
+ "Ahmed",
648
+ "Ai",
649
+ "Ak",
650
+ "Ak.",
651
+ "Ala",
652
+ "Ala.",
653
+ "Alabama",
654
+ "Alaska",
655
+ "Alberta",
656
+ "Alejandro",
657
+ "Alex",
658
+ "Alps",
659
+ "Always",
660
+ "Amazon",
661
+ "America",
662
+ "American",
663
+ "Amex",
664
+ "Amid",
665
+ "Amidst",
666
+ "Ana",
667
+ "Andes",
668
+ "Angkor",
669
+ "Apr",
670
+ "Apr.",
671
+ "April",
672
+ "Arabia",
673
+ "Are",
674
+ "Ariz",
675
+ "Ariz.",
676
+ "Arizona",
677
+ "Ark",
678
+ "Ark.",
679
+ "Arkansas",
680
+ "As",
681
+ "Asia",
682
+ "At",
683
+ "Aug",
684
+ "Aug.",
685
+ "August",
686
+ "Australia",
687
+ "Austria",
688
+ "B",
689
+ "B1234567",
690
+ "B987654321",
691
+ "BAN",
692
+ "BE68539007547034",
693
+ "BER",
694
+ "BG80BNBG96611020345678",
695
+ "Bangkok",
696
+ "Baptist",
697
+ "Barcelona",
698
+ "Barrier",
699
+ "Base",
700
+ "Beach",
701
+ "Belgium",
702
+ "Big",
703
+ "Brazil",
704
+ "Brooklyn",
705
+ "Bros",
706
+ "Bros.",
707
+ "Brussels",
708
+ "Buddha",
709
+ "Buddhist",
710
+ "Bulgaria",
711
+ "By",
712
+ "C",
713
+ "C'm",
714
+ "C++",
715
+ "C.",
716
+ "C12345678",
717
+ "CH9300762011623852957",
718
+ "CREDIT_CARD",
719
+ "CVV",
720
+ "CY17002001280000001200527600",
721
+ "Ca",
722
+ "Cairo",
723
+ "Calif",
724
+ "Calif.",
725
+ "California",
726
+ "Cambodia",
727
+ "Camp",
728
+ "Can",
729
+ "Canada",
730
+ "Cannon",
731
+ "Canyon",
732
+ "Carla",
733
+ "Carlos",
734
+ "Catholic",
735
+ "Cause",
736
+ "Central",
737
+ "China",
738
+ "Chris",
739
+ "Christ",
740
+ "Christian",
741
+ "Christians",
742
+ "Christmas",
743
+ "Co",
744
+ "Co.",
745
+ "Coast",
746
+ "Colo",
747
+ "Colo.",
748
+ "Colombia",
749
+ "Colorado",
750
+ "Colosseum",
751
+ "Conn",
752
+ "Conn.",
753
+ "Connecticut",
754
+ "Copacabana",
755
+ "Corp",
756
+ "Corp.",
757
+ "Cos",
758
+ "Could",
759
+ "Coz",
760
+ "Croatia",
761
+ "Cusco",
762
+ "Cuz",
763
+ "Cyprus",
764
+ "C\u2019m",
765
+ "D",
766
+ "D.",
767
+ "D.C.",
768
+ "D9876543",
769
+ "D9876543210",
770
+ "DATE_TIME",
771
+ "DDoS",
772
+ "DE89370400440532013000",
773
+ "DK5000400440116243",
774
+ "DMV",
775
+ "Dalai",
776
+ "Daniel",
777
+ "Dare",
778
+ "David",
779
+ "Dawa",
780
+ "Day",
781
+ "Dec",
782
+ "Dec.",
783
+ "December",
784
+ "Del",
785
+ "Del.",
786
+ "Delaware",
787
+ "Denmark",
788
+ "Despite",
789
+ "Did",
790
+ "Discover",
791
+ "Do",
792
+ "DoS",
793
+ "Does",
794
+ "Doin",
795
+ "Doin'",
796
+ "Doin\u2019",
797
+ "Dr",
798
+ "Dr.",
799
+ "During",
800
+ "Dutch",
801
+ "E",
802
+ "E.G.",
803
+ "E.g",
804
+ "E.g.",
805
+ "E1234567890",
806
+ "EMAIL_ADDRESS",
807
+ "ES9121000418450200051332",
808
+ "ESS",
809
+ "Each",
810
+ "Egypt",
811
+ "Elena",
812
+ "Emily",
813
+ "Emma",
814
+ "Ensure",
815
+ "Epiphany",
816
+ "Ethiopian",
817
+ "Europe",
818
+ "European",
819
+ "Eurozone",
820
+ "Evangelical",
821
+ "Everest",
822
+ "Every",
823
+ "Exploring",
824
+ "F",
825
+ "F.",
826
+ "FAQ",
827
+ "FI2112345600000785",
828
+ "FR1420041010050500013M02606",
829
+ "Fatima",
830
+ "Feb",
831
+ "Feb.",
832
+ "February",
833
+ "Fi",
834
+ "Find",
835
+ "Finland",
836
+ "Fla",
837
+ "Fla.",
838
+ "Florida",
839
+ "For",
840
+ "Forum",
841
+ "France",
842
+ "French",
843
+ "Friday",
844
+ "From",
845
+ "G",
846
+ "GB82WEST12345698765432",
847
+ "GR1601101250000000012300695",
848
+ "Ga",
849
+ "Ga.",
850
+ "Geirangerfjord",
851
+ "Gen",
852
+ "Gen.",
853
+ "Georgia",
854
+ "German",
855
+ "Goin",
856
+ "Goin'",
857
+ "Goin\u2019",
858
+ "Gon",
859
+ "Got",
860
+ "Gov",
861
+ "Gov.",
862
+ "Grand",
863
+ "Great",
864
+ "Greece",
865
+ "Growing",
866
+ "H",
867
+ "HR",
868
+ "HR1210010051863000160",
869
+ "HU42117730161111101800000000",
870
+ "Had",
871
+ "Has",
872
+ "Have",
873
+ "Havin",
874
+ "Havin'",
875
+ "Havin\u2019",
876
+ "He",
877
+ "He's",
878
+ "He\u2019s",
879
+ "Highway",
880
+ "Himalayan",
881
+ "Hindu",
882
+ "Hiroshi",
883
+ "How",
884
+ "How's",
885
+ "How\u2019s",
886
+ "Hungary",
887
+ "I",
888
+ "I.E.",
889
+ "I.e",
890
+ "I.e.",
891
+ "IBAN",
892
+ "IBAN_CODE",
893
+ "IME",
894
+ "INs",
895
+ "ION",
896
+ "IP",
897
+ "IP_ADDRESS",
898
+ "IRS",
899
+ "IT",
900
+ "IT60X0542811101000000123456",
901
+ "ITIN",
902
+ "ITINs",
903
+ "Ia",
904
+ "Ia.",
905
+ "Id",
906
+ "Id.",
907
+ "Idaho",
908
+ "Identification",
909
+ "If",
910
+ "Ill",
911
+ "Ill.",
912
+ "Illinois",
913
+ "In",
914
+ "Inc",
915
+ "Inc.",
916
+ "Ind",
917
+ "Ind.",
918
+ "India",
919
+ "Indiana",
920
+ "Individual",
921
+ "Iowa",
922
+ "Ipanema",
923
+ "Iranian",
924
+ "Is",
925
+ "It",
926
+ "It's",
927
+ "Italian",
928
+ "Italy",
929
+ "It\u2019s",
930
+ "J",
931
+ "Jain",
932
+ "James",
933
+ "Jan",
934
+ "Jan.",
935
+ "Jane",
936
+ "Janeiro",
937
+ "January",
938
+ "Japan",
939
+ "Japanese",
940
+ "Jason",
941
+ "Jean",
942
+ "Jersey",
943
+ "Jessica",
944
+ "Jewish",
945
+ "John",
946
+ "Join",
947
+ "Jr",
948
+ "Jr.",
949
+ "Juan",
950
+ "Jul",
951
+ "Jul.",
952
+ "July",
953
+ "Jun",
954
+ "Jun.",
955
+ "June",
956
+ "K",
957
+ "K.",
958
+ "K123456789012",
959
+ "Kan",
960
+ "Kan.",
961
+ "Kans",
962
+ "Kans.",
963
+ "Kansas",
964
+ "Karen",
965
+ "Karim",
966
+ "Kentucky",
967
+ "Kenya",
968
+ "Kevin",
969
+ "Kilimanjaro",
970
+ "Kruger",
971
+ "Ky",
972
+ "Ky.",
973
+ "L",
974
+ "LOCATION",
975
+ "LU280019400644750000",
976
+ "La",
977
+ "La.",
978
+ "Lake",
979
+ "Lama",
980
+ "Lars",
981
+ "Las",
982
+ "Laura",
983
+ "Learn",
984
+ "Let",
985
+ "Let's",
986
+ "Let\u2019s",
987
+ "Liberty",
988
+ "Linda",
989
+ "Living",
990
+ "London",
991
+ "Louise",
992
+ "Louisiana",
993
+ "Lovin",
994
+ "Lovin'",
995
+ "Lovin\u2019",
996
+ "Ltd",
997
+ "Ltd.",
998
+ "Luis",
999
+ "Lutheran",
1000
+ "Luxembourg",
1001
+ "M",
1002
+ "M987654321",
1003
+ "MT84MALT011000012345MTLCAST001S",
1004
+ "Ma'am",
1005
+ "Machu",
1006
+ "Mahmoud",
1007
+ "Maldives",
1008
+ "Malta",
1009
+ "Mar",
1010
+ "Mar.",
1011
+ "March",
1012
+ "Maria",
1013
+ "Mark",
1014
+ "Marrakech",
1015
+ "Mass",
1016
+ "Mass.",
1017
+ "Massachusetts",
1018
+ "MasterCard",
1019
+ "May",
1020
+ "Ma\u2019am",
1021
+ "Md",
1022
+ "Md.",
1023
+ "Mediterranean",
1024
+ "Megan",
1025
+ "Messrs",
1026
+ "Messrs.",
1027
+ "Mich",
1028
+ "Mich.",
1029
+ "Michael",
1030
+ "Michigan",
1031
+ "Might",
1032
+ "Miguel",
1033
+ "Minn",
1034
+ "Minn.",
1035
+ "Minnesota",
1036
+ "Miss",
1037
+ "Miss.",
1038
+ "Mississippi",
1039
+ "Mo",
1040
+ "Mo.",
1041
+ "Monday",
1042
+ "Mont",
1043
+ "Mont.",
1044
+ "Monument",
1045
+ "Morocco",
1046
+ "Moshi",
1047
+ "Mount",
1048
+ "Mountains",
1049
+ "Mr",
1050
+ "Mr.",
1051
+ "Mrs",
1052
+ "Mrs.",
1053
+ "Ms",
1054
+ "Ms.",
1055
+ "Mt",
1056
+ "Mt.",
1057
+ "Mumbai",
1058
+ "Muslim",
1059
+ "Must",
1060
+ "My",
1061
+ "N",
1062
+ "N.C.",
1063
+ "N.D.",
1064
+ "N.H.",
1065
+ "N.J.",
1066
+ "N.M.",
1067
+ "N.Y.",
1068
+ "NL91ABNA0417164300",
1069
+ "NO9386011117947",
1070
+ "NRP",
1071
+ "NSE",
1072
+ "Nairobi",
1073
+ "National",
1074
+ "Neb",
1075
+ "Neb.",
1076
+ "Nebr",
1077
+ "Nebr.",
1078
+ "Nebraska",
1079
+ "Need",
1080
+ "Nepal",
1081
+ "Network",
1082
+ "Nev",
1083
+ "Nev.",
1084
+ "Nevada",
1085
+ "New",
1086
+ "New Hampshire",
1087
+ "New Jersey",
1088
+ "New Mexico",
1089
+ "New York",
1090
+ "Nice",
1091
+ "Nigeria",
1092
+ "Nkechi",
1093
+ "North Carolina",
1094
+ "North Dakota",
1095
+ "Norway",
1096
+ "Not",
1097
+ "Nothin",
1098
+ "Nothin'",
1099
+ "Nothin\u2019",
1100
+ "Nov",
1101
+ "Nov.",
1102
+ "November",
1103
+ "Number",
1104
+ "Numbers",
1105
+ "Nuthin",
1106
+ "Nuthin'",
1107
+ "Nuthin\u2019",
1108
+ "O",
1109
+ "O'clock",
1110
+ "O.O",
1111
+ "O.o",
1112
+ "ODE",
1113
+ "ORT",
1114
+ "O_O",
1115
+ "O_o",
1116
+ "Oct",
1117
+ "Oct.",
1118
+ "October",
1119
+ "Ohio",
1120
+ "Okla",
1121
+ "Okla.",
1122
+ "Oklahoma",
1123
+ "Ol",
1124
+ "Ol'",
1125
+ "Olivia",
1126
+ "Ol\u2019",
1127
+ "Ore",
1128
+ "Ore.",
1129
+ "Oregon",
1130
+ "Orthodox",
1131
+ "Ought",
1132
+ "Our",
1133
+ "O\u2019clock",
1134
+ "P",
1135
+ "PHONE_NUMBER",
1136
+ "PM",
1137
+ "PT50000201231234567890154",
1138
+ "Pa",
1139
+ "Pa.",
1140
+ "Pacific",
1141
+ "Palestinian",
1142
+ "Pantheon",
1143
+ "Paris",
1144
+ "Park",
1145
+ "Party",
1146
+ "Patricia",
1147
+ "Pennsylvania",
1148
+ "Pentecostal",
1149
+ "Peru",
1150
+ "Ph",
1151
+ "Ph.D.",
1152
+ "Picchu",
1153
+ "Pierre",
1154
+ "Please",
1155
+ "Portugal",
1156
+ "Priya",
1157
+ "Prof",
1158
+ "Prof.",
1159
+ "Punjabi",
1160
+ "Q",
1161
+ "Queensland",
1162
+ "R",
1163
+ "R8765432",
1164
+ "ROOT",
1165
+ "RSVP",
1166
+ "Rachel",
1167
+ "Rainforest",
1168
+ "Ramadan",
1169
+ "Raul",
1170
+ "Ravi",
1171
+ "Rebecca",
1172
+ "Redeemer",
1173
+ "Reef",
1174
+ "Rep",
1175
+ "Rep.",
1176
+ "Rev",
1177
+ "Rev.",
1178
+ "Rio",
1179
+ "Robert",
1180
+ "Roman",
1181
+ "Rome",
1182
+ "Rosa",
1183
+ "Russian",
1184
+ "S",
1185
+ "S.C.",
1186
+ "S987654321",
1187
+ "SE4550000000058398257466",
1188
+ "SON",
1189
+ "SSN",
1190
+ "SVP",
1191
+ "Sailing",
1192
+ "Sam",
1193
+ "Samantha",
1194
+ "Sarah",
1195
+ "Saturday",
1196
+ "Saudi",
1197
+ "Sea",
1198
+ "Security",
1199
+ "Sen",
1200
+ "Sen.",
1201
+ "Sep",
1202
+ "Sep.",
1203
+ "Sept",
1204
+ "Sept.",
1205
+ "September",
1206
+ "Sha",
1207
+ "She",
1208
+ "She's",
1209
+ "She\u2019s",
1210
+ "Shia",
1211
+ "Shinto",
1212
+ "Should",
1213
+ "Sikh",
1214
+ "Social",
1215
+ "Socialist",
1216
+ "Sognefjord",
1217
+ "Somchai",
1218
+ "Somethin",
1219
+ "Somethin'",
1220
+ "Somethin\u2019",
1221
+ "South",
1222
+ "South Carolina",
1223
+ "Southern",
1224
+ "Southwest",
1225
+ "Spain",
1226
+ "Square",
1227
+ "St",
1228
+ "St.",
1229
+ "States",
1230
+ "Statue",
1231
+ "Sunni",
1232
+ "Sur",
1233
+ "Sweden",
1234
+ "Swiss",
1235
+ "Switzerland",
1236
+ "T",
1237
+ "T876543210",
1238
+ "TIN",
1239
+ "TSA",
1240
+ "Tanzania",
1241
+ "Taxpayer",
1242
+ "Tenn",
1243
+ "Tenn.",
1244
+ "Tennessee",
1245
+ "Texas",
1246
+ "Thailand",
1247
+ "That",
1248
+ "That's",
1249
+ "That\u2019s",
1250
+ "The",
1251
+ "There",
1252
+ "There's",
1253
+ "There\u2019s",
1254
+ "These",
1255
+ "They",
1256
+ "This",
1257
+ "This's",
1258
+ "This\u2019s",
1259
+ "Those",
1260
+ "Thursday",
1261
+ "Tibetan",
1262
+ "Times",
1263
+ "Timkat",
1264
+ "To",
1265
+ "Tokyo",
1266
+ "Tom",
1267
+ "Tuscany",
1268
+ "U",
1269
+ "U1234567",
1270
+ "UK",
1271
+ "URL",
1272
+ "US",
1273
+ "USA",
1274
+ "US_BANK_NUMBER",
1275
+ "US_DRIVER_LICENSE",
1276
+ "US_ITIN",
1277
+ "US_PASSPORT",
1278
+ "US_SSN",
1279
+ "United",
1280
+ "Upon",
1281
+ "Utah",
1282
+ "V",
1283
+ "V.V",
1284
+ "V98765432",
1285
+ "VPN",
1286
+ "V_V",
1287
+ "Va",
1288
+ "Va.",
1289
+ "Vaisakhi",
1290
+ "Valley",
1291
+ "Vegas",
1292
+ "Venezuela",
1293
+ "Virginia",
1294
+ "Visa",
1295
+ "Visiting",
1296
+ "W",
1297
+ "W12345678",
1298
+ "Was",
1299
+ "Wash",
1300
+ "Wash.",
1301
+ "Washington",
1302
+ "Wat",
1303
+ "We",
1304
+ "Were",
1305
+ "What",
1306
+ "What's",
1307
+ "What\u2019s",
1308
+ "When",
1309
+ "When's",
1310
+ "When\u2019s",
1311
+ "Where",
1312
+ "Where's",
1313
+ "Where\u2019s",
1314
+ "While",
1315
+ "Who",
1316
+ "Who's",
1317
+ "Who\u2019s",
1318
+ "Why",
1319
+ "Why's",
1320
+ "Why\u2019s",
1321
+ "Wi",
1322
+ "Wis",
1323
+ "Wis.",
1324
+ "Wisconsin",
1325
+ "Wo",
1326
+ "Would",
1327
+ "X'x",
1328
+ "X'xxxx",
1329
+ "X++",
1330
+ "X.",
1331
+ "X.X",
1332
+ "X.X.",
1333
+ "X.x",
1334
+ "X.x.",
1335
+ "X87654321",
1336
+ "XD",
1337
+ "XDD",
1338
+ "XX",
1339
+ "XXX",
1340
+ "XXXX",
1341
+ "XXXX_XXXX",
1342
+ "XXXXx",
1343
+ "XX_XXX",
1344
+ "XX_XXXX",
1345
+ "XX_XXXX_XXXX",
1346
+ "XXddXXXXdddd",
1347
+ "XXddXXXXddddXXXXdddX",
1348
+ "XXddXdddd",
1349
+ "XXdddd",
1350
+ "XXddddXdddd",
1351
+ "XXxX",
1352
+ "X_X",
1353
+ "X_x",
1354
+ "Xdddd",
1355
+ "Xx",
1356
+ "Xx'",
1357
+ "Xx'x",
1358
+ "Xx'xx",
1359
+ "Xx.",
1360
+ "Xx.X.",
1361
+ "Xxx",
1362
+ "Xxx'x",
1363
+ "Xxx.",
1364
+ "Xxxx",
1365
+ "Xxxx'",
1366
+ "Xxxx'x",
1367
+ "Xxxx.",
1368
+ "Xxxxx",
1369
+ "Xxxxx'",
1370
+ "Xxxxx'x",
1371
+ "Xxxxx.",
1372
+ "XxxxxXxxx",
1373
+ "Xxxxx\u2019",
1374
+ "Xxxxx\u2019x",
1375
+ "Xxxx\u2019",
1376
+ "Xxxx\u2019x",
1377
+ "Xxx\u2019x",
1378
+ "Xx\u2019",
1379
+ "Xx\u2019x",
1380
+ "Xx\u2019xx",
1381
+ "X\u2019x",
1382
+ "X\u2019xxxx",
1383
+ "Y",
1384
+ "Y123456789",
1385
+ "Yared",
1386
+ "York",
1387
+ "You",
1388
+ "Your",
1389
+ "Z",
1390
+ "Z98765432",
1391
+ "[",
1392
+ "[-:",
1393
+ "[:",
1394
+ "[=",
1395
+ "\\",
1396
+ "\\\")",
1397
+ "\\n",
1398
+ "\\t",
1399
+ "\\x",
1400
+ "]",
1401
+ "]=",
1402
+ "^",
1403
+ "^_^",
1404
+ "^__^",
1405
+ "^___^",
1406
+ "_*)",
1407
+ "_-)",
1408
+ "_.)",
1409
+ "_<)",
1410
+ "_^)",
1411
+ "__-",
1412
+ "__^",
1413
+ "_\u00ac)",
1414
+ "_\u0ca0)",
1415
+ "a",
1416
+ "a.",
1417
+ "a.m",
1418
+ "a.m.",
1419
+ "a1234567",
1420
+ "a123456789",
1421
+ "abi",
1422
+ "about",
1423
+ "abroad",
1424
+ "academic",
1425
+ "accepted",
1426
+ "access",
1427
+ "acclimate",
1428
+ "accommodate",
1429
+ "account",
1430
+ "accountant",
1431
+ "accuracy",
1432
+ "accurate",
1433
+ "accurately",
1434
+ "ace",
1435
+ "ach",
1436
+ "ack",
1437
+ "across",
1438
+ "act",
1439
+ "activate",
1440
+ "activated",
1441
+ "activities",
1442
+ "activity",
1443
+ "acy",
1444
+ "ada",
1445
+ "added",
1446
+ "additional",
1447
+ "address",
1448
+ "addresses",
1449
+ "ade",
1450
+ "adjustments",
1451
+ "adm",
1452
+ "adm.",
1453
+ "administrative",
1454
+ "administrator",
1455
+ "administrators",
1456
+ "ado",
1457
+ "advantage",
1458
+ "adventure",
1459
+ "adventures",
1460
+ "adventurous",
1461
+ "advice",
1462
+ "advised",
1463
+ "advocate",
1464
+ "ady",
1465
+ "ael",
1466
+ "afe",
1467
+ "africa",
1468
+ "after",
1469
+ "afternoon",
1470
+ "age",
1471
+ "agency",
1472
+ "agenda",
1473
+ "ago",
1474
+ "agreement",
1475
+ "ahead",
1476
+ "ahmed",
1477
+ "ai",
1478
+ "aid",
1479
+ "ail",
1480
+ "aim",
1481
+ "ain",
1482
+ "air",
1483
+ "airline",
1484
+ "airport",
1485
+ "airports",
1486
+ "ak",
1487
+ "ak.",
1488
+ "ake",
1489
+ "aks",
1490
+ "ala",
1491
+ "ala.",
1492
+ "alberta",
1493
+ "alcohol",
1494
+ "ale",
1495
+ "alejandro",
1496
+ "alex",
1497
+ "all",
1498
+ "alleys",
1499
+ "allocated",
1500
+ "allow",
1501
+ "allowing",
1502
+ "along",
1503
+ "alps",
1504
+ "als",
1505
+ "also",
1506
+ "alumni",
1507
+ "always",
1508
+ "aly",
1509
+ "am",
1510
+ "ama",
1511
+ "amazon",
1512
+ "ame",
1513
+ "america",
1514
+ "american",
1515
+ "amex",
1516
+ "amid",
1517
+ "amidst",
1518
+ "amount",
1519
+ "amp",
1520
+ "ams",
1521
+ "an",
1522
+ "an.",
1523
+ "ana",
1524
+ "analysis",
1525
+ "analyzing",
1526
+ "ancestors",
1527
+ "ancient",
1528
+ "and",
1529
+ "and/or",
1530
+ "andes",
1531
+ "ane",
1532
+ "angkor",
1533
+ "ank",
1534
+ "annual",
1535
+ "another",
1536
+ "ans",
1537
+ "answer",
1538
+ "ant",
1539
+ "anxiety",
1540
+ "any",
1541
+ "app",
1542
+ "applicants",
1543
+ "application",
1544
+ "applications",
1545
+ "applied",
1546
+ "apply",
1547
+ "applying",
1548
+ "appointment",
1549
+ "appreciate",
1550
+ "apr",
1551
+ "apr.",
1552
+ "ar.",
1553
+ "arabia",
1554
+ "architecture",
1555
+ "ard",
1556
+ "are",
1557
+ "area",
1558
+ "ari",
1559
+ "arid",
1560
+ "ariz",
1561
+ "ariz.",
1562
+ "arizona",
1563
+ "ark",
1564
+ "ark.",
1565
+ "arm",
1566
+ "arn",
1567
+ "aro",
1568
+ "aroma",
1569
+ "around",
1570
+ "arp",
1571
+ "arrangements",
1572
+ "array",
1573
+ "arrive",
1574
+ "ars",
1575
+ "art",
1576
+ "ary",
1577
+ "as",
1578
+ "ase",
1579
+ "ash",
1580
+ "asia",
1581
+ "asked",
1582
+ "aspect",
1583
+ "ass",
1584
+ "assess",
1585
+ "assign",
1586
+ "assigned",
1587
+ "assist",
1588
+ "assistance",
1589
+ "ast",
1590
+ "asy",
1591
+ "at",
1592
+ "at611904300234573201",
1593
+ "ata",
1594
+ "ate",
1595
+ "ath",
1596
+ "attack",
1597
+ "attacker",
1598
+ "attempts",
1599
+ "attend",
1600
+ "attendees",
1601
+ "attention",
1602
+ "attracting",
1603
+ "attractions",
1604
+ "audit",
1605
+ "aug",
1606
+ "aug.",
1607
+ "august",
1608
+ "aul",
1609
+ "australia",
1610
+ "austria",
1611
+ "authorization",
1612
+ "automatic",
1613
+ "available",
1614
+ "ave",
1615
+ "avi",
1616
+ "avoid",
1617
+ "avoiding",
1618
+ "awa",
1619
+ "awaited",
1620
+ "away",
1621
+ "awe",
1622
+ "ays",
1623
+ "aze",
1624
+ "b",
1625
+ "b.",
1626
+ "b1234567",
1627
+ "b987654321",
1628
+ "back",
1629
+ "background",
1630
+ "backpacking",
1631
+ "backups",
1632
+ "bag",
1633
+ "bai",
1634
+ "bal",
1635
+ "ban",
1636
+ "bangkok",
1637
+ "bank",
1638
+ "banking",
1639
+ "baptist",
1640
+ "barcelona",
1641
+ "barrier",
1642
+ "base",
1643
+ "based",
1644
+ "be",
1645
+ "be68539007547034",
1646
+ "beach",
1647
+ "beaches",
1648
+ "beautiful",
1649
+ "beauty",
1650
+ "because",
1651
+ "become",
1652
+ "bed",
1653
+ "been",
1654
+ "before",
1655
+ "begin",
1656
+ "beginning",
1657
+ "begins",
1658
+ "being",
1659
+ "belgium",
1660
+ "beliefs",
1661
+ "believers",
1662
+ "believing",
1663
+ "belonged",
1664
+ "belonging",
1665
+ "beloved",
1666
+ "benefit",
1667
+ "benefits",
1668
+ "ber",
1669
+ "best",
1670
+ "bg80bnbg96611020345678",
1671
+ "bia",
1672
+ "big",
1673
+ "billing",
1674
1675
+ "biologists",
1676
+ "birthday",
1677
+ "ble",
1678
+ "blended",
1679
+ "blending",
1680
+ "blocked",
1681
+ "blog",
1682
+ "bond",
1683
+ "book",
1684
+ "booked",
1685
+ "booking",
1686
+ "boost",
1687
+ "boosting",
1688
+ "border",
1689
+ "born",
1690
+ "both",
1691
+ "bout",
1692
+ "box",
1693
+ "br.",
1694
+ "brazil",
1695
+ "breach",
1696
+ "breathtaking",
1697
+ "bride",
1698
+ "bridge",
1699
+ "bringing",
1700
+ "brooklyn",
1701
+ "bros",
1702
+ "bros.",
1703
+ "brussels",
1704
+ "brute",
1705
+ "buddha",
1706
+ "buddhist",
1707
+ "budgeting",
1708
+ "bulgaria",
1709
+ "business",
1710
+ "bustle",
1711
+ "bustling",
1712
+ "but",
1713
+ "by",
1714
+ "c",
1715
+ "c'm",
1716
+ "c++",
1717
+ "c.",
1718
+ "c12345678",
1719
+ "ca",
1720
+ "cairo",
1721
+ "cal",
1722
+ "calendar",
1723
+ "calif",
1724
+ "calif.",
1725
+ "california",
1726
+ "call",
1727
+ "called",
1728
+ "cambodia",
1729
+ "camp",
1730
+ "campaign",
1731
+ "campus",
1732
+ "can",
1733
+ "canada",
1734
+ "cannon",
1735
+ "canyon",
1736
+ "capturing",
1737
+ "car",
1738
+ "card",
1739
+ "care",
1740
+ "careers",
1741
+ "careful",
1742
+ "carefully",
1743
+ "carla",
1744
+ "carlos",
1745
+ "carry",
1746
+ "carvings",
1747
+ "case",
1748
+ "cashier",
1749
+ "catalog",
1750
+ "catching",
1751
+ "catholic",
1752
+ "cause",
1753
+ "causing",
1754
+ "cca",
1755
+ "cco",
1756
+ "ce>",
1757
+ "ced",
1758
+ "celebrated",
1759
+ "celebration",
1760
+ "celebrations",
1761
+ "cell",
1762
+ "center",
1763
+ "central",
1764
+ "cer",
1765
+ "ceremonies",
1766
+ "ceremony",
1767
+ "ces",
1768
+ "ch.",
1769
+ "ch9300762011623852957",
1770
+ "challenges",
1771
+ "challenging",
1772
+ "change",
1773
+ "changes",
1774
+ "changing",
1775
+ "chants",
1776
+ "charity",
1777
1778
+ "charm",
1779
+ "chatted",
1780
+ "check",
1781
+ "checked",
1782
+ "checking",
1783
+ "checkout",
1784
+ "checkpoint",
1785
+ "checkpoints",
1786
+ "checks",
1787
+ "cherished",
1788
+ "chi",
1789
+ "child",
1790
+ "childhood",
1791
+ "china",
1792
+ "chris",
1793
+ "christ",
1794
+ "christian",
1795
+ "christians",
1796
+ "christmas",
1797
+ "chu",
1798
+ "church",
1799
+ "cia",
1800
+ "circumstances",
1801
+ "cities",
1802
+ "city",
1803
+ "cks",
1804
+ "claim",
1805
+ "class",
1806
+ "classroom",
1807
+ "cle",
1808
+ "clearance",
1809
+ "click",
1810
+ "clients",
1811
+ "cliffs",
1812
+ "clinic",
1813
+ "cloud",
1814
+ "co",
1815
+ "co.",
1816
+ "coast",
1817
+ "coastal",
1818
+ "code",
1819
+ "coexist",
1820
+ "col",
1821
+ "collaboration",
1822
+ "collaborations",
1823
+ "college",
1824
+ "colo",
1825
+ "colo.",
1826
+ "colombia",
1827
+ "colorado",
1828
+ "colorful",
1829
+ "colors",
1830
+ "colosseum",
1831
+ "com",
1832
+ "come",
1833
+ "comfort",
1834
+ "comments",
1835
1836
+ "committee",
1837
+ "communicating",
1838
+ "communication",
1839
+ "community",
1840
+ "company",
1841
+ "compared",
1842
+ "complete",
1843
+ "completed",
1844
+ "completing",
1845
+ "complex",
1846
+ "compliance",
1847
+ "complications",
1848
+ "comply",
1849
+ "compromised",
1850
+ "concerns",
1851
+ "concert",
1852
+ "conference",
1853
+ "confidential",
1854
+ "configured",
1855
+ "configuring",
1856
+ "confirm",
1857
+ "confirmed",
1858
+ "conflicts",
1859
+ "conn",
1860
+ "conn.",
1861
+ "connect",
1862
+ "connected",
1863
+ "connection",
1864
+ "connections",
1865
+ "connectivity",
1866
+ "consent",
1867
+ "construction",
1868
+ "contact",
1869
+ "contacted",
1870
+ "contacts",
1871
+ "contained",
1872
+ "content",
1873
+ "continue",
1874
+ "continued",
1875
+ "coordinator",
1876
+ "copacabana",
1877
+ "copies",
1878
+ "copy",
1879
+ "core",
1880
+ "corp",
1881
+ "corp.",
1882
+ "corporate",
1883
+ "correct",
1884
+ "corrected",
1885
+ "correctly",
1886
+ "corresponding",
1887
+ "cos",
1888
+ "could",
1889
+ "countermeasures",
1890
+ "countless",
1891
+ "countries",
1892
+ "country",
1893
+ "course",
1894
+ "cousin",
1895
+ "cover",
1896
+ "coverage",
1897
+ "coz",
1898
+ "create",
1899
+ "creating",
1900
+ "creative",
1901
+ "credit",
1902
+ "credit_card",
1903
+ "credits",
1904
+ "critical",
1905
+ "croatia",
1906
+ "cross",
1907
+ "crowded",
1908
+ "crucial",
1909
+ "cruise",
1910
+ "ct.",
1911
+ "cts",
1912
+ "cuisine",
1913
+ "culmination",
1914
+ "cultural",
1915
+ "culture",
1916
+ "cultures",
1917
+ "current",
1918
+ "cusco",
1919
+ "customer",
1920
+ "customers",
1921
+ "cutting",
1922
+ "cuz",
1923
+ "cvv",
1924
+ "cy17002001280000001200527600",
1925
+ "cybersecurity",
1926
+ "cyprus",
1927
+ "c\u2019m",
1928
+ "d",
1929
+ "d)",
1930
+ "d-",
1931
+ "d-)",
1932
+ "d-X",
1933
+ "d.",
1934
+ "d.c.",
1935
+ "d.d",
1936
+ "d.x",
1937
+ "d9876543",
1938
+ "d9876543210",
1939
+ "d:dd",
1940
+ "dX",
1941
+ "d_d",
1942
+ "d_x",
1943
+ "daily",
1944
+ "dalai",
1945
+ "damage",
1946
+ "dan",
1947
+ "daniel",
1948
+ "dar",
1949
+ "dare",
1950
+ "dashboard",
1951
+ "data",
1952
+ "date",
1953
+ "date_time",
1954
+ "david",
1955
+ "dawa",
1956
+ "day",
1957
+ "dd",
1958
+ "dd.d.d.d",
1959
+ "dd.d.d.dd",
1960
+ "dd.dd.d.d",
1961
+ "dd/d",
1962
+ "dd/dd",
1963
+ "ddd",
1964
+ "ddd.d.d.d",
1965
+ "ddd.d.ddd.d",
1966
+ "ddd.d.ddd.dd",
1967
+ "ddd.dd.d.d",
1968
+ "ddd.dd.ddd.d",
1969
+ "ddd.dd.ddd.dd",
1970
+ "ddd.ddd.d.d",
1971
+ "ddd.ddd.d.ddd",
1972
+ "ddd.ddd.dd.dd",
1973
+ "dddd",
1974
+ "ddos",
1975
+ "ddx.x",
1976
+ "ddx.x.",
1977
+ "ddxx",
1978
+ "de",
1979
+ "de89370400440532013000",
1980
+ "deadline",
1981
+ "deal",
1982
+ "dealing",
1983
+ "deals",
1984
+ "dec",
1985
+ "dec.",
1986
+ "decade",
1987
+ "december",
1988
+ "decided",
1989
+ "ded",
1990
+ "deductions",
1991
+ "deep",
1992
+ "deepening",
1993
+ "deeply",
1994
+ "del",
1995
+ "del.",
1996
+ "delay",
1997
+ "delays",
1998
+ "delighted",
1999
+ "delivered",
2000
+ "den",
2001
+ "denial",
2002
+ "denmark",
2003
+ "dentist",
2004
+ "depart",
2005
+ "department",
2006
+ "departure",
2007
+ "deposit",
2008
+ "der",
2009
+ "des",
2010
+ "deserts",
2011
+ "design",
2012
2013
+ "desk",
2014
+ "despite",
2015
+ "destination",
2016
+ "detailed",
2017
+ "details",
2018
+ "detecting",
2019
+ "determine",
2020
2021
+ "development",
2022
+ "device",
2023
+ "devices",
2024
+ "devotion",
2025
+ "devout",
2026
+ "dge",
2027
+ "dha",
2028
+ "dia",
2029
+ "dial",
2030
+ "dialing",
2031
+ "did",
2032
+ "different",
2033
+ "digit",
2034
+ "digital",
2035
+ "dinner",
2036
+ "direct",
2037
+ "directly",
2038
+ "directory",
2039
+ "discount",
2040
+ "discounts",
2041
+ "discover",
2042
+ "discovered",
2043
+ "discrepancy",
2044
+ "discrimination",
2045
+ "discuss",
2046
+ "discussion",
2047
+ "discussions",
2048
+ "dispatched",
2049
+ "disruptions",
2050
+ "distributed",
2051
+ "dit",
2052
+ "divers",
2053
+ "diverse",
2054
+ "diversity",
2055
+ "division",
2056
+ "dk5000400440116243",
2057
+ "dly",
2058
+ "dm.",
2059
+ "dmv",
2060
+ "do",
2061
+ "document",
2062
+ "documentation",
2063
+ "documents",
2064
+ "does",
2065
+ "doin",
2066
+ "doin'",
2067
+ "doing",
2068
+ "doin\u2019",
2069
+ "domains",
2070
+ "don",
2071
+ "donate",
2072
+ "donation",
2073
+ "dos",
2074
+ "double",
2075
+ "down",
2076
+ "download",
2077
+ "dox",
2078
+ "dr",
2079
+ "dr.",
2080
+ "drawing",
2081
+ "driver",
2082
+ "dro",
2083
+ "dst",
2084
+ "due",
2085
+ "during",
2086
+ "dutch",
2087
+ "dx.x",
2088
+ "dx.x.",
2089
+ "dxx",
2090
+ "dynamic",
2091
+ "e",
2092
+ "e's",
2093
+ "e.",
2094
+ "e.g",
2095
+ "e.g.",
2096
+ "e1234567890",
2097
+ "each",
2098
+ "ead",
2099
+ "eagerly",
2100
+ "eal",
2101
+ "eam",
2102
+ "ean",
2103
+ "ear",
2104
+ "earlier",
2105
+ "early",
2106
+ "eas",
2107
+ "easier",
2108
+ "easy",
2109
+ "eat",
2110
+ "eb.",
2111
+ "ebr",
2112
+ "ec.",
2113
+ "ece",
2114
+ "ech",
2115
+ "eck",
2116
+ "eco",
2117
+ "ecological",
2118
+ "ect",
2119
+ "edge",
2120
+ "eds",
2121
+ "edu",
2122
+ "eed",
2123
+ "eef",
2124
+ "eek",
2125
+ "eel",
2126
+ "een",
2127
+ "eep",
2128
+ "eer",
2129
+ "ees",
2130
+ "eet",
2131
+ "efficient",
2132
+ "efficiently",
2133
+ "effort",
2134
+ "efs",
2135
+ "eft",
2136
+ "ege",
2137
+ "egypt",
2138
+ "eir",
2139
+ "eks",
2140
+ "el.",
2141
+ "ela",
2142
+ "electronic",
2143
+ "elena",
2144
+ "elephants",
2145
+ "eligibility",
2146
+ "ell",
2147
+ "elp",
2148
+ "els",
2149
+ "elt",
2150
+ "ely",
2151
+ "em",
2152
+ "ema",
2153
+ "email",
2154
+ "email_address",
2155
+ "embassy",
2156
+ "emergency",
2157
+ "emily",
2158
+ "emma",
2159
+ "employees",
2160
+ "employer",
2161
+ "employment",
2162
+ "empty",
2163
+ "en",
2164
+ "en.",
2165
+ "ena",
2166
+ "encounter",
2167
+ "encouraged",
2168
+ "encrypted",
2169
+ "end",
2170
+ "ene",
2171
+ "engagements",
2172
+ "enhance",
2173
+ "enjoy",
2174
+ "enjoying",
2175
+ "enn",
2176
+ "enough",
2177
+ "enroll",
2178
+ "enrollment",
2179
+ "ensure",
2180
+ "ensured",
2181
+ "ensuring",
2182
+ "ent",
2183
+ "enter",
2184
+ "entered",
2185
+ "entering",
2186
+ "enticing",
2187
+ "entrance",
2188
+ "environment",
2189
+ "eon",
2190
+ "eos",
2191
+ "ep.",
2192
+ "epiphany",
2193
+ "ept",
2194
+ "equality",
2195
+ "ere",
2196
+ "ern",
2197
+ "error",
2198
+ "errors",
2199
+ "ers",
2200
+ "ert",
2201
+ "eru",
2202
+ "ery",
2203
+ "es9121000418450200051332",
2204
+ "ese",
2205
+ "esk",
2206
+ "especially",
2207
+ "ess",
2208
+ "essential",
2209
+ "est",
2210
+ "establish",
2211
+ "establishment",
2212
+ "ete",
2213
+ "ethiopian",
2214
+ "ets",
2215
+ "ety",
2216
+ "eum",
2217
+ "europe",
2218
+ "european",
2219
+ "eurozone",
2220
+ "ev.",
2221
+ "evangelical",
2222
+ "eve",
2223
+ "event",
2224
+ "events",
2225
2226
+ "everest",
2227
+ "every",
2228
+ "everything",
2229
+ "ews",
2230
+ "exam",
2231
+ "example",
2232
+ "excited",
2233
+ "excitement",
2234
+ "exciting",
2235
+ "exclusive",
2236
+ "exfiltration",
2237
+ "exhausting",
2238
+ "expansion",
2239
+ "expatriate",
2240
+ "expected",
2241
+ "expenses",
2242
+ "experience",
2243
+ "experienced",
2244
+ "experiences",
2245
+ "experiencing",
2246
+ "expiration",
2247
+ "expire",
2248
+ "expired",
2249
+ "expiry",
2250
+ "exploit",
2251
+ "explore",
2252
+ "exploring",
2253
+ "ext",
2254
2255
+ "extend",
2256
+ "extensive",
2257
+ "external",
2258
+ "extra",
2259
+ "eye",
2260
+ "eys",
2261
+ "e\u2019s",
2262
+ "f",
2263
+ "f.",
2264
+ "fabric",
2265
+ "faced",
2266
+ "facilitate",
2267
+ "facing",
2268
+ "failed",
2269
+ "faith",
2270
+ "familiar",
2271
+ "families",
2272
+ "family",
2273
+ "famous",
2274
+ "fantastic",
2275
+ "faq",
2276
+ "fasting",
2277
+ "fatima",
2278
+ "fax",
2279
+ "feast",
2280
+ "features",
2281
+ "feb",
2282
+ "feb.",
2283
+ "federal",
2284
+ "feedback",
2285
2286
+ "feel",
2287
+ "fellow",
2288
+ "felt",
2289
+ "fer",
2290
+ "fervor",
2291
+ "festival",
2292
+ "festivals",
2293
+ "ffs",
2294
+ "fi",
2295
+ "fi2112345600000785",
2296
+ "fic",
2297
+ "fifteen",
2298
+ "file",
2299
+ "filed",
2300
+ "files",
2301
+ "filing",
2302
+ "filings",
2303
+ "fill",
2304
+ "filled",
2305
+ "filling",
2306
+ "final",
2307
+ "finalize",
2308
+ "finalizing",
2309
+ "finally",
2310
+ "finals",
2311
+ "financial",
2312
+ "financials",
2313
+ "find",
2314
+ "finding",
2315
+ "finland",
2316
+ "firewall",
2317
+ "first",
2318
+ "fit",
2319
+ "fjords",
2320
+ "fla",
2321
+ "fla.",
2322
+ "flight",
2323
+ "flipped",
2324
+ "florida",
2325
+ "flourished",
2326
+ "flyer",
2327
+ "follow",
2328
+ "followed",
2329
+ "foothold",
2330
+ "for",
2331
+ "force",
2332
+ "forensic",
2333
+ "forgotten",
2334
+ "form",
2335
+ "former",
2336
+ "forms",
2337
+ "forum",
2338
+ "forward",
2339
+ "found",
2340
+ "fr1420041010050500013m02606",
2341
+ "france",
2342
+ "free",
2343
+ "freely",
2344
+ "french",
2345
+ "friday",
2346
+ "friend",
2347
+ "friendly",
2348
+ "friends",
2349
+ "from",
2350
+ "ful",
2351
+ "full",
2352
+ "fund",
2353
+ "funds",
2354
+ "further",
2355
+ "g",
2356
+ "g.",
2357
+ "ga",
2358
+ "ga.",
2359
+ "gain",
2360
+ "gal",
2361
+ "gan",
2362
+ "gas",
2363
+ "gather",
2364
+ "gb82west12345698765432",
2365
+ "ged",
2366
+ "geirangerfjord",
2367
+ "gen",
2368
+ "gen.",
2369
+ "general",
2370
+ "georgia",
2371
+ "ger",
2372
+ "german",
2373
+ "ges",
2374
+ "get",
2375
+ "ght",
2376
+ "gia",
2377
+ "gic",
2378
+ "gin",
2379
+ "git",
2380
+ "global",
2381
+ "globe",
2382
+ "go",
2383
+ "goin",
2384
+ "goin'",
2385
+ "going",
2386
+ "goin\u2019",
2387
+ "gon",
2388
+ "gonna",
2389
+ "got",
2390
+ "gov",
2391
+ "gov.",
2392
+ "gr1601101250000000012300695",
2393
+ "grabbed",
2394
+ "grand",
2395
+ "grandmother",
2396
+ "grant",
2397
+ "great",
2398
+ "greece",
2399
+ "grew",
2400
+ "growing",
2401
+ "gth",
2402
+ "guarantee",
2403
+ "guard",
2404
+ "guest",
2405
+ "guidance",
2406
+ "guidelines",
2407
+ "guiding",
2408
+ "h",
2409
+ "h.",
2410
+ "habitat",
2411
+ "had",
2412
+ "hai",
2413
+ "han",
2414
+ "handy",
2415
+ "happening",
2416
+ "happy",
2417
+ "has",
2418
+ "hat",
2419
+ "have",
2420
+ "havin",
2421
+ "havin'",
2422
+ "having",
2423
+ "havin\u2019",
2424
+ "he",
2425
+ "he's",
2426
+ "head",
2427
+ "heading",
2428
+ "health",
2429
+ "heart",
2430
+ "hed",
2431
+ "hel",
2432
+ "help",
2433
+ "helpline",
2434
+ "helps",
2435
+ "hem",
2436
+ "hen",
2437
+ "her",
2438
+ "heritage",
2439
+ "hes",
2440
+ "hey",
2441
+ "he\u2019s",
2442
+ "hia",
2443
+ "hidden",
2444
+ "high",
2445
+ "highlight",
2446
+ "highly",
2447
+ "highway",
2448
+ "hikers",
2449
+ "him",
2450
+ "himalayan",
2451
+ "hin",
2452
+ "hindu",
2453
+ "hio",
2454
+ "hip",
2455
+ "hires",
2456
+ "hiroshi",
2457
+ "his",
2458
+ "historic",
2459
+ "history",
2460
+ "hly",
2461
+ "hol",
2462
+ "holiday",
2463
+ "hom",
2464
+ "home",
2465
+ "honored",
2466
+ "hop",
2467
+ "hotel",
2468
+ "hotline",
2469
+ "hours",
2470
+ "housing",
2471
+ "how",
2472
+ "how's",
2473
+ "how\u2019s",
2474
+ "hr",
2475
+ "hr1210010051863000160",
2476
2477
+ "hts",
2478
+ "http://blog.officialcompanysite.com",
2479
+ "http://contact.companysite.com",
2480
+ "http://eco.products.example.com",
2481
+ "http://investors.companysite.com",
2482
+ "http://jobs.companysite.com",
2483
+ "http://livestreams.tutorialsite.com",
2484
+ "http://newsletter.companysite.com",
2485
+ "http://partners.companysite.com",
2486
+ "http://press.companysite.com",
2487
+ "http://products.example.com",
2488
+ "http://support.helpline.com",
2489
+ "http://sustainability.companysite.com",
2490
+ "http://terms.companysite.com",
2491
+ "https://account.userservice.com",
2492
+ "https://annualreport.companysite.com",
2493
+ "https://apply.partners.companysite.com",
2494
+ "https://careers.companysite.com",
2495
+ "https://catalog.products.example.com",
2496
+ "https://donate.charitysite.com",
2497
+ "https://downloads.techsoftware.com",
2498
+ "https://events.webinarplatform.com/register",
2499
+ "https://faq.helpline.com",
2500
+ "https://financials.companysite.com",
2501
+ "https://forum.communitysite.com",
2502
+ "https://media.contact.companysite.com",
2503
+ "https://privacy.companysite.com",
2504
+ "https://reviews.example.com",
2505
+ "https://store.companysite.com",
2506
+ "https://subscribe.newsletter.com",
2507
+ "https://support.ticketsystem.com",
2508
+ "https://sustainabilityreport.companysite.com",
2509
+ "https://videos.tutorialsite.com",
2510
+ "https://www.officialcompanysite.com",
2511
+ "hu42117730161111101800000000",
2512
+ "hungary",
2513
+ "hustle",
2514
+ "i",
2515
+ "i.",
2516
+ "i.e",
2517
+ "i.e.",
2518
+ "ia",
2519
+ "ia.",
2520
+ "ial",
2521
+ "ian",
2522
+ "iar",
2523
+ "iban",
2524
+ "iban_code",
2525
+ "ibe",
2526
+ "ica",
2527
+ "ice",
2528
+ "ich",
2529
+ "ick",
2530
+ "iconic",
2531
+ "ics",
2532
+ "ict",
2533
+ "icy",
2534
+ "id",
2535
+ "id.",
2536
+ "ida",
2537
+ "ide",
2538
+ "identification",
2539
+ "identified",
2540
+ "identity",
2541
+ "ied",
2542
+ "iel",
2543
+ "ier",
2544
+ "ies",
2545
+ "iew",
2546
+ "if",
2547
+ "if.",
2548
+ "ife",
2549
+ "ify",
2550
+ "igh",
2551
+ "ign",
2552
+ "ike",
2553
+ "ikh",
2554
+ "ild",
2555
+ "ile",
2556
+ "ill",
2557
+ "ill.",
2558
+ "illinois",
2559
+ "ils",
2560
+ "ily",
2561
+ "ima",
2562
+ "ime",
2563
+ "immediate",
2564
+ "immediately",
2565
+ "immersing",
2566
+ "importance",
2567
+ "important",
2568
+ "in",
2569
+ "in'",
2570
+ "ina",
2571
+ "inbox",
2572
+ "inc",
2573
+ "inc.",
2574
+ "incense",
2575
+ "incident",
2576
+ "include",
2577
+ "included",
2578
+ "including",
2579
+ "income",
2580
+ "incorrectly",
2581
+ "incredible",
2582
+ "ind",
2583
+ "ind.",
2584
+ "india",
2585
+ "indicate",
2586
+ "indicated",
2587
+ "indicating",
2588
+ "individual",
2589
+ "ine",
2590
+ "influenced",
2591
2592
+ "information",
2593
+ "infrastructure",
2594
+ "ing",
2595
+ "initial",
2596
+ "initially",
2597
+ "initiatives",
2598
+ "ink",
2599
+ "inn",
2600
+ "input",
2601
+ "inquire",
2602
+ "inquiries",
2603
+ "ins",
2604
+ "insights",
2605
+ "inspiring",
2606
+ "installation",
2607
+ "instance",
2608
+ "instead",
2609
+ "instilled",
2610
+ "institution",
2611
+ "instructions",
2612
+ "insurance",
2613
+ "int",
2614
+ "interactions",
2615
+ "interface",
2616
+ "internal",
2617
+ "international",
2618
+ "internationally",
2619
+ "intertwined",
2620
+ "into",
2621
+ "intricate",
2622
+ "investigation",
2623
+ "investor",
2624
+ "invoice",
2625
+ "involved",
2626
+ "in\u2019",
2627
+ "ion",
2628
+ "ip",
2629
+ "ip_address",
2630
+ "ipanema",
2631
+ "ips",
2632
+ "iranian",
2633
+ "ire",
2634
+ "irm",
2635
+ "iro",
2636
+ "irs",
2637
+ "iry",
2638
+ "is",
2639
+ "is.",
2640
+ "isa",
2641
+ "ise",
2642
+ "ish",
2643
+ "isk",
2644
+ "ism",
2645
+ "isolated",
2646
+ "iss",
2647
+ "issued",
2648
+ "issues",
2649
+ "ist",
2650
+ "it",
2651
+ "it's",
2652
2653
+ "it60x0542811101000000123456",
2654
+ "italian",
2655
+ "italy",
2656
+ "ite",
2657
+ "item",
2658
+ "ith",
2659
+ "itin",
2660
+ "itins",
2661
+ "its",
2662
+ "ity",
2663
+ "it\u2019s",
2664
+ "ium",
2665
+ "ive",
2666
+ "iya",
2667
+ "iz.",
2668
+ "ize",
2669
+ "j",
2670
+ "j.",
2671
+ "jain",
2672
+ "james",
2673
+ "jan",
2674
+ "jan.",
2675
+ "jane",
2676
2677
+ "janeiro",
2678
+ "japan",
2679
+ "japanese",
2680
+ "jason",
2681
+ "jean",
2682
+ "jersey",
2683
+ "jessica",
2684
+ "jewish",
2685
+ "job",
2686
+ "john",
2687
2688
+ "join",
2689
+ "jor",
2690
+ "journey",
2691
+ "joy",
2692
+ "joyous",
2693
+ "jr",
2694
+ "jr.",
2695
+ "juan",
2696
+ "jul",
2697
+ "jul.",
2698
+ "july",
2699
+ "jun",
2700
+ "jun.",
2701
+ "june",
2702
+ "just",
2703
+ "justice",
2704
+ "k",
2705
+ "k.",
2706
+ "k123456789012",
2707
+ "kan",
2708
+ "kan.",
2709
+ "kans",
2710
+ "kans.",
2711
+ "karen",
2712
+ "karim",
2713
+ "kat",
2714
+ "ked",
2715
+ "keep",
2716
+ "keeping",
2717
+ "kenya",
2718
+ "kept",
2719
+ "ker",
2720
+ "kes",
2721
+ "ket",
2722
+ "kevin",
2723
+ "khi",
2724
+ "kicks",
2725
+ "kilimanjaro",
2726
+ "kla",
2727
+ "kly",
2728
+ "knit",
2729
+ "known",
2730
+ "kok",
2731
+ "kor",
2732
+ "kruger",
2733
+ "kup",
2734
+ "ky",
2735
+ "ky.",
2736
+ "kyo",
2737
+ "l",
2738
+ "l.",
2739
+ "la",
2740
+ "la.",
2741
+ "lai",
2742
+ "lake",
2743
+ "lama",
2744
+ "lan",
2745
+ "landmarks",
2746
+ "landscapes",
2747
+ "lar",
2748
+ "large",
2749
+ "lars",
2750
+ "las",
2751
+ "last",
2752
+ "late",
2753
+ "later",
2754
+ "latest",
2755
+ "launched",
2756
+ "laura",
2757
+ "lay",
2758
+ "learn",
2759
+ "least",
2760
+ "leave",
2761
+ "leaving",
2762
+ "led",
2763
+ "left",
2764
+ "les",
2765
+ "let",
2766
+ "let's",
2767
+ "let\u2019s",
2768
+ "lex",
2769
+ "ley",
2770
+ "lia",
2771
+ "liberty",
2772
+ "library",
2773
+ "lic",
2774
+ "license",
2775
+ "lid",
2776
+ "lif",
2777
+ "life",
2778
+ "light",
2779
+ "like",
2780
+ "likely",
2781
+ "lim",
2782
+ "limit",
2783
+ "limited",
2784
+ "linda",
2785
+ "line",
2786
+ "link",
2787
+ "lions",
2788
+ "lis",
2789
+ "list",
2790
+ "listed",
2791
+ "liturgical",
2792
+ "live",
2793
+ "lively",
2794
+ "lives",
2795
+ "living",
2796
+ "ll",
2797
+ "ll.",
2798
+ "lly",
2799
+ "lo.",
2800
+ "loan",
2801
+ "local",
2802
+ "locals",
2803
+ "located",
2804
+ "location",
2805
+ "log",
2806
+ "login",
2807
+ "logs",
2808
+ "london",
2809
+ "long",
2810
+ "looking",
2811
+ "los",
2812
+ "losing",
2813
+ "loss",
2814
+ "lost",
2815
+ "louise",
2816
+ "love",
2817
+ "lovin",
2818
+ "lovin'",
2819
+ "loving",
2820
+ "lovin\u2019",
2821
+ "low",
2822
+ "lps",
2823
+ "lso",
2824
+ "lta",
2825
+ "ltd",
2826
+ "ltd.",
2827
+ "lth",
2828
+ "lu280019400644750000",
2829
+ "luis",
2830
+ "lutheran",
2831
+ "luxembourg",
2832
+ "lve",
2833
+ "lyn",
2834
+ "m",
2835
+ "m.",
2836
+ "m987654321",
2837
+ "ma'am",
2838
+ "machine",
2839
+ "machu",
2840
+ "madam",
2841
+ "made",
2842
+ "mahmoud",
2843
+ "mailing",
2844
+ "maintain",
2845
+ "maintained",
2846
+ "major",
2847
+ "make",
2848
+ "making",
2849
+ "mal",
2850
+ "maldives",
2851
+ "malicious",
2852
+ "malta",
2853
+ "man",
2854
+ "manage",
2855
+ "management",
2856
+ "manager",
2857
+ "mandatory",
2858
+ "many",
2859
+ "map",
2860
+ "mar",
2861
+ "mar.",
2862
+ "march",
2863
+ "maria",
2864
+ "marine",
2865
+ "marked",
2866
+ "market",
2867
+ "marketing",
2868
2869
+ "markets",
2870
+ "marking",
2871
+ "marks",
2872
+ "marrakech",
2873
+ "marveled",
2874
+ "mas",
2875
+ "mass",
2876
+ "mass.",
2877
+ "mastercard",
2878
+ "matched",
2879
+ "may",
2880
+ "maze",
2881
+ "ma\u2019am",
2882
+ "md",
2883
+ "md.",
2884
+ "meal",
2885
+ "med",
2886
+ "media",
2887
2888
+ "medical",
2889
+ "medications",
2890
+ "meditation",
2891
+ "mediterranean",
2892
+ "meet",
2893
+ "meeting",
2894
+ "megan",
2895
2896
+ "membership",
2897
+ "memories",
2898
+ "mer",
2899
+ "mes",
2900
+ "mesmerizing",
2901
+ "messrs",
2902
+ "messrs.",
2903
+ "methods",
2904
+ "meticulous",
2905
+ "metrics",
2906
+ "metropolis",
2907
+ "mex",
2908
+ "mic",
2909
+ "mich",
2910
+ "mich.",
2911
+ "michael",
2912
+ "michigan",
2913
+ "mid",
2914
+ "midnight",
2915
+ "might",
2916
+ "miguel",
2917
+ "millions",
2918
+ "minimal",
2919
+ "minimize",
2920
+ "minn",
2921
+ "minn.",
2922
+ "minnesota",
2923
+ "minority",
2924
+ "minute",
2925
+ "minutes",
2926
+ "misplaced",
2927
+ "miss",
2928
+ "miss.",
2929
+ "missing",
2930
+ "mistakenly",
2931
+ "mistakes",
2932
+ "mit",
2933
+ "mma",
2934
+ "mni",
2935
+ "mo",
2936
+ "mo.",
2937
+ "mobile",
2938
+ "modern",
2939
+ "moments",
2940
+ "monday",
2941
+ "money",
2942
+ "monitor",
2943
+ "mont",
2944
+ "mont.",
2945
+ "month",
2946
+ "monthly",
2947
+ "months",
2948
+ "monument",
2949
+ "more",
2950
+ "morning",
2951
+ "morocco",
2952
+ "mortgage",
2953
+ "moshi",
2954
+ "most",
2955
+ "mount",
2956
+ "mountains",
2957
+ "moved",
2958
+ "moving",
2959
+ "mps",
2960
+ "mr",
2961
+ "mr.",
2962
+ "mrs",
2963
+ "mrs.",
2964
+ "ms",
2965
+ "ms.",
2966
+ "mt",
2967
+ "mt.",
2968
+ "mt84malt011000012345mtlcast001s",
2969
+ "much",
2970
+ "multicultural",
2971
+ "multiple",
2972
+ "mumbai",
2973
+ "museums",
2974
+ "muslim",
2975
+ "must",
2976
+ "my",
2977
+ "n",
2978
+ "n's",
2979
+ "n't",
2980
+ "n.",
2981
+ "n.c.",
2982
+ "n.d.",
2983
+ "n.h.",
2984
+ "n.j.",
2985
+ "n.m.",
2986
+ "n.y.",
2987
+ "na",
2988
+ "nairobi",
2989
+ "nal",
2990
+ "name",
2991
+ "nar",
2992
+ "nas",
2993
+ "national",
2994
+ "natural",
2995
+ "naturalization",
2996
+ "nature",
2997
+ "navigate",
2998
+ "navigated",
2999
+ "nc.",
3000
+ "nce",
3001
+ "nch",
3002
+ "ncy",
3003
+ "nd.",
3004
+ "nda",
3005
+ "nds",
3006
+ "ndu",
3007
+ "ndy",
3008
+ "nearby",
3009
+ "nearest",
3010
+ "nearing",
3011
+ "neb",
3012
+ "neb.",
3013
+ "nebr",
3014
+ "nebr.",
3015
+ "necessary",
3016
+ "necessitating",
3017
+ "ned",
3018
+ "need",
3019
+ "needed",
3020
+ "needs",
3021
+ "neighborhood",
3022
+ "nepal",
3023
+ "ner",
3024
+ "nes",
3025
+ "nestled",
3026
+ "net",
3027
+ "network",
3028
+ "nev",
3029
+ "nev.",
3030
+ "nevada",
3031
+ "new",
3032
+ "newest",
3033
+ "news",
3034
+ "newsletter",
3035
+ "next",
3036
+ "ney",
3037
+ "nge",
3038
+ "ngs",
3039
+ "nia",
3040
+ "nic",
3041
+ "nice",
3042
+ "nigeria",
3043
+ "nit",
3044
+ "nkechi",
3045
+ "nl91abna0417164300",
3046
+ "nly",
3047
+ "nn.",
3048
+ "nni",
3049
+ "no",
3050
+ "no9386011117947",
3051
+ "non",
3052
+ "norway",
3053
+ "nos",
3054
+ "not",
3055
+ "notebook",
3056
+ "noted",
3057
+ "nothin",
3058
+ "nothin'",
3059
+ "nothing",
3060
+ "nothin\u2019",
3061
+ "notice",
3062
+ "noticed",
3063
+ "noting",
3064
+ "nov",
3065
+ "nov.",
3066
+ "november",
3067
+ "now",
3068
+ "nrp",
3069
+ "ns.",
3070
+ "nse",
3071
+ "nt",
3072
+ "nt.",
3073
+ "nth",
3074
+ "nto",
3075
+ "nts",
3076
+ "nue",
3077
+ "nuff",
3078
+ "numbers",
3079
+ "numerous",
3080
+ "nurse",
3081
+ "nuthin",
3082
+ "nuthin'",
3083
+ "nuthin\u2019",
3084
+ "nya",
3085
+ "n\u2019s",
3086
+ "n\u2019t",
3087
+ "o",
3088
+ "o'clock",
3089
+ "o's",
3090
+ "o.",
3091
+ "o.0",
3092
+ "o.O",
3093
+ "o.o",
3094
+ "o_0",
3095
+ "o_O",
3096
+ "o_o",
3097
+ "oad",
3098
+ "oan",
3099
+ "obe",
3100
+ "obi",
3101
+ "observed",
3102
+ "ocean",
3103
+ "ock",
3104
+ "oct",
3105
+ "oct.",
3106
+ "october",
3107
+ "ode",
3108
+ "ods",
3109
+ "oes",
3110
+ "of",
3111
+ "of.",
3112
+ "off",
3113
+ "offer",
3114
+ "offering",
3115
+ "offers",
3116
+ "office",
3117
+ "officer",
3118
+ "official",
3119
+ "often",
3120
+ "ogs",
3121
+ "ogy",
3122
+ "ohio",
3123
+ "ohn",
3124
+ "oid",
3125
+ "oil",
3126
+ "oin",
3127
+ "ois",
3128
+ "oit",
3129
+ "okla",
3130
+ "okla.",
3131
+ "ol",
3132
+ "ol'",
3133
+ "old",
3134
+ "ole",
3135
+ "olivia",
3136
+ "oll",
3137
+ "olo",
3138
+ "ols",
3139
+ "ol\u2019",
3140
+ "oma",
3141
+ "ome",
3142
+ "on",
3143
+ "ona",
3144
+ "onboarding",
3145
+ "ond",
3146
+ "one",
3147
+ "ong",
3148
+ "online",
3149
+ "only",
3150
+ "onn",
3151
+ "ons",
3152
+ "ont",
3153
+ "ony",
3154
+ "ood",
3155
+ "ook",
3156
+ "oom",
3157
+ "oon",
3158
+ "oot",
3159
+ "ope",
3160
+ "open",
3161
+ "opening",
3162
+ "openings",
3163
+ "operations",
3164
+ "opportunities",
3165
+ "ops",
3166
+ "opy",
3167
+ "or",
3168
+ "ord",
3169
+ "order",
3170
+ "ore",
3171
+ "ore.",
3172
+ "oregon",
3173
+ "org",
3174
+ "organization",
3175
+ "organized",
3176
+ "orientation",
3177
+ "originally",
3178
+ "originated",
3179
+ "originating",
3180
+ "ork",
3181
+ "orm",
3182
+ "orn",
3183
+ "orp",
3184
+ "ors",
3185
+ "ort",
3186
+ "orthodox",
3187
+ "ory",
3188
+ "os.",
3189
+ "osa",
3190
+ "ose",
3191
+ "oss",
3192
+ "ost",
3193
+ "ota",
3194
+ "ote",
3195
+ "oth",
3196
+ "other",
3197
+ "oto",
3198
+ "ots",
3199
+ "oud",
3200
+ "ought",
3201
+ "our",
3202
+ "ourselves",
3203
+ "ous",
3204
+ "out",
3205
+ "ov.",
3206
+ "ove",
3207
+ "over",
3208
+ "overseas",
3209
+ "overtime",
3210
+ "own",
3211
+ "owy",
3212
+ "o\u2019clock",
3213
+ "o\u2019s",
3214
+ "p",
3215
+ "p.",
3216
+ "p.m",
3217
+ "p.m.",
3218
+ "pa",
3219
+ "pa.",
3220
+ "pacific",
3221
+ "page",
3222
+ "pages",
3223
+ "pal",
3224
+ "palestinian",
3225
+ "palpable",
3226
+ "pan",
3227
+ "pantheon",
3228
+ "paperwork",
3229
+ "parades",
3230
+ "parents",
3231
+ "paris",
3232
+ "park",
3233
+ "parking",
3234
+ "part",
3235
+ "participate",
3236
+ "participated",
3237
+ "partner",
3238
+ "partnership",
3239
3240
+ "parts",
3241
+ "party",
3242
+ "passcode",
3243
+ "passed",
3244
+ "passport",
3245
+ "passports",
3246
+ "password",
3247
3248
+ "past",
3249
+ "path",
3250
+ "patricia",
3251
+ "pattern",
3252
+ "paycheck",
3253
+ "payment",
3254
+ "payments",
3255
+ "payroll",
3256
+ "peace",
3257
+ "peaks",
3258
+ "ped",
3259
+ "pen",
3260
+ "pennsylvania",
3261
+ "pentecostal",
3262
+ "people",
3263
+ "per",
3264
+ "performance",
3265
+ "performed",
3266
+ "persistent",
3267
+ "person",
3268
+ "personal",
3269
+ "peru",
3270
+ "pes",
3271
+ "ph",
3272
+ "ph.d.",
3273
+ "pharmacy",
3274
+ "phone",
3275
+ "phone_number",
3276
+ "photo",
3277
+ "photocopy",
3278
+ "photographs",
3279
+ "phs",
3280
+ "picchu",
3281
+ "pickup",
3282
+ "picturesque",
3283
+ "pierre",
3284
+ "places",
3285
+ "plan",
3286
+ "planned",
3287
+ "planning",
3288
+ "plans",
3289
+ "plant",
3290
+ "played",
3291
+ "ple",
3292
+ "please",
3293
+ "pleased",
3294
+ "ply",
3295
+ "pm",
3296
+ "pocket",
3297
+ "police",
3298
+ "policies",
3299
+ "policy",
3300
+ "political",
3301
+ "pon",
3302
+ "popular",
3303
+ "port",
3304
+ "portal",
3305
+ "portugal",
3306
+ "positions",
3307
+ "possible",
3308
+ "postponed",
3309
+ "pot",
3310
+ "potential",
3311
+ "ppy",
3312
+ "pr.",
3313
+ "practice",
3314
+ "practiced",
3315
+ "practices",
3316
+ "practitioner",
3317
+ "prayer",
3318
+ "predominantly",
3319
+ "preferred",
3320
+ "preparation",
3321
+ "preparations",
3322
+ "prescriptions",
3323
+ "presence",
3324
+ "present",
3325
+ "presentation",
3326
+ "press",
3327
3328
+ "prevent",
3329
+ "previously",
3330
+ "principles",
3331
+ "privacy",
3332
3333
+ "private",
3334
+ "priya",
3335
+ "procedure",
3336
+ "proceed",
3337
+ "process",
3338
+ "processed",
3339
+ "processing",
3340
+ "product",
3341
+ "production",
3342
3343
+ "products",
3344
+ "prof",
3345
+ "prof.",
3346
+ "professor",
3347
+ "program",
3348
+ "programs",
3349
+ "project",
3350
+ "projects",
3351
+ "promotional",
3352
+ "prompting",
3353
+ "promptly",
3354
+ "proper",
3355
+ "properly",
3356
+ "proposal",
3357
+ "proposals",
3358
+ "protocol",
3359
+ "proud",
3360
+ "provide",
3361
+ "provided",
3362
+ "provider",
3363
+ "providing",
3364
+ "pt.",
3365
+ "pt50000201231234567890154",
3366
+ "pts",
3367
+ "pty",
3368
+ "public",
3369
+ "pull",
3370
+ "pulled",
3371
+ "punjabi",
3372
+ "purchase",
3373
+ "purchasing",
3374
+ "purposes",
3375
+ "pus",
3376
+ "put",
3377
+ "q",
3378
+ "q.",
3379
+ "quarter",
3380
+ "quarterly",
3381
+ "que",
3382
+ "queensland",
3383
+ "queries",
3384
+ "questions",
3385
+ "quick",
3386
+ "quickly",
3387
+ "r",
3388
+ "r.",
3389
+ "r8765432",
3390
+ "rachel",
3391
+ "rah",
3392
+ "rainforest",
3393
+ "raising",
3394
+ "ral",
3395
+ "ram",
3396
+ "ramadan",
3397
+ "ran",
3398
+ "rapidly",
3399
+ "rate",
3400
+ "raul",
3401
+ "ravi",
3402
+ "ray",
3403
+ "rby",
3404
+ "rce",
3405
+ "rch",
3406
+ "rds",
3407
+ "re",
3408
+ "re.",
3409
+ "rea",
3410
+ "reach",
3411
+ "reached",
3412
+ "read",
3413
+ "ready",
3414
+ "realized",
3415
+ "reasons",
3416
+ "rebecca",
3417
+ "receive",
3418
+ "received",
3419
+ "receives",
3420
+ "receiving",
3421
+ "recently",
3422
+ "recommended",
3423
+ "reconnect",
3424
+ "recorded",
3425
+ "records",
3426
3427
+ "red",
3428
+ "redeemer",
3429
+ "ree",
3430
+ "reef",
3431
+ "refill",
3432
+ "reflect",
3433
+ "reflected",
3434
+ "refuge",
3435
+ "refund",
3436
+ "regarding",
3437
+ "region",
3438
+ "register",
3439
3440
+ "registered",
3441
+ "registration",
3442
+ "regularly",
3443
+ "regulations",
3444
+ "reinforcing",
3445
+ "rek",
3446
+ "related",
3447
+ "relations",
3448
+ "releases",
3449
+ "relevant",
3450
+ "relieved",
3451
+ "religious",
3452
+ "remained",
3453
+ "remaining",
3454
+ "remember",
3455
+ "reminding",
3456
+ "remote",
3457
+ "ren",
3458
+ "renew",
3459
+ "renewal",
3460
+ "renewed",
3461
+ "renowned",
3462
+ "rental",
3463
+ "rep",
3464
+ "rep.",
3465
+ "replacement",
3466
+ "report",
3467
+ "reported",
3468
+ "reports",
3469
+ "representative",
3470
+ "representatives",
3471
+ "request",
3472
+ "requested",
3473
+ "required",
3474
+ "requires",
3475
+ "requiring",
3476
+ "res",
3477
+ "rescheduled",
3478
+ "research",
3479
3480
+ "reservation",
3481
+ "reservations",
3482
+ "reset",
3483
+ "residency",
3484
+ "resolve",
3485
+ "resolved",
3486
+ "response",
3487
+ "restaurant",
3488
+ "restrict",
3489
+ "restricted",
3490
+ "resubmitting",
3491
+ "result",
3492
+ "resulted",
3493
+ "resumes",
3494
+ "retrieve",
3495
+ "return",
3496
+ "rev",
3497
+ "rev.",
3498
+ "revealed",
3499
+ "review",
3500
+ "reviewing",
3501
+ "reviews",
3502
+ "rew",
3503
+ "rewarding",
3504
+ "rge",
3505
+ "rhinos",
3506
+ "ria",
3507
+ "ric",
3508
+ "rich",
3509
+ "rid",
3510
+ "right",
3511
+ "rights",
3512
+ "rim",
3513
+ "rio",
3514
+ "rip",
3515
+ "ris",
3516
+ "risk",
3517
+ "rituals",
3518
+ "riz",
3519
+ "rk.",
3520
+ "rks",
3521
+ "rla",
3522
+ "rld",
3523
+ "rly",
3524
+ "rms",
3525
+ "rns",
3526
+ "road",
3527
+ "roadside",
3528
+ "robert",
3529
+ "rof",
3530
+ "role",
3531
+ "roles",
3532
+ "rolling",
3533
+ "rom",
3534
+ "roman",
3535
+ "rome",
3536
+ "room",
3537
+ "roots",
3538
+ "ror",
3539
+ "ros",
3540
+ "rosa",
3541
+ "router",
3542
+ "routine",
3543
+ "rp.",
3544
+ "rre",
3545
+ "rry",
3546
+ "rs.",
3547
+ "rse",
3548
+ "rst",
3549
+ "rsvp",
3550
+ "rta",
3551
+ "rts",
3552
+ "rty",
3553
+ "ruins",
3554
+ "rule",
3555
+ "rum",
3556
+ "rus",
3557
+ "rush",
3558
+ "russian",
3559
+ "s",
3560
+ "s's",
3561
+ "s.",
3562
+ "s.c.",
3563
+ "s987654321",
3564
+ "safari",
3565
+ "safe",
3566
+ "safely",
3567
+ "sailed",
3568
+ "sailing",
3569
+ "sal",
3570
+ "sale",
3571
+ "sales",
3572
3573
+ "sam",
3574
+ "samantha",
3575
+ "sarah",
3576
+ "saturday",
3577
+ "saudi",
3578
+ "savannas",
3579
+ "saved",
3580
+ "scan",
3581
+ "scanned",
3582
+ "scene",
3583
+ "scenic",
3584
+ "schedule",
3585
+ "scheduled",
3586
+ "scholarship",
3587
+ "scholarships",
3588
+ "sco",
3589
+ "se4550000000058398257466",
3590
+ "sea",
3591
+ "seamless",
3592
+ "seamlessly",
3593
+ "season",
3594
+ "section",
3595
+ "secular",
3596
+ "secure",
3597
+ "secured",
3598
+ "securely",
3599
+ "security",
3600
3601
+ "sed",
3602
+ "see",
3603
+ "seeking",
3604
+ "segmentation",
3605
+ "semester",
3606
+ "sen",
3607
+ "sen.",
3608
+ "send",
3609
+ "sending",
3610
+ "sense",
3611
+ "sensitive",
3612
+ "sent",
3613
+ "sentiment",
3614
+ "sep",
3615
+ "sep.",
3616
+ "separate",
3617
+ "sept",
3618
+ "sept.",
3619
+ "september",
3620
+ "ser",
3621
+ "serene",
3622
+ "series",
3623
+ "server",
3624
+ "servers",
3625
+ "service",
3626
+ "services",
3627
+ "ses",
3628
+ "sessions",
3629
+ "set",
3630
+ "setback",
3631
+ "setting",
3632
+ "settings",
3633
+ "settled",
3634
+ "several",
3635
+ "sey",
3636
+ "sh.",
3637
+ "sha",
3638
+ "shall",
3639
+ "shaped",
3640
+ "shaping",
3641
+ "share",
3642
+ "shareholders",
3643
+ "sharp",
3644
+ "she",
3645
+ "she's",
3646
+ "she\u2019s",
3647
+ "shi",
3648
+ "shia",
3649
+ "shinto",
3650
+ "ship",
3651
+ "shopping",
3652
+ "should",
3653
+ "showcasing",
3654
+ "shrine",
3655
+ "sia",
3656
+ "sic",
3657
+ "significantly",
3658
+ "signing",
3659
+ "sikh",
3660
+ "sin",
3661
+ "sis",
3662
+ "sister",
3663
+ "sit",
3664
+ "site",
3665
+ "six",
3666
+ "skyscrapers",
3667
+ "sly",
3668
+ "small",
3669
+ "smooth",
3670
+ "snowy",
3671
+ "so",
3672
+ "social",
3673
+ "socialist",
3674
+ "society",
3675
+ "software",
3676
+ "sognefjord",
3677
+ "solace",
3678
+ "somchai",
3679
+ "some",
3680
+ "somethin",
3681
+ "somethin'",
3682
+ "something",
3683
+ "somethin\u2019",
3684
+ "son",
3685
+ "soon",
3686
+ "sor",
3687
+ "source",
3688
+ "south",
3689
+ "southern",
3690
+ "southwest",
3691
+ "space",
3692
+ "spain",
3693
+ "span",
3694
+ "spanning",
3695
+ "special",
3696
+ "species",
3697
+ "specific",
3698
+ "specified",
3699
+ "spectacular",
3700
+ "spending",
3701
+ "spices",
3702
+ "sponsorship",
3703
3704
+ "spot",
3705
+ "spots",
3706
+ "sprawling",
3707
+ "square",
3708
+ "srs",
3709
+ "ss.",
3710
+ "ssn",
3711
+ "ssy",
3712
+ "st",
3713
+ "st.",
3714
+ "stamp",
3715
+ "stamped",
3716
+ "stamps",
3717
+ "start",
3718
+ "starting",
3719
+ "state",
3720
+ "statements",
3721
+ "states",
3722
+ "station",
3723
+ "statue",
3724
+ "status",
3725
+ "staunch",
3726
+ "stay",
3727
+ "steadfast",
3728
+ "still",
3729
+ "stop",
3730
+ "stopped",
3731
+ "stops",
3732
+ "store",
3733
+ "stored",
3734
+ "story",
3735
+ "strategic",
3736
+ "streams",
3737
+ "streets",
3738
+ "strength",
3739
+ "strong",
3740
+ "sts",
3741
+ "student",
3742
+ "students",
3743
+ "study",
3744
+ "studying",
3745
+ "stunning",
3746
+ "submission",
3747
+ "submit",
3748
+ "subscription",
3749
+ "successful",
3750
+ "such",
3751
+ "suggesting",
3752
+ "suggestions",
3753
+ "summer",
3754
+ "sunni",
3755
+ "support",
3756
3757
3758
3759
+ "supporter",
3760
+ "sur",
3761
+ "sure",
3762
+ "surprised",
3763
+ "surrounding",
3764
+ "suspicious",
3765
+ "sustainability",
3766
+ "svp",
3767
+ "sweden",
3768
+ "swiss",
3769
+ "switzerland",
3770
+ "system",
3771
+ "s\u2019s",
3772
+ "t",
3773
+ "t's",
3774
+ "t.",
3775
+ "t876543210",
3776
+ "ta",
3777
+ "tah",
3778
+ "take",
3779
+ "takeout",
3780
+ "taking",
3781
+ "tal",
3782
+ "talked",
3783
+ "tan",
3784
+ "tanzania",
3785
+ "tat",
3786
+ "tax",
3787
+ "taxes",
3788
+ "taxpayer",
3789
+ "tay",
3790
+ "tch",
3791
+ "td.",
3792
+ "tea",
3793
+ "teachings",
3794
+ "team",
3795
+ "technical",
3796
+ "technician",
3797
+ "technology",
3798
+ "ted",
3799
+ "tee",
3800
+ "tel",
3801
+ "telling",
3802
+ "tem",
3803
+ "temples",
3804
+ "temporary",
3805
+ "ten",
3806
+ "tenn",
3807
+ "tenn.",
3808
+ "tennessee",
3809
+ "ter",
3810
+ "terms",
3811
+ "tes",
3812
+ "testament",
3813
+ "texas",
3814
+ "text",
3815
+ "tha",
3816
+ "thailand",
3817
+ "than",
3818
+ "that",
3819
+ "that's",
3820
+ "that\u2019s",
3821
+ "the",
3822
+ "theft",
3823
+ "their",
3824
+ "them",
3825
+ "then",
3826
+ "there",
3827
+ "there's",
3828
+ "there\u2019s",
3829
+ "these",
3830
+ "they",
3831
+ "thirty",
3832
+ "this",
3833
+ "this's",
3834
+ "this\u2019s",
3835
+ "thorough",
3836
+ "thoroughly",
3837
+ "those",
3838
+ "three",
3839
+ "thrilled",
3840
+ "thriving",
3841
+ "through",
3842
+ "throughout",
3843
+ "ths",
3844
+ "thursday",
3845
+ "tia",
3846
+ "tibetan",
3847
+ "tic",
3848
+ "ticket",
3849
+ "tight",
3850
+ "til",
3851
+ "time",
3852
+ "timely",
3853
+ "times",
3854
+ "timkat",
3855
+ "tin",
3856
+ "tips",
3857
+ "tle",
3858
+ "tly",
3859
+ "to",
3860
+ "today",
3861
+ "together",
3862
+ "tokyo",
3863
+ "tom",
3864
+ "ton",
3865
+ "took",
3866
+ "tools",
3867
+ "top",
3868
+ "tor",
3869
+ "touch",
3870
+ "tour",
3871
+ "towering",
3872
+ "town",
3873
+ "tra",
3874
+ "tradition",
3875
+ "traditional",
3876
+ "traditions",
3877
+ "traffic",
3878
+ "train",
3879
+ "transaction",
3880
+ "transactions",
3881
+ "transcription",
3882
+ "transfer",
3883
+ "transferring",
3884
+ "transfers",
3885
+ "travel",
3886
+ "travels",
3887
+ "treasure",
3888
+ "trek",
3889
+ "tried",
3890
+ "trip",
3891
+ "troubleshoot",
3892
+ "troubleshooting",
3893
+ "trove",
3894
+ "trusted",
3895
+ "try",
3896
+ "tsa",
3897
+ "tue",
3898
+ "turmoil",
3899
+ "tus",
3900
+ "tuscany",
3901
+ "tutorial",
3902
+ "two",
3903
+ "t\u2019s",
3904
+ "u",
3905
+ "u.",
3906
+ "u1234567",
3907
+ "ual",
3908
+ "uan",
3909
+ "uch",
3910
+ "uct",
3911
+ "ude",
3912
+ "udi",
3913
+ "udy",
3914
+ "ued",
3915
+ "uel",
3916
+ "ues",
3917
+ "uff",
3918
+ "ug.",
3919
+ "uge",
3920
+ "ugh",
3921
3922
+ "uis",
3923
+ "uk",
3924
+ "ul.",
3925
+ "uld",
3926
+ "ule",
3927
+ "ull",
3928
+ "ult",
3929
+ "uly",
3930
+ "ums",
3931
+ "un.",
3932
+ "unauthorized",
3933
+ "uncovered",
3934
+ "und",
3935
+ "under",
3936
+ "understanding",
3937
+ "une",
3938
+ "unforeseen",
3939
+ "unforgettable",
3940
+ "unique",
3941
+ "united",
3942
+ "unsubscribe",
3943
3944
+ "unt",
3945
+ "until",
3946
+ "unusual",
3947
+ "up",
3948
+ "upbringing",
3949
+ "upcoming",
3950
+ "update",
3951
+ "updated",
3952
+ "updates",
3953
+ "upload",
3954
+ "uploaded",
3955
+ "upon",
3956
+ "ups",
3957
+ "ura",
3958
+ "ure",
3959
+ "urg",
3960
+ "urgent",
3961
+ "url",
3962
+ "urn",
3963
+ "urs",
3964
+ "us",
3965
+ "us_bank_number",
3966
+ "us_driver_license",
3967
+ "us_itin",
3968
+ "us_passport",
3969
+ "us_ssn",
3970
+ "usa",
3971
+ "use",
3972
+ "used",
3973
+ "user",
3974
+ "users",
3975
+ "ush",
3976
+ "using",
3977
+ "uss",
3978
+ "ust",
3979
+ "utah",
3980
+ "ute",
3981
+ "uth",
3982
+ "uty",
3983
3984
+ "v",
3985
+ "v.",
3986
+ "v.s",
3987
+ "v.s.",
3988
+ "v.v",
3989
+ "v98765432",
3990
+ "v_v",
3991
+ "va",
3992
+ "va.",
3993
+ "vacation",
3994
+ "vaisakhi",
3995
+ "val",
3996
+ "valid",
3997
+ "valley",
3998
+ "various",
3999
+ "vast",
4000
+ "ve",
4001
+ "ved",
4002
+ "vegas",
4003
+ "vegetarianism",
4004
+ "vehicle",
4005
+ "vel",
4006
+ "venezuela",
4007
+ "venture",
4008
+ "venue",
4009
+ "ver",
4010
+ "verification",
4011
+ "verified",
4012
+ "verify",
4013
+ "version",
4014
+ "very",
4015
+ "ves",
4016
+ "via",
4017
+ "vibrant",
4018
+ "vid",
4019
+ "videos",
4020
+ "view",
4021
+ "views",
4022
+ "villages",
4023
+ "vin",
4024
+ "vineyards",
4025
+ "violence",
4026
+ "virginia",
4027
+ "virtual",
4028
+ "visa",
4029
+ "vision",
4030
+ "visit",
4031
+ "visited",
4032
+ "visiting",
4033
+ "visitors",
4034
+ "vital",
4035
+ "volunteer",
4036
4037
+ "vor",
4038
+ "vote",
4039
+ "voting",
4040
+ "vpn",
4041
+ "vs",
4042
+ "vs.",
4043
+ "vulnerabilities",
4044
+ "w",
4045
+ "w's",
4046
+ "w.",
4047
+ "w/o",
4048
+ "w12345678",
4049
+ "waiting",
4050
+ "wal",
4051
+ "wallet",
4052
+ "wandered",
4053
+ "was",
4054
+ "wash",
4055
+ "wash.",
4056
+ "washington",
4057
+ "wat",
4058
+ "watch",
4059
+ "waters",
4060
+ "way",
4061
+ "we",
4062
+ "web",
4063
+ "webinar",
4064
+ "website",
4065
+ "wed",
4066
+ "wedding",
4067
+ "week",
4068
+ "weekend",
4069
+ "weekends",
4070
+ "weeks",
4071
+ "welcoming",
4072
+ "well",
4073
+ "wer",
4074
+ "were",
4075
+ "what",
4076
+ "what's",
4077
+ "what\u2019s",
4078
+ "when",
4079
+ "when's",
4080
+ "whenever",
4081
+ "when\u2019s",
4082
+ "where",
4083
+ "where's",
4084
+ "where\u2019s",
4085
+ "which",
4086
+ "while",
4087
+ "who",
4088
+ "who's",
4089
+ "whom",
4090
+ "whose",
4091
+ "who\u2019s",
4092
+ "why",
4093
+ "why's",
4094
+ "why\u2019s",
4095
+ "wi",
4096
+ "wildlife",
4097
+ "will",
4098
+ "wire",
4099
+ "wis",
4100
+ "wis.",
4101
+ "wisconsin",
4102
+ "with",
4103
+ "withholding",
4104
+ "within",
4105
+ "without",
4106
+ "wo",
4107
+ "wonder",
4108
+ "wonders",
4109
+ "work",
4110
+ "workshop",
4111
+ "world",
4112
+ "worldview",
4113
+ "worldwide",
4114
+ "worn",
4115
+ "would",
4116
+ "wrong",
4117
+ "wrote",
4118
+ "w\u2019s",
4119
+ "x",
4120
+ "x'",
4121
+ "x'x",
4122
+ "x'xxxx",
4123
+ "x.",
4124
+ "x.X",
4125
+ "x.d",
4126
+ "x.x",
4127
+ "x.x.",
4128
+ "x/x",
4129
+ "x87654321",
4130
+ "xD",
4131
+ "xDD",
4132
+ "xX",
4133
+ "xXX",
4134
+ "x_X",
4135
+ "x_d",
4136
+ "x_x",
4137
+ "xam",
4138
+ "xas",
4139
+ "xd",
4140
+ "xdd",
4141
+ "xdddd",
4142
+ "xes",
4143
+ "xx",
4144
+ "xx'",
4145
+ "xx'x",
4146
+ "xx'xx",
4147
+ "xx.",
4148
4149
4150
4151
+ "xxdddd",
4152
+ "xxddddxdddd",
4153
+ "xxddxdddd",
4154
+ "xxddxxxxdddd",
4155
+ "xxddxxxxddddxxxxdddx",
4156
+ "xxx",
4157
+ "xxx'x",
4158
4159
+ "xxx/xx",
4160
4161
+ "xxxx",
4162
+ "xxxx'",
4163
+ "xxxx'x",
4164
4165
+ "xxxx://xxx.xxxx.xxx",
4166
+ "xxxx://xxx.xxxx.xxxx.xxx",
4167
+ "xxxx://xxxx.xxxx.xxx",
4168
+ "xxxx://xxxx.xxxx.xxx/xxxx",
4169
+ "xxxx://xxxx.xxxx.xxxx.xxx",
4170
4171
4172
4173
4174
4175
+ "xxxx\u2019",
4176
+ "xxxx\u2019x",
4177
+ "xxx\u2019x",
4178
+ "xx\u2019",
4179
+ "xx\u2019x",
4180
+ "xx\u2019xx",
4181
+ "x\u2019",
4182
+ "x\u2019x",
4183
+ "x\u2019xxxx",
4184
+ "x\ufe35x",
4185
+ "y",
4186
+ "y'",
4187
+ "y's",
4188
+ "y.",
4189
+ "y123456789",
4190
+ "yan",
4191
+ "yared",
4192
+ "year",
4193
+ "years",
4194
+ "yed",
4195
+ "yer",
4196
+ "yet",
4197
+ "yon",
4198
+ "york",
4199
+ "you",
4200
+ "your",
4201
+ "ypt",
4202
+ "y\u2019",
4203
+ "y\u2019s",
4204
+ "z",
4205
+ "z.",
4206
+ "z98765432",
4207
+ "zed",
4208
+ "zil",
4209
+ "zon",
4210
+ "|",
4211
+ "}",
4212
+ "\u00a0",
4213
+ "\u00ac",
4214
+ "\u00ac_\u00ac",
4215
+ "\u00af",
4216
+ "\u00af\\(x)/\u00af",
4217
+ "\u00af\\(\u30c4)/\u00af",
4218
+ "\u00b0",
4219
+ "\u00b0C.",
4220
+ "\u00b0F.",
4221
+ "\u00b0K.",
4222
+ "\u00b0X.",
4223
+ "\u00b0c.",
4224
+ "\u00b0f.",
4225
+ "\u00b0k.",
4226
+ "\u00b0x.",
4227
+ "\u00e4",
4228
+ "\u00e4.",
4229
+ "\u00f6",
4230
+ "\u00f6.",
4231
+ "\u00fc",
4232
+ "\u00fc.",
4233
+ "\u0ca0",
4234
+ "\u0ca0_\u0ca0",
4235
+ "\u0ca0\ufe35\u0ca0",
4236
+ "\u2014",
4237
+ "\u2018",
4238
+ "\u2018S",
4239
+ "\u2018X",
4240
+ "\u2018s",
4241
+ "\u2018x",
4242
+ "\u2019",
4243
+ "\u2019-(",
4244
+ "\u2019-)",
4245
+ "\u2019Cause",
4246
+ "\u2019Cos",
4247
+ "\u2019Coz",
4248
+ "\u2019Cuz",
4249
+ "\u2019S",
4250
+ "\u2019X",
4251
+ "\u2019Xxx",
4252
+ "\u2019Xxxxx",
4253
+ "\u2019am",
4254
+ "\u2019bout",
4255
+ "\u2019cause",
4256
+ "\u2019cos",
4257
+ "\u2019coz",
4258
+ "\u2019cuz",
4259
+ "\u2019d",
4260
+ "\u2019em",
4261
+ "\u2019ll",
4262
+ "\u2019m",
4263
+ "\u2019nuff",
4264
+ "\u2019re",
4265
+ "\u2019s",
4266
+ "\u2019ve",
4267
+ "\u2019x",
4268
+ "\u2019xx",
4269
+ "\u2019xxx",
4270
+ "\u2019xxxx",
4271
+ "\u2019y",
4272
+ "\u2019\u2019",
4273
+ "\u2501",
4274
+ "\u253b",
4275
+ "\u253b\u2501\u253b",
4276
+ "\u256f",
4277
+ "\u25a1",
4278
+ "\ufe35",
4279
+ "\uff09"
4280
+ ]
vocab/vectors ADDED
Binary file (128 Bytes). View file
 
vocab/vectors.cfg ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+ "mode":"default"
3
+ }