TrajanovRisto commited on
Commit
51f6061
1 Parent(s): 1cb836b

Update spaCy pipeline

Browse files
.gitattributes CHANGED
@@ -32,3 +32,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
32
  *.zip filter=lfs diff=lfs merge=lfs -text
33
  *.zst filter=lfs diff=lfs merge=lfs -text
34
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
32
  *.zip filter=lfs diff=lfs merge=lfs -text
33
  *.zst filter=lfs diff=lfs merge=lfs -text
34
  *tfevents* filter=lfs diff=lfs merge=lfs -text
35
+ en_ner_esg-any-py3-none-any.whl filter=lfs diff=lfs merge=lfs -text
36
+ 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_ner_esg
9
+ results:
10
+ - task:
11
+ name: NER
12
+ type: token-classification
13
+ metrics:
14
+ - name: NER Precision
15
+ type: precision
16
+ value: 0.95
17
+ - name: NER Recall
18
+ type: recall
19
+ value: 0.9245742092
20
+ - name: NER F Score
21
+ type: f_score
22
+ value: 0.9371146732
23
+ ---
24
+ | Feature | Description |
25
+ | --- | --- |
26
+ | **Name** | `en_ner_esg` |
27
+ | **Version** | `0.0.0` |
28
+ | **spaCy** | `>=3.5.2,<3.6.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 (3 labels for 1 components)</summary>
41
+
42
+ | Component | Labels |
43
+ | --- | --- |
44
+ | **`ner`** | `Environmental`, `Governance`, `Social` |
45
+
46
+ </details>
47
+
48
+ ### Accuracy
49
+
50
+ | Type | Score |
51
+ | --- | --- |
52
+ | `ENTS_F` | 93.71 |
53
+ | `ENTS_P` | 95.00 |
54
+ | `ENTS_R` | 92.46 |
55
+ | `TRANSFORMER_LOSS` | 3213.34 |
56
+ | `NER_LOSS` | 2096.88 |
config.cfg ADDED
@@ -0,0 +1,146 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [paths]
2
+ train = "./train.spacy"
3
+ dev = "./val.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 = 64
15
+ disabled = []
16
+ before_creation = null
17
+ after_creation = null
18
+ after_pipeline_creation = null
19
+ tokenizer = {"@tokenizers":"spacy.Tokenizer.v1"}
20
+
21
+ [components]
22
+
23
+ [components.ner]
24
+ factory = "ner"
25
+ incorrect_spans_key = null
26
+ moves = null
27
+ scorer = {"@scorers":"spacy.ner_scorer.v1"}
28
+ update_with_oracle_cut_size = 100
29
+
30
+ [components.ner.model]
31
+ @architectures = "spacy.TransitionBasedParser.v2"
32
+ state_type = "ner"
33
+ extra_state_tokens = false
34
+ hidden_width = 64
35
+ maxout_pieces = 2
36
+ use_upper = false
37
+ nO = null
38
+
39
+ [components.ner.model.tok2vec]
40
+ @architectures = "spacy-transformers.TransformerListener.v1"
41
+ grad_factor = 1.0
42
+ pooling = {"@layers":"reduce_mean.v1"}
43
+ upstream = "*"
44
+
45
+ [components.transformer]
46
+ factory = "transformer"
47
+ max_batch_items = 4096
48
+ set_extra_annotations = {"@annotation_setters":"spacy-transformers.null_annotation_setter.v1"}
49
+
50
+ [components.transformer.model]
51
+ @architectures = "spacy-transformers.TransformerModel.v3"
52
+ name = "roberta-base"
53
+ mixed_precision = false
54
+
55
+ [components.transformer.model.get_spans]
56
+ @span_getters = "spacy-transformers.strided_spans.v1"
57
+ window = 128
58
+ stride = 96
59
+
60
+ [components.transformer.model.grad_scaler_config]
61
+
62
+ [components.transformer.model.tokenizer_config]
63
+ use_fast = true
64
+
65
+ [components.transformer.model.transformer_config]
66
+
67
+ [corpora]
68
+
69
+ [corpora.dev]
70
+ @readers = "spacy.Corpus.v1"
71
+ path = ${paths.dev}
72
+ max_length = 0
73
+ gold_preproc = false
74
+ limit = 0
75
+ augmenter = null
76
+
77
+ [corpora.train]
78
+ @readers = "spacy.Corpus.v1"
79
+ path = ${paths.train}
80
+ max_length = 0
81
+ gold_preproc = false
82
+ limit = 0
83
+ augmenter = null
84
+
85
+ [training]
86
+ accumulate_gradient = 3
87
+ dev_corpus = "corpora.dev"
88
+ train_corpus = "corpora.train"
89
+ seed = ${system.seed}
90
+ gpu_allocator = ${system.gpu_allocator}
91
+ dropout = 0.1
92
+ patience = 1600
93
+ max_epochs = 500
94
+ max_steps = 20000
95
+ eval_frequency = 200
96
+ frozen_components = []
97
+ annotating_components = []
98
+ before_to_disk = null
99
+ before_update = null
100
+
101
+ [training.batcher]
102
+ @batchers = "spacy.batch_by_padded.v1"
103
+ discard_oversize = true
104
+ size = 2000
105
+ buffer = 256
106
+ get_length = null
107
+
108
+ [training.logger]
109
+ @loggers = "spacy.ConsoleLogger.v1"
110
+ progress_bar = false
111
+
112
+ [training.optimizer]
113
+ @optimizers = "Adam.v1"
114
+ beta1 = 0.9
115
+ beta2 = 0.999
116
+ L2_is_weight_decay = true
117
+ L2 = 0.01
118
+ grad_clip = 1.0
119
+ use_averages = false
120
+ eps = 0.00000001
121
+
122
+ [training.optimizer.learn_rate]
123
+ @schedules = "warmup_linear.v1"
124
+ warmup_steps = 250
125
+ total_steps = 20000
126
+ initial_rate = 0.00005
127
+
128
+ [training.score_weights]
129
+ ents_f = 1.0
130
+ ents_p = 0.0
131
+ ents_r = 0.0
132
+ ents_per_type = null
133
+
134
+ [pretraining]
135
+
136
+ [initialize]
137
+ vectors = ${paths.vectors}
138
+ init_tok2vec = ${paths.init_tok2vec}
139
+ vocab_data = null
140
+ lookups = null
141
+ before_init = null
142
+ after_init = null
143
+
144
+ [initialize.components]
145
+
146
+ [initialize.tokenizer]
desktop.ini ADDED
Binary file (244 Bytes). View file
 
en_ner_esg-any-py3-none-any.whl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:53dc26233e6fac6ff7d8265be7b8517570ef7b0d7ccd0dfdaa368bfebefdd2ef
3
+ size 426813454
meta.json ADDED
@@ -0,0 +1,66 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lang":"en",
3
+ "name":"ner_esg",
4
+ "version":"0.0.0",
5
+ "description":"",
6
+ "author":"",
7
+ "email":"",
8
+ "url":"",
9
+ "license":"",
10
+ "spacy_version":">=3.5.2,<3.6.0",
11
+ "spacy_git_version":"Unknown",
12
+ "vectors":{
13
+ "width":0,
14
+ "vectors":0,
15
+ "keys":0,
16
+ "name":null
17
+ },
18
+ "labels":{
19
+ "transformer":[
20
+
21
+ ],
22
+ "ner":[
23
+ "Environmental",
24
+ "Governance",
25
+ "Social"
26
+ ]
27
+ },
28
+ "pipeline":[
29
+ "transformer",
30
+ "ner"
31
+ ],
32
+ "components":[
33
+ "transformer",
34
+ "ner"
35
+ ],
36
+ "disabled":[
37
+
38
+ ],
39
+ "performance":{
40
+ "ents_f":0.9371146732,
41
+ "ents_p":0.95,
42
+ "ents_r":0.9245742092,
43
+ "ents_per_type":{
44
+ "Governance":{
45
+ "p":0.9482758621,
46
+ "r":0.9166666667,
47
+ "f":0.9322033898
48
+ },
49
+ "Environmental":{
50
+ "p":0.9532163743,
51
+ "r":0.9588235294,
52
+ "f":0.9560117302
53
+ },
54
+ "Social":{
55
+ "p":0.9469026549,
56
+ "r":0.8842975207,
57
+ "f":0.9145299145
58
+ }
59
+ },
60
+ "transformer_loss":32.1334066729,
61
+ "ner_loss":20.9687983321
62
+ },
63
+ "requirements":[
64
+ "spacy-transformers>=1.2.3,<1.3.0"
65
+ ]
66
+ }
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/desktop.ini ADDED
Binary file (244 Bytes). View file
 
ner/model ADDED
Binary file (220 kB). View file
 
ner/moves ADDED
@@ -0,0 +1 @@
 
 
1
+ ��moves��{"0":{},"1":{"Governance":435,"Environmental":434,"Social":340},"2":{"Governance":435,"Environmental":434,"Social":340},"3":{"Governance":435,"Environmental":434,"Social":340},"4":{"Governance":435,"Environmental":434,"Social":340,"":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/desktop.ini ADDED
Binary file (244 Bytes). View file
 
transformer/model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9910e12d3a20ee9c900133515f6c712999abfb84de5ccf7f59b85a7cd4f814de
3
+ size 502030651
vocab/desktop.ini ADDED
Binary file (244 Bytes). View file
 
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,3506 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ "\t",
3
+ "\t\n",
4
+ "\n",
5
+ "\n\n",
6
+ "\n\n ",
7
+ "\n\n \n\n \t",
8
+ "\n \t",
9
+ " ",
10
+ " ",
11
+ "\"",
12
+ "$",
13
+ "%",
14
+ "&",
15
+ "'",
16
+ "''",
17
+ "'-(",
18
+ "'-)",
19
+ "'Cause",
20
+ "'Cos",
21
+ "'Coz",
22
+ "'Cuz",
23
+ "'S",
24
+ "'X",
25
+ "'Xxx",
26
+ "'Xxxxx",
27
+ "'am",
28
+ "'bout",
29
+ "'cause",
30
+ "'cos",
31
+ "'coz",
32
+ "'cuz",
33
+ "'d",
34
+ "'em",
35
+ "'ll",
36
+ "'m",
37
+ "'nuff",
38
+ "'re",
39
+ "'s",
40
+ "'ve",
41
+ "'x",
42
+ "'xx",
43
+ "'xxx",
44
+ "'xxxx",
45
+ "'y",
46
+ "(",
47
+ "(((",
48
+ "(*>",
49
+ "(*_*)",
50
+ "(-8",
51
+ "(-:",
52
+ "(-;",
53
+ "(-_-)",
54
+ "(-d",
55
+ "(._.)",
56
+ "(:",
57
+ "(;",
58
+ "(=",
59
+ "(>_<)",
60
+ "(^_^)",
61
+ "(o:",
62
+ "(x:",
63
+ "(x_x)",
64
+ "(\u00ac_\u00ac)",
65
+ "(\u0ca0_\u0ca0)",
66
+ "(\u256f\u00b0\u25a1\u00b0\uff09\u256f\ufe35\u253b\u2501\u253b",
67
+ ")",
68
+ ")))",
69
+ "),5",
70
+ ")-:",
71
+ ")/\u00af",
72
+ "):",
73
+ "*",
74
+ "+",
75
+ "+44",
76
+ "+dd",
77
+ ",",
78
+ "-",
79
+ "-((",
80
+ "-))",
81
+ "-/",
82
+ "-0",
83
+ "-3",
84
+ "-8",
85
+ "-D",
86
+ "-O",
87
+ "-P",
88
+ "-X",
89
+ "-_-",
90
+ "-__-",
91
+ "-d",
92
+ "-o",
93
+ "-p",
94
+ "-x",
95
+ "-|",
96
+ ".",
97
+ ".10",
98
+ ".C.",
99
+ ".D.",
100
+ ".E.",
101
+ ".G.",
102
+ ".H.",
103
+ ".J.",
104
+ ".M.",
105
+ ".S.",
106
+ ".Y.",
107
+ "._.",
108
+ ".e.",
109
+ ".g.",
110
+ ".m.",
111
+ ".s.",
112
+ "/",
113
+ "/3",
114
+ "/d",
115
+ "/or",
116
+ "0",
117
+ "0.0",
118
+ "0.6",
119
+ "0.o",
120
+ "008",
121
+ "011",
122
+ "014",
123
+ "016",
124
+ "019",
125
+ "020",
126
+ "021",
127
+ "023",
128
+ "028",
129
+ "030",
130
+ "050",
131
+ "0_0",
132
+ "0_o",
133
+ "1",
134
+ "1.5",
135
+ "10",
136
+ "103",
137
+ "107",
138
+ "10a.m",
139
+ "10a.m.",
140
+ "10p.m",
141
+ "10p.m.",
142
+ "11",
143
+ "11a.m",
144
+ "11a.m.",
145
+ "11p.m",
146
+ "11p.m.",
147
+ "12",
148
+ "12a.m",
149
+ "12a.m.",
150
+ "12p.m",
151
+ "12p.m.",
152
+ "13",
153
+ "16",
154
+ "16.8",
155
+ "17",
156
+ "1MDB",
157
+ "1a.m",
158
+ "1a.m.",
159
+ "1mdb",
160
+ "1p.m",
161
+ "1p.m.",
162
+ "2",
163
+ "2,3",
164
+ "2008",
165
+ "2011",
166
+ "2014",
167
+ "2016",
168
+ "2019",
169
+ "2020",
170
+ "2021",
171
+ "2023",
172
+ "2028",
173
+ "2030",
174
+ "2050",
175
+ "2050),5",
176
+ "2050.6",
177
+ "21",
178
+ "23",
179
+ "24/",
180
+ "250",
181
+ "26",
182
+ "273",
183
+ "2a.m",
184
+ "2a.m.",
185
+ "2p.m",
186
+ "2p.m.",
187
+ "3",
188
+ "300",
189
+ "33",
190
+ "333",
191
+ "36/",
192
+ "360",
193
+ "3a.m",
194
+ "3a.m.",
195
+ "3p.m",
196
+ "3p.m.",
197
+ "4",
198
+ "4a.m",
199
+ "4a.m.",
200
+ "4p.m",
201
+ "4p.m.",
202
+ "5",
203
+ "5a.m",
204
+ "5a.m.",
205
+ "5p.m",
206
+ "5p.m.",
207
+ "6",
208
+ "6.8",
209
+ "6a.m",
210
+ "6a.m.",
211
+ "6p.m",
212
+ "6p.m.",
213
+ "7",
214
+ "70",
215
+ "72",
216
+ "750",
217
+ "7867",
218
+ "7a.m",
219
+ "7a.m.",
220
+ "7p.m",
221
+ "7p.m.",
222
+ "8",
223
+ "8)",
224
+ "8-",
225
+ "8-)",
226
+ "8-D",
227
+ "8-d",
228
+ "80",
229
+ "867",
230
+ "8D",
231
+ "8a.m",
232
+ "8a.m.",
233
+ "8d",
234
+ "8p.m",
235
+ "8p.m.",
236
+ "9",
237
+ "9a.m",
238
+ "9a.m.",
239
+ "9p.m",
240
+ "9p.m.",
241
+ ":",
242
+ ":'(",
243
+ ":')",
244
+ ":'-(",
245
+ ":'-)",
246
+ ":(",
247
+ ":((",
248
+ ":(((",
249
+ ":()",
250
+ ":)",
251
+ ":))",
252
+ ":)))",
253
+ ":*",
254
+ ":-(",
255
+ ":-((",
256
+ ":-(((",
257
+ ":-)",
258
+ ":-))",
259
+ ":-)))",
260
+ ":-*",
261
+ ":-/",
262
+ ":-0",
263
+ ":-3",
264
+ ":->",
265
+ ":-D",
266
+ ":-O",
267
+ ":-P",
268
+ ":-X",
269
+ ":-]",
270
+ ":-d",
271
+ ":-o",
272
+ ":-p",
273
+ ":-x",
274
+ ":-|",
275
+ ":-}",
276
+ ":/",
277
+ ":0",
278
+ ":1",
279
+ ":3",
280
+ ":>",
281
+ ":D",
282
+ ":O",
283
+ ":P",
284
+ ":X",
285
+ ":]",
286
+ ":d",
287
+ ":o",
288
+ ":o)",
289
+ ":p",
290
+ ":x",
291
+ ":x)",
292
+ ":|",
293
+ ":}",
294
+ ":\u2019(",
295
+ ":\u2019)",
296
+ ":\u2019-(",
297
+ ":\u2019-)",
298
+ ";",
299
+ ";)",
300
+ ";-)",
301
+ ";-D",
302
+ ";-X",
303
+ ";-d",
304
+ ";D",
305
+ ";X",
306
+ ";_;",
307
+ ";d",
308
+ "<",
309
+ "<.<",
310
+ "</3",
311
+ "</d",
312
+ "<3",
313
+ "<33",
314
+ "<333",
315
+ "<d",
316
+ "<dd",
317
+ "<ddd",
318
+ "<space>",
319
+ "<xxxx>",
320
+ "=",
321
+ "=(",
322
+ "=)",
323
+ "=/",
324
+ "=3",
325
+ "=D",
326
+ "=X",
327
+ "=[",
328
+ "=]",
329
+ "=d",
330
+ "=|",
331
+ ">",
332
+ ">.<",
333
+ ">.>",
334
+ ">:(",
335
+ ">:o",
336
+ ">:x",
337
+ "><(((*>",
338
+ "@",
339
+ "@_@",
340
+ "@iigccnews",
341
+ "@xxxx",
342
+ "A",
343
+ "AAP",
344
+ "AIGCC",
345
+ "ASB",
346
+ "About",
347
+ "Accountability",
348
+ "Accounting",
349
+ "Accurate",
350
+ "Adm",
351
+ "Adm.",
352
+ "Adviser",
353
+ "Agency",
354
+ "Agreement",
355
+ "Ai",
356
+ "Airlines",
357
+ "Ak",
358
+ "Ak.",
359
+ "Ala",
360
+ "Ala.",
361
+ "Alabama",
362
+ "Alaska",
363
+ "Alliance",
364
+ "Allianz",
365
+ "Amazon",
366
+ "American",
367
+ "Among",
368
+ "An",
369
+ "Analytica",
370
+ "Anglo",
371
+ "Anne",
372
+ "Another",
373
+ "Apple",
374
+ "Apr",
375
+ "Apr.",
376
+ "April",
377
+ "Arctic",
378
+ "Are",
379
+ "Ariz",
380
+ "Ariz.",
381
+ "Arizona",
382
+ "Ark",
383
+ "Ark.",
384
+ "Arkansas",
385
+ "As",
386
+ "Asia",
387
+ "Asian",
388
+ "Asset",
389
+ "Association",
390
+ "At",
391
+ "Audit",
392
+ "Aug",
393
+ "Aug.",
394
+ "August",
395
+ "Australia",
396
+ "Australian",
397
+ "B",
398
+ "BHP",
399
+ "BP",
400
+ "Backing",
401
+ "Bank",
402
+ "Barrick",
403
+ "Below",
404
+ "Bernie",
405
+ "Bight",
406
+ "Billiton",
407
+ "BlackRock",
408
+ "Blackstone",
409
+ "Blind",
410
+ "Board",
411
+ "Brazil",
412
+ "Breaking",
413
+ "Bros",
414
+ "Bros.",
415
+ "Burberry",
416
+ "By",
417
+ "C",
418
+ "C'm",
419
+ "C++",
420
+ "C.",
421
+ "CAP",
422
+ "CEO",
423
+ "CIP",
424
+ "CO",
425
+ "COP",
426
+ "Ca",
427
+ "CalPERS",
428
+ "Calif",
429
+ "Calif.",
430
+ "California",
431
+ "Cambridge",
432
+ "Can",
433
+ "Carbon",
434
+ "Carney",
435
+ "Cause",
436
+ "Cement",
437
+ "Chair",
438
+ "Change",
439
+ "Chase",
440
+ "Chevron",
441
+ "Chevron\u0092s",
442
+ "Chief",
443
+ "Chinese",
444
+ "City",
445
+ "Climate",
446
+ "Co",
447
+ "Co.",
448
+ "Coca",
449
+ "Cola",
450
+ "Colo",
451
+ "Colo.",
452
+ "Colorado",
453
+ "Communications",
454
+ "Companies",
455
+ "Company",
456
+ "Company\u0092s",
457
+ "Compared",
458
+ "Conn",
459
+ "Conn.",
460
+ "Connecticut",
461
+ "Consistency",
462
+ "Consistent",
463
+ "Consumer",
464
+ "Contact",
465
+ "Convened",
466
+ "Corp",
467
+ "Corp.",
468
+ "Corporate",
469
+ "Cos",
470
+ "Could",
471
+ "Coz",
472
+ "Cuz",
473
+ "C\u2019m",
474
+ "D",
475
+ "D.",
476
+ "D.C.",
477
+ "DON",
478
+ "Dan",
479
+ "Dare",
480
+ "Dec",
481
+ "Dec.",
482
+ "December",
483
+ "Deepwater",
484
+ "Degrees",
485
+ "Del",
486
+ "Del.",
487
+ "Delaware",
488
+ "Delta",
489
+ "Despite",
490
+ "Deutsche",
491
+ "Did",
492
+ "Director",
493
+ "Directors",
494
+ "Do",
495
+ "Does",
496
+ "Doin",
497
+ "Doin'",
498
+ "Doin\u2019",
499
+ "Dolce",
500
+ "Dominion",
501
+ "Dr",
502
+ "Dr.",
503
+ "Duke",
504
+ "Dutch",
505
+ "E",
506
+ "E.G.",
507
+ "E.g",
508
+ "E.g.",
509
+ "EAS",
510
+ "EDF",
511
+ "ENT",
512
+ "ERS",
513
+ "ESG",
514
+ "Ecuadorian",
515
+ "Emma",
516
+ "Enabling",
517
+ "Enbridge",
518
+ "Energy",
519
+ "Enron",
520
+ "Environment",
521
+ "Environmental",
522
+ "Envoy",
523
+ "Equinor",
524
+ "Europe",
525
+ "European",
526
+ "Executive",
527
+ "ExxonMobil",
528
+ "F",
529
+ "F.",
530
+ "FI",
531
+ "Facebook",
532
+ "Fargo",
533
+ "Feb",
534
+ "Feb.",
535
+ "February",
536
+ "Fern",
537
+ "Fiduciary",
538
+ "Figure",
539
+ "Finance",
540
+ "Financial",
541
+ "Fiona",
542
+ "Fla",
543
+ "Fla.",
544
+ "Florida",
545
+ "Flying",
546
+ "For",
547
+ "Forever",
548
+ "Fund",
549
+ "Further",
550
+ "Future",
551
+ "G",
552
+ "GAAP",
553
+ "GCC",
554
+ "GHG",
555
+ "Ga",
556
+ "Ga.",
557
+ "Gabbana",
558
+ "Gas",
559
+ "Gen",
560
+ "Gen.",
561
+ "General",
562
+ "Georgia",
563
+ "Given",
564
+ "Goin",
565
+ "Goin'",
566
+ "Goin\u2019",
567
+ "Gold",
568
+ "Goldman",
569
+ "Gon",
570
+ "Goods",
571
+ "Google",
572
+ "Got",
573
+ "Gov",
574
+ "Gov.",
575
+ "Governance",
576
+ "Great",
577
+ "Group",
578
+ "Gucci",
579
+ "Guidance",
580
+ "G\u00fcnther",
581
+ "H",
582
+ "H&M",
583
+ "HG\u0094",
584
+ "Habit",
585
+ "Had",
586
+ "Has",
587
+ "Have",
588
+ "Havin",
589
+ "Havin'",
590
+ "Havin\u2019",
591
+ "He",
592
+ "He's",
593
+ "Head",
594
+ "Herd",
595
+ "He\u2019s",
596
+ "Horizon",
597
+ "How",
598
+ "How's",
599
+ "How\u2019s",
600
+ "I",
601
+ "I.E.",
602
+ "I.e",
603
+ "I.e.",
604
+ "IASB",
605
+ "IEA",
606
+ "IGCC",
607
+ "II",
608
+ "IIGCC",
609
+ "ING",
610
+ "Ia",
611
+ "Ia.",
612
+ "Id",
613
+ "Id.",
614
+ "Idaho",
615
+ "If",
616
+ "Ill",
617
+ "Ill.",
618
+ "Illinois",
619
+ "In",
620
+ "Inc",
621
+ "Inc.",
622
+ "Incentive",
623
+ "Ind",
624
+ "Ind.",
625
+ "Indiana",
626
+ "Indigenous",
627
+ "Initiative",
628
+ "Institutional",
629
+ "Intensity",
630
+ "Interim",
631
+ "International",
632
+ "Investment",
633
+ "Investor",
634
+ "Investors",
635
+ "Iowa",
636
+ "Is",
637
+ "Island",
638
+ "It",
639
+ "It's",
640
+ "Italian",
641
+ "Item",
642
+ "It\u2019s",
643
+ "J",
644
+ "JPMorgan",
645
+ "Jan",
646
+ "Jan.",
647
+ "January",
648
+ "Johnson",
649
+ "Jr",
650
+ "Jr.",
651
+ "Jul",
652
+ "Jul.",
653
+ "July",
654
+ "Jun",
655
+ "Jun.",
656
+ "June",
657
+ "K",
658
+ "K.",
659
+ "Kan",
660
+ "Kan.",
661
+ "Kans",
662
+ "Kans.",
663
+ "Kansas",
664
+ "Kentucky",
665
+ "Ky",
666
+ "Ky.",
667
+ "L",
668
+ "LONDON",
669
+ "LSA",
670
+ "La",
671
+ "La.",
672
+ "Legal",
673
+ "Let",
674
+ "Let's",
675
+ "Letter",
676
+ "Let\u2019s",
677
+ "Lifetime",
678
+ "Line",
679
+ "Long",
680
+ "Louisiana",
681
+ "Lovin",
682
+ "Lovin'",
683
+ "Lovin\u2019",
684
+ "Ltd",
685
+ "Ltd.",
686
+ "Lyft",
687
+ "Lyrica",
688
+ "M",
689
+ "MDB",
690
+ "Ma'am",
691
+ "Madoff",
692
+ "Major",
693
+ "Management",
694
+ "Managing",
695
+ "Mar",
696
+ "Mar.",
697
+ "March",
698
+ "Mark",
699
+ "Markets",
700
+ "Mass",
701
+ "Mass.",
702
+ "Massachusetts",
703
+ "May",
704
+ "Ma\u2019am",
705
+ "McDonald",
706
+ "Md",
707
+ "Md.",
708
+ "Media",
709
+ "Member",
710
+ "Merck",
711
+ "Messrs",
712
+ "Messrs.",
713
+ "Mich",
714
+ "Mich.",
715
+ "Michigan",
716
+ "Microsoft",
717
+ "Might",
718
+ "Mikula",
719
+ "Minn",
720
+ "Minn.",
721
+ "Minnesota",
722
+ "Miss",
723
+ "Miss.",
724
+ "Mississippi",
725
+ "Mo",
726
+ "Mo.",
727
+ "Mobile",
728
+ "Mont",
729
+ "Mont.",
730
+ "Moreover",
731
+ "Motors",
732
+ "Mount",
733
+ "Mr",
734
+ "Mr.",
735
+ "Mrs",
736
+ "Mrs.",
737
+ "Ms",
738
+ "Ms.",
739
+ "Mt",
740
+ "Mt.",
741
+ "Must",
742
+ "N",
743
+ "N.C.",
744
+ "N.D.",
745
+ "N.H.",
746
+ "N.J.",
747
+ "N.M.",
748
+ "N.Y.",
749
+ "NEP",
750
+ "NZE",
751
+ "Neb",
752
+ "Neb.",
753
+ "Nebr",
754
+ "Nebr.",
755
+ "Nebraska",
756
+ "Need",
757
+ "Nestle",
758
+ "Net",
759
+ "Nev",
760
+ "Nev.",
761
+ "Nevada",
762
+ "New",
763
+ "New Hampshire",
764
+ "New Jersey",
765
+ "New Mexico",
766
+ "New York",
767
+ "Niger",
768
+ "Nike",
769
+ "North Carolina",
770
+ "North Dakota",
771
+ "Not",
772
+ "Nothin",
773
+ "Nothin'",
774
+ "Nothing",
775
+ "Nothin\u2019",
776
+ "Nov",
777
+ "Nov.",
778
+ "November",
779
+ "Nuthin",
780
+ "Nuthin'",
781
+ "Nuthin\u2019",
782
+ "O",
783
+ "O'clock",
784
+ "O.O",
785
+ "O.o",
786
+ "O_O",
787
+ "O_o",
788
+ "Oct",
789
+ "Oct.",
790
+ "October",
791
+ "Officer",
792
+ "Oil",
793
+ "Okla",
794
+ "Okla.",
795
+ "Oklahoma",
796
+ "Ol",
797
+ "Ol'",
798
+ "Ol\u2019",
799
+ "Open",
800
+ "Ore",
801
+ "Ore.",
802
+ "Oregon",
803
+ "Other",
804
+ "Ought",
805
+ "Overall",
806
+ "Oversight",
807
+ "Owner",
808
+ "OxyContin",
809
+ "O\u2019clock",
810
+ "P",
811
+ "PCI",
812
+ "PLSA",
813
+ "PRI",
814
+ "Pa",
815
+ "Pa.",
816
+ "Paris",
817
+ "Pennsylvania",
818
+ "Pensions",
819
+ "PepsiCo",
820
+ "Pfeifer",
821
+ "Pfizer",
822
+ "Ph",
823
+ "Ph.D.",
824
+ "Pharma",
825
+ "Plan",
826
+ "Ponzi",
827
+ "Portfolio",
828
+ "Press",
829
+ "Primark",
830
+ "Principles",
831
+ "Prof",
832
+ "Prof.",
833
+ "Program",
834
+ "Proponents",
835
+ "Proposal",
836
+ "Proxy",
837
+ "Public",
838
+ "Purdue",
839
+ "R",
840
+ "RESOLVED",
841
+ "ROOT",
842
+ "Rather",
843
+ "Rebecca",
844
+ "Reducing",
845
+ "Release",
846
+ "Rep",
847
+ "Rep.",
848
+ "Report",
849
+ "Reporting",
850
+ "Resilience",
851
+ "Responsible",
852
+ "Rev",
853
+ "Rev.",
854
+ "Reynolds",
855
+ "Rio",
856
+ "River",
857
+ "S",
858
+ "S.C.",
859
+ "SE",
860
+ "STATEMENT",
861
+ "SUPPORTING",
862
+ "Sachs",
863
+ "Savings",
864
+ "Scenario",
865
+ "Scientific",
866
+ "Scope",
867
+ "Scopes",
868
+ "See",
869
+ "Sen",
870
+ "Sen.",
871
+ "Sep",
872
+ "Sep.",
873
+ "Separation",
874
+ "Sept",
875
+ "Sept.",
876
+ "September",
877
+ "Services",
878
+ "Sha",
879
+ "Shareholders",
880
+ "She",
881
+ "She's",
882
+ "Shell",
883
+ "She\u2019s",
884
+ "Should",
885
+ "Simpson",
886
+ "Social",
887
+ "Somethin",
888
+ "Somethin'",
889
+ "Somethin\u2019",
890
+ "Source",
891
+ "South Carolina",
892
+ "Southern",
893
+ "Special",
894
+ "St",
895
+ "St.",
896
+ "Standards",
897
+ "Steering",
898
+ "Stephanie",
899
+ "Subsequent",
900
+ "Successfully",
901
+ "SunEdison",
902
+ "Supporting",
903
+ "Sustainability",
904
+ "T",
905
+ "Tanzania",
906
+ "Target",
907
+ "Tenn",
908
+ "Tenn.",
909
+ "Tennessee",
910
+ "Tesla",
911
+ "Thallinger",
912
+ "That",
913
+ "That's",
914
+ "That\u2019s",
915
+ "The",
916
+ "There",
917
+ "There's",
918
+ "Therefore",
919
+ "There\u2019s",
920
+ "These",
921
+ "They",
922
+ "This",
923
+ "This's",
924
+ "This\u2019s",
925
+ "Those",
926
+ "Through",
927
+ "TikTok",
928
+ "Tinto",
929
+ "To",
930
+ "Today",
931
+ "Tok",
932
+ "Tom",
933
+ "Total",
934
+ "TotalEnergies",
935
+ "Tracker",
936
+ "Transparently",
937
+ "Transportation",
938
+ "Twitter",
939
+ "U",
940
+ "U.S.",
941
+ "UK",
942
+ "UN",
943
+ "UNEP",
944
+ "US",
945
+ "US$",
946
+ "Uber",
947
+ "United",
948
+ "Upstream",
949
+ "Utilities",
950
+ "V",
951
+ "V.V",
952
+ "VED",
953
+ "V_V",
954
+ "Va",
955
+ "Va.",
956
+ "Vanguard",
957
+ "Vioxx",
958
+ "Virginia",
959
+ "Volkswagen",
960
+ "W",
961
+ "WHEREAS",
962
+ "Walmart",
963
+ "Was",
964
+ "Wash",
965
+ "Wash.",
966
+ "Washington",
967
+ "We",
968
+ "Wells",
969
+ "Were",
970
+ "What",
971
+ "What's",
972
+ "What\u2019s",
973
+ "When",
974
+ "When's",
975
+ "When\u2019s",
976
+ "Where",
977
+ "Where's",
978
+ "Whereas",
979
+ "Where\u2019s",
980
+ "Who",
981
+ "Who's",
982
+ "Who\u2019s",
983
+ "Why",
984
+ "Why's",
985
+ "Why\u2019s",
986
+ "Wis",
987
+ "Wis.",
988
+ "Wisconsin",
989
+ "With",
990
+ "Wo",
991
+ "Would",
992
+ "Wright",
993
+ "X&X",
994
+ "X'x",
995
+ "X'xxxx",
996
+ "X++",
997
+ "X.",
998
+ "X.X",
999
+ "X.X.",
1000
+ "X.x",
1001
+ "X.x.",
1002
+ "XD",
1003
+ "XDD",
1004
+ "XX",
1005
+ "XX$",
1006
+ "XXX",
1007
+ "XXXX",
1008
+ "XXXxxxx",
1009
+ "X_X",
1010
+ "X_x",
1011
+ "Xx",
1012
+ "Xx'",
1013
+ "Xx'x",
1014
+ "Xx'xx",
1015
+ "Xx.",
1016
+ "Xx.X.",
1017
+ "XxXxxxx",
1018
+ "Xxx",
1019
+ "Xxx'x",
1020
+ "Xxx.",
1021
+ "XxxXXXX",
1022
+ "XxxXxx",
1023
+ "XxxXxxxx",
1024
+ "Xxxx",
1025
+ "Xxxx'",
1026
+ "Xxxx'x",
1027
+ "Xxxx.",
1028
+ "Xxxxx",
1029
+ "Xxxxx'",
1030
+ "Xxxxx'x",
1031
+ "Xxxxx.",
1032
+ "XxxxxXx",
1033
+ "XxxxxXxxx",
1034
+ "XxxxxXxxxx",
1035
+ "Xxxxx\u0092x",
1036
+ "Xxxxx\u2019",
1037
+ "Xxxxx\u2019x",
1038
+ "Xxxx\u2019",
1039
+ "Xxxx\u2019x",
1040
+ "Xxx\u2019x",
1041
+ "Xx\u2019",
1042
+ "Xx\u2019x",
1043
+ "Xx\u2019xx",
1044
+ "X\u2019x",
1045
+ "X\u2019xxxx",
1046
+ "Y",
1047
+ "Yet",
1048
+ "You",
1049
+ "Your",
1050
+ "Z",
1051
+ "Zalando",
1052
+ "Zara",
1053
+ "Zealand",
1054
+ "Zero",
1055
+ "[",
1056
+ "[-:",
1057
+ "[:",
1058
+ "[=",
1059
+ "\\",
1060
+ "\\\")",
1061
+ "\\n",
1062
+ "\\t",
1063
+ "\\x",
1064
+ "]",
1065
+ "]=",
1066
+ "^",
1067
+ "^_^",
1068
+ "^__^",
1069
+ "^___^",
1070
+ "_*)",
1071
+ "_-)",
1072
+ "_.)",
1073
+ "_<)",
1074
+ "_^)",
1075
+ "__-",
1076
+ "__^",
1077
+ "_\u00ac)",
1078
+ "_\u0ca0)",
1079
+ "a",
1080
+ "a.",
1081
+ "a.m",
1082
+ "a.m.",
1083
+ "aap",
1084
+ "able",
1085
+ "about",
1086
+ "above",
1087
+ "abuses",
1088
+ "access",
1089
+ "accordance",
1090
+ "account",
1091
+ "accountability",
1092
+ "accountable",
1093
+ "accounted",
1094
+ "accounting",
1095
+ "accounting[2",
1096
+ "accounts",
1097
+ "accurate",
1098
+ "accurately",
1099
+ "accusations",
1100
+ "accused",
1101
+ "ace",
1102
+ "ach",
1103
+ "achieve",
1104
+ "achieving",
1105
+ "ack",
1106
+ "acknowledging",
1107
+ "across",
1108
+ "act",
1109
+ "action",
1110
+ "actions",
1111
+ "acy",
1112
+ "adapting",
1113
+ "additional",
1114
+ "address",
1115
+ "addressed",
1116
+ "addresses",
1117
+ "addressing",
1118
+ "ade",
1119
+ "adequate",
1120
+ "adm",
1121
+ "adm.",
1122
+ "adopted",
1123
+ "advertisement",
1124
+ "advertising",
1125
+ "adviser",
1126
+ "ady",
1127
+ "afe",
1128
+ "affect",
1129
+ "affecting",
1130
+ "afford",
1131
+ "affordability",
1132
+ "affordable",
1133
+ "aft",
1134
+ "against",
1135
+ "age",
1136
+ "agency",
1137
+ "aggressive",
1138
+ "aging",
1139
+ "agreement",
1140
+ "ai",
1141
+ "aid",
1142
+ "aigcc",
1143
+ "ail",
1144
+ "aim",
1145
+ "ain",
1146
+ "air",
1147
+ "airline",
1148
+ "airlines",
1149
+ "ak",
1150
+ "ak.",
1151
+ "ake",
1152
+ "ala",
1153
+ "ala.",
1154
+ "alc",
1155
+ "ald",
1156
+ "align",
1157
+ "aligned",
1158
+ "alignment",
1159
+ "all",
1160
+ "allegations",
1161
+ "alleged",
1162
+ "alliance",
1163
+ "allianz",
1164
+ "allocate",
1165
+ "allow",
1166
+ "allowing",
1167
+ "already",
1168
+ "als",
1169
+ "also",
1170
+ "alternative",
1171
+ "always",
1172
+ "am",
1173
+ "amazon",
1174
+ "ambitions",
1175
+ "ame",
1176
+ "american",
1177
+ "among",
1178
+ "amount",
1179
+ "an",
1180
+ "an.",
1181
+ "ana",
1182
+ "analyses",
1183
+ "analysis",
1184
+ "analytica",
1185
+ "analyze",
1186
+ "and",
1187
+ "and/or",
1188
+ "ane",
1189
+ "anglo",
1190
+ "ank",
1191
+ "anne",
1192
+ "announced",
1193
+ "annual",
1194
+ "another",
1195
+ "ans",
1196
+ "ant",
1197
+ "anti",
1198
+ "anticipates",
1199
+ "antitrust",
1200
+ "any",
1201
+ "anz",
1202
+ "apartments",
1203
+ "apparel",
1204
+ "appear",
1205
+ "apple",
1206
+ "application",
1207
+ "apply",
1208
+ "appreciates",
1209
+ "approach",
1210
+ "appropriate",
1211
+ "appropriation",
1212
+ "approximately",
1213
+ "apr",
1214
+ "apr.",
1215
+ "aps",
1216
+ "ar.",
1217
+ "ara",
1218
+ "arctic",
1219
+ "ard",
1220
+ "are",
1221
+ "areas",
1222
+ "ariz",
1223
+ "ariz.",
1224
+ "ark",
1225
+ "ark.",
1226
+ "arn",
1227
+ "around",
1228
+ "ars",
1229
+ "art",
1230
+ "articulating",
1231
+ "ary",
1232
+ "as",
1233
+ "asb",
1234
+ "ase",
1235
+ "ash",
1236
+ "asia",
1237
+ "asian",
1238
+ "ask",
1239
+ "ass",
1240
+ "assess",
1241
+ "assesses",
1242
+ "assessment",
1243
+ "asset",
1244
+ "assets",
1245
+ "assists",
1246
+ "associated",
1247
+ "association",
1248
+ "assumptions",
1249
+ "assurance",
1250
+ "ast",
1251
+ "at",
1252
+ "ata",
1253
+ "ate",
1254
+ "aud",
1255
+ "audit",
1256
+ "audited",
1257
+ "auditing",
1258
+ "auditor",
1259
+ "auditors",
1260
+ "audits",
1261
+ "audits.1,2,3",
1262
+ "aug",
1263
+ "aug.",
1264
+ "australia",
1265
+ "australian",
1266
+ "automobile",
1267
+ "automotive",
1268
+ "ave",
1269
+ "ays",
1270
+ "b",
1271
+ "b.",
1272
+ "backing",
1273
+ "backlash",
1274
+ "bal",
1275
+ "bank",
1276
+ "banking",
1277
+ "bankruptcies",
1278
+ "bankruptcy",
1279
+ "banks",
1280
+ "barrel",
1281
+ "barrick",
1282
+ "base",
1283
+ "based",
1284
+ "basis",
1285
+ "bat",
1286
+ "be",
1287
+ "because",
1288
+ "beef",
1289
+ "been",
1290
+ "began",
1291
+ "behind",
1292
+ "being",
1293
+ "believe",
1294
+ "believes",
1295
+ "below",
1296
+ "benefit",
1297
+ "benefits",
1298
+ "ber",
1299
+ "bernie",
1300
+ "bes",
1301
+ "best",
1302
+ "better",
1303
+ "beverage",
1304
+ "bhp",
1305
+ "bight",
1306
+ "bil",
1307
+ "billion",
1308
+ "billiton",
1309
+ "bit",
1310
+ "black",
1311
+ "blackface",
1312
+ "blackrock",
1313
+ "blackstone",
1314
+ "ble",
1315
+ "blind",
1316
+ "bly",
1317
+ "board",
1318
+ "bodies",
1319
+ "body",
1320
+ "bon",
1321
+ "bor",
1322
+ "bout",
1323
+ "bp",
1324
+ "br.",
1325
+ "brand",
1326
+ "brazil",
1327
+ "breaches",
1328
+ "breaking",
1329
+ "broadly",
1330
+ "bros",
1331
+ "bros.",
1332
+ "budget",
1333
+ "build",
1334
+ "bumping",
1335
+ "burberry",
1336
+ "burning",
1337
+ "business",
1338
+ "businesses",
1339
+ "but",
1340
+ "by",
1341
+ "c",
1342
+ "c'm",
1343
+ "c++",
1344
+ "c.",
1345
+ "ca",
1346
+ "cal",
1347
+ "calculating",
1348
+ "calif",
1349
+ "calif.",
1350
+ "california",
1351
+ "call",
1352
+ "called",
1353
+ "calling",
1354
+ "calls",
1355
+ "calpers",
1356
+ "cambridge",
1357
+ "campaign",
1358
+ "can",
1359
+ "cap",
1360
+ "capabilities",
1361
+ "capex",
1362
+ "capital",
1363
+ "capture",
1364
+ "carbon",
1365
+ "carney",
1366
+ "cars",
1367
+ "cause",
1368
+ "cca",
1369
+ "cci",
1370
+ "ce>",
1371
+ "ced",
1372
+ "cement",
1373
+ "censorship",
1374
+ "centers",
1375
+ "central",
1376
+ "ceo",
1377
+ "cer",
1378
+ "ces",
1379
+ "ch.",
1380
+ "chain",
1381
+ "chains",
1382
+ "chair",
1383
+ "challenge",
1384
+ "change",
1385
+ "changes",
1386
+ "changing",
1387
+ "chase",
1388
+ "che",
1389
+ "cheating",
1390
+ "chemicals",
1391
+ "chevron",
1392
+ "chevron\u0092s",
1393
+ "chief",
1394
+ "child",
1395
+ "chinese",
1396
+ "chopsticks",
1397
+ "chs",
1398
+ "cip",
1399
+ "city",
1400
+ "civil",
1401
+ "cks",
1402
+ "clarified",
1403
+ "cle",
1404
+ "cleaner",
1405
+ "cleanest",
1406
+ "clear",
1407
+ "clearly",
1408
+ "climate",
1409
+ "cloaked",
1410
+ "clothing",
1411
+ "clutched",
1412
+ "cly",
1413
+ "co",
1414
+ "co.",
1415
+ "coa",
1416
+ "coal",
1417
+ "coca",
1418
+ "cocoa",
1419
+ "cola",
1420
+ "collaboration",
1421
+ "colo",
1422
+ "colo.",
1423
+ "com",
1424
+ "combat",
1425
+ "come",
1426
+ "comes",
1427
+ "commented",
1428
+ "commerce",
1429
+ "commercial",
1430
+ "commitment",
1431
+ "committed",
1432
+ "committing",
1433
+ "commodity",
1434
+ "communications",
1435
+ "companies",
1436
+ "company",
1437
+ "company\u0092s",
1438
+ "comparability",
1439
+ "comparable",
1440
+ "compared",
1441
+ "compatible",
1442
+ "compensation",
1443
+ "competition",
1444
+ "competitive",
1445
+ "competitively",
1446
+ "completeness",
1447
+ "complex",
1448
+ "compliance",
1449
+ "concept",
1450
+ "concern",
1451
+ "concerned",
1452
+ "concerns",
1453
+ "concluded",
1454
+ "conditions",
1455
+ "conducted",
1456
+ "confidential",
1457
+ "confirms",
1458
+ "conflict",
1459
+ "confronting",
1460
+ "conn",
1461
+ "conn.",
1462
+ "consensus",
1463
+ "consider",
1464
+ "consideration",
1465
+ "considerations",
1466
+ "considered",
1467
+ "considering",
1468
+ "consistency",
1469
+ "consistent",
1470
+ "consumer",
1471
+ "contact",
1472
+ "content",
1473
+ "contingencies",
1474
+ "continued",
1475
+ "continues",
1476
+ "contrast",
1477
+ "contribute",
1478
+ "contributing",
1479
+ "contribution",
1480
+ "contributions",
1481
+ "contributor",
1482
+ "controlled",
1483
+ "controversy",
1484
+ "convened",
1485
+ "converging",
1486
+ "conversation",
1487
+ "convert",
1488
+ "core",
1489
+ "corp",
1490
+ "corp.",
1491
+ "corporate",
1492
+ "corrupt",
1493
+ "corruption",
1494
+ "cos",
1495
+ "cost",
1496
+ "costs",
1497
+ "could",
1498
+ "countries",
1499
+ "coupled",
1500
+ "course",
1501
+ "court",
1502
+ "coverage",
1503
+ "covered",
1504
+ "covers",
1505
+ "coz",
1506
+ "creation",
1507
+ "crisis",
1508
+ "critical",
1509
+ "criticism",
1510
+ "crucial",
1511
+ "cry",
1512
+ "crystal",
1513
+ "ct.",
1514
+ "cts",
1515
+ "cultural",
1516
+ "curbing",
1517
+ "current",
1518
+ "currently",
1519
+ "cus",
1520
+ "customers",
1521
+ "cuts",
1522
+ "cuz",
1523
+ "cycle",
1524
+ "c\u2019m",
1525
+ "d",
1526
+ "d)",
1527
+ "d-",
1528
+ "d-)",
1529
+ "d-X",
1530
+ "d.",
1531
+ "d.c.",
1532
+ "d.d",
1533
+ "d.x",
1534
+ "dX",
1535
+ "dXXX",
1536
+ "d_d",
1537
+ "d_x",
1538
+ "dal",
1539
+ "damage",
1540
+ "dan",
1541
+ "dangerous",
1542
+ "dare",
1543
+ "data",
1544
+ "date",
1545
+ "day",
1546
+ "dd",
1547
+ "dd.d",
1548
+ "dd/",
1549
+ "ddd",
1550
+ "dddd",
1551
+ "dddd),d",
1552
+ "dddd.d",
1553
+ "ddx.x",
1554
+ "ddx.x.",
1555
+ "deaths",
1556
+ "dec",
1557
+ "dec.",
1558
+ "decade",
1559
+ "deceptive",
1560
+ "decisions",
1561
+ "declare",
1562
+ "declared",
1563
+ "ded",
1564
+ "deep",
1565
+ "deepwater",
1566
+ "defect",
1567
+ "defined",
1568
+ "deforestation",
1569
+ "degrees",
1570
+ "del",
1571
+ "del.",
1572
+ "deliver",
1573
+ "delivering",
1574
+ "delivery",
1575
+ "delta",
1576
+ "demand",
1577
+ "demands",
1578
+ "demonstrate",
1579
+ "denial",
1580
+ "department",
1581
+ "depend",
1582
+ "depletion",
1583
+ "deploy",
1584
+ "deploying",
1585
+ "der",
1586
+ "describes",
1587
+ "designed",
1588
+ "designs",
1589
+ "desperate",
1590
+ "despite",
1591
+ "destruction",
1592
+ "detailing",
1593
+ "detecting",
1594
+ "determined",
1595
+ "deutsche",
1596
+ "devastating",
1597
+ "develop",
1598
+ "developed",
1599
+ "developing",
1600
+ "dge",
1601
+ "dia",
1602
+ "did",
1603
+ "die",
1604
+ "diesel",
1605
+ "diets",
1606
+ "differences",
1607
+ "director",
1608
+ "directors",
1609
+ "disasters",
1610
+ "disclose",
1611
+ "disclosure",
1612
+ "disclosures",
1613
+ "discounted",
1614
+ "discrimination",
1615
+ "discusses",
1616
+ "discussions",
1617
+ "disinformation",
1618
+ "displacement",
1619
+ "dit",
1620
+ "diversity",
1621
+ "dly",
1622
+ "dm.",
1623
+ "do",
1624
+ "does",
1625
+ "doin",
1626
+ "doin'",
1627
+ "doing",
1628
+ "doin\u2019",
1629
+ "dolce",
1630
+ "dominance",
1631
+ "dominion",
1632
+ "don",
1633
+ "download",
1634
+ "dr",
1635
+ "dr.",
1636
+ "drawing",
1637
+ "drill",
1638
+ "drinks",
1639
+ "drive",
1640
+ "drivers",
1641
+ "dropping",
1642
+ "drought",
1643
+ "drug",
1644
+ "drugs",
1645
+ "due",
1646
+ "duke",
1647
+ "during",
1648
+ "dutch",
1649
+ "duty",
1650
+ "dx.x",
1651
+ "dx.x.",
1652
+ "dxxx",
1653
+ "d\u0092s",
1654
+ "e",
1655
+ "e's",
1656
+ "e.",
1657
+ "e.g",
1658
+ "e.g.",
1659
+ "ead",
1660
+ "eam",
1661
+ "ean",
1662
+ "ear",
1663
+ "eas",
1664
+ "eat",
1665
+ "eb.",
1666
+ "ebr",
1667
+ "ec.",
1668
+ "ech",
1669
+ "economic",
1670
+ "economies",
1671
+ "economy",
1672
+ "ect",
1673
+ "ecuadorian",
1674
+ "edf",
1675
+ "eds",
1676
+ "eed",
1677
+ "eef",
1678
+ "eek",
1679
+ "eel",
1680
+ "een",
1681
+ "eep",
1682
+ "ees",
1683
+ "eet",
1684
+ "effect",
1685
+ "effective",
1686
+ "effectively",
1687
+ "effects",
1688
+ "efficient",
1689
+ "efficiently",
1690
+ "effort",
1691
+ "efforts",
1692
+ "egy",
1693
+ "eir",
1694
+ "el.",
1695
+ "election",
1696
+ "elections",
1697
+ "electricity",
1698
+ "ell",
1699
+ "elp",
1700
+ "els",
1701
+ "ely",
1702
+ "em",
1703
+ "eme",
1704
+ "emerged",
1705
+ "emergency",
1706
+ "emerging",
1707
+ "emission",
1708
+ "emissions",
1709
+ "emit",
1710
+ "emitters",
1711
+ "emma",
1712
+ "employee",
1713
+ "employees",
1714
+ "employees\u0092",
1715
+ "en",
1716
+ "en.",
1717
+ "enable",
1718
+ "enabling",
1719
+ "enbridge",
1720
+ "encourage",
1721
+ "encouraging",
1722
+ "end",
1723
+ "endorsing",
1724
+ "energies",
1725
+ "energy",
1726
+ "enforcing",
1727
+ "engagement",
1728
+ "enn",
1729
+ "enough",
1730
+ "enron",
1731
+ "ensure",
1732
+ "ensures",
1733
+ "ent",
1734
+ "enu",
1735
+ "environment",
1736
+ "environmental",
1737
+ "envoy",
1738
+ "ep.",
1739
+ "epidemic",
1740
+ "ept",
1741
+ "equinor",
1742
+ "equity",
1743
+ "erd",
1744
+ "ere",
1745
+ "erm",
1746
+ "ern",
1747
+ "ero",
1748
+ "ers",
1749
+ "ert",
1750
+ "ery",
1751
+ "ese",
1752
+ "esg",
1753
+ "ess",
1754
+ "essential",
1755
+ "est",
1756
+ "established",
1757
+ "estimates",
1758
+ "estimates.9",
1759
+ "es\u0092",
1760
+ "ets",
1761
+ "ety",
1762
+ "europe",
1763
+ "european",
1764
+ "ev.",
1765
+ "evaluate",
1766
+ "evasion",
1767
+ "eve",
1768
+ "even",
1769
+ "events",
1770
+ "ever",
1771
+ "every",
1772
+ "evidence",
1773
+ "evident",
1774
+ "ews",
1775
+ "exaggerate",
1776
+ "examines",
1777
+ "example",
1778
+ "exclusivity",
1779
+ "executive",
1780
+ "existential",
1781
+ "existing",
1782
+ "expansion",
1783
+ "expenditure",
1784
+ "expenditures",
1785
+ "expertise",
1786
+ "explained",
1787
+ "explains",
1788
+ "exploitation",
1789
+ "exploited",
1790
+ "explore",
1791
+ "exposure",
1792
+ "ext",
1793
+ "extent",
1794
+ "external",
1795
+ "extreme",
1796
+ "exxonmobil",
1797
+ "e\u2019s",
1798
+ "f",
1799
+ "f.",
1800
+ "face",
1801
+ "facebook",
1802
+ "faced",
1803
+ "facilities",
1804
+ "factored",
1805
+ "factories",
1806
+ "factors",
1807
+ "fail",
1808
+ "failing",
1809
+ "failure",
1810
+ "fair",
1811
+ "faith",
1812
+ "fake",
1813
+ "fallen",
1814
+ "fare",
1815
+ "fargo",
1816
+ "fashion",
1817
+ "fast",
1818
+ "featuring",
1819
+ "feb",
1820
+ "feb.",
1821
+ "fer",
1822
+ "fern",
1823
+ "ffs",
1824
+ "fi",
1825
+ "fic",
1826
+ "fiduciary",
1827
+ "figure",
1828
+ "finance",
1829
+ "financial",
1830
+ "financials",
1831
+ "finds",
1832
+ "fines",
1833
+ "finite",
1834
+ "fiona",
1835
+ "firm",
1836
+ "firms",
1837
+ "fit",
1838
+ "five",
1839
+ "fla",
1840
+ "fla.",
1841
+ "flaring",
1842
+ "flexibility",
1843
+ "flight",
1844
+ "flying",
1845
+ "focus",
1846
+ "follow",
1847
+ "following",
1848
+ "food",
1849
+ "for",
1850
+ "forcibly",
1851
+ "forever",
1852
+ "formula",
1853
+ "fossil",
1854
+ "found",
1855
+ "framework",
1856
+ "fraud",
1857
+ "fraudulent",
1858
+ "from",
1859
+ "fuel",
1860
+ "fuels",
1861
+ "ful",
1862
+ "fulfillment",
1863
+ "full",
1864
+ "fully",
1865
+ "function",
1866
+ "fund",
1867
+ "funding",
1868
+ "funds",
1869
+ "further",
1870
+ "future",
1871
+ "g",
1872
+ "g.",
1873
+ "g[2",
1874
+ "ga",
1875
+ "ga.",
1876
+ "gaap",
1877
+ "gabbana",
1878
+ "gain",
1879
+ "gal",
1880
+ "gan",
1881
+ "gap",
1882
+ "gas",
1883
+ "gcc",
1884
+ "ged",
1885
+ "gen",
1886
+ "gen.",
1887
+ "gender",
1888
+ "general",
1889
+ "generating",
1890
+ "ger",
1891
+ "ges",
1892
+ "get",
1893
+ "gets",
1894
+ "ghg",
1895
+ "ght",
1896
+ "giant",
1897
+ "gic",
1898
+ "gig",
1899
+ "given",
1900
+ "gle",
1901
+ "glo",
1902
+ "global",
1903
+ "gly",
1904
+ "gns",
1905
+ "goal",
1906
+ "goals",
1907
+ "goin",
1908
+ "goin'",
1909
+ "going",
1910
+ "goin\u2019",
1911
+ "gold",
1912
+ "goldman",
1913
+ "gon",
1914
+ "gonna",
1915
+ "good",
1916
+ "goods",
1917
+ "google",
1918
+ "got",
1919
+ "gouging",
1920
+ "gov",
1921
+ "gov.",
1922
+ "governance",
1923
+ "graphic",
1924
+ "great",
1925
+ "green",
1926
+ "greenhouse",
1927
+ "groundbreaking",
1928
+ "group",
1929
+ "groups",
1930
+ "growing",
1931
+ "grueling",
1932
+ "gucci",
1933
+ "guidance",
1934
+ "g\u00fcnther",
1935
+ "h",
1936
+ "h&m",
1937
+ "h.",
1938
+ "habit",
1939
+ "had",
1940
+ "han",
1941
+ "handling",
1942
+ "harassment",
1943
+ "has",
1944
+ "hat",
1945
+ "hate",
1946
+ "have",
1947
+ "havin",
1948
+ "havin'",
1949
+ "having",
1950
+ "havin\u2019",
1951
+ "he",
1952
+ "he's",
1953
+ "head",
1954
+ "headquarters",
1955
+ "health",
1956
+ "heard",
1957
+ "heating",
1958
+ "hed",
1959
+ "help",
1960
+ "hem",
1961
+ "hen",
1962
+ "henceforward",
1963
+ "her",
1964
+ "herd",
1965
+ "here",
1966
+ "hes",
1967
+ "hey",
1968
+ "he\u2019s",
1969
+ "hg\u0094",
1970
+ "hic",
1971
+ "high",
1972
+ "higher",
1973
+ "hin",
1974
+ "hip",
1975
+ "his",
1976
+ "historic",
1977
+ "hod",
1978
+ "holding",
1979
+ "holistically",
1980
+ "honest",
1981
+ "hoodie",
1982
+ "hop",
1983
+ "horizon",
1984
+ "housing",
1985
+ "how",
1986
+ "how's",
1987
+ "how\u2019s",
1988
+ "hts",
1989
+ "huge",
1990
+ "human",
1991
+ "hypothesized",
1992
+ "i",
1993
+ "i.",
1994
+ "i.e",
1995
+ "i.e.",
1996
+ "iCo",
1997
+ "ia",
1998
+ "ia.",
1999
+ "ial",
2000
+ "ian",
2001
+ "iasb",
2002
+ "ica",
2003
+ "ice",
2004
+ "ich",
2005
+ "ick",
2006
+ "ico",
2007
+ "ics",
2008
+ "ict",
2009
+ "id",
2010
+ "id.",
2011
+ "ide",
2012
+ "identify",
2013
+ "ids",
2014
+ "iea",
2015
+ "ied",
2016
+ "ief",
2017
+ "ier",
2018
+ "ies",
2019
+ "iew",
2020
+ "if",
2021
+ "if.",
2022
+ "ife",
2023
+ "ift",
2024
+ "ify",
2025
+ "igcc",
2026
+ "igh",
2027
+ "ign",
2028
+ "ignition",
2029
+ "ignored",
2030
+ "ii",
2031
+ "iigcc",
2032
+ "ike",
2033
+ "ild",
2034
+ "ile",
2035
+ "ill",
2036
+ "ill.",
2037
+ "illegal",
2038
+ "ily",
2039
+ "ime",
2040
+ "impact",
2041
+ "impacted",
2042
+ "impacts",
2043
+ "impairment",
2044
+ "impairments",
2045
+ "imperatives",
2046
+ "implementing",
2047
+ "important",
2048
+ "impose",
2049
+ "improve",
2050
+ "improvement",
2051
+ "in",
2052
+ "in'",
2053
+ "inc",
2054
+ "inc.",
2055
+ "incentive",
2056
+ "include",
2057
+ "included",
2058
+ "including",
2059
+ "income",
2060
+ "inconsistent",
2061
+ "increase",
2062
+ "increased",
2063
+ "increasing",
2064
+ "increasingly",
2065
+ "ind",
2066
+ "ind.",
2067
+ "independent",
2068
+ "indicates",
2069
+ "indigenous",
2070
+ "individual",
2071
+ "industrial",
2072
+ "industrials",
2073
+ "industries",
2074
+ "industry",
2075
+ "ine",
2076
+ "infant",
2077
+ "information",
2078
+ "informing",
2079
+ "ing",
2080
+ "ingredients",
2081
+ "initiative",
2082
+ "injuries",
2083
+ "inn",
2084
+ "innovation",
2085
+ "ins",
2086
+ "insensitive",
2087
+ "insight",
2088
+ "insist",
2089
+ "inspirational",
2090
+ "inspiring",
2091
+ "institution",
2092
+ "institutional",
2093
+ "institutions",
2094
+ "instrument",
2095
+ "insufficient",
2096
+ "integrate",
2097
+ "integration",
2098
+ "intended",
2099
+ "intends",
2100
+ "intensity",
2101
+ "intensive",
2102
+ "interest",
2103
+ "interests",
2104
+ "interim",
2105
+ "internal",
2106
+ "international",
2107
+ "into",
2108
+ "invented",
2109
+ "invest",
2110
+ "invested",
2111
+ "investing",
2112
+ "investment",
2113
+ "investments",
2114
+ "investor",
2115
+ "investors",
2116
+ "invite",
2117
+ "involuntary",
2118
+ "involvement",
2119
+ "iny",
2120
+ "in\u2019",
2121
+ "ion",
2122
+ "ior",
2123
+ "ios",
2124
+ "ire",
2125
+ "irm",
2126
+ "irreparable",
2127
+ "irrespective",
2128
+ "is",
2129
+ "is.",
2130
+ "ise",
2131
+ "ish",
2132
+ "isk",
2133
+ "island",
2134
+ "ism",
2135
+ "iss",
2136
+ "issue",
2137
+ "issued",
2138
+ "issues",
2139
+ "ist",
2140
+ "it",
2141
+ "it's",
2142
+ "italian",
2143
+ "ite",
2144
+ "item",
2145
+ "ith",
2146
+ "its",
2147
+ "ity",
2148
+ "it\u2019s",
2149
+ "ive",
2150
+ "iz.",
2151
+ "j",
2152
+ "j.",
2153
+ "jan",
2154
+ "jan.",
2155
+ "job",
2156
+ "johnson",
2157
+ "jor",
2158
+ "journey",
2159
+ "jpmorgan",
2160
+ "jr",
2161
+ "jr.",
2162
+ "judgement",
2163
+ "judgment",
2164
+ "jul",
2165
+ "jul.",
2166
+ "jun",
2167
+ "jun.",
2168
+ "k",
2169
+ "k.",
2170
+ "kan",
2171
+ "kan.",
2172
+ "kans",
2173
+ "kans.",
2174
+ "ked",
2175
+ "ken",
2176
+ "ker",
2177
+ "kes",
2178
+ "ket",
2179
+ "key",
2180
+ "kla",
2181
+ "know",
2182
+ "ks8",
2183
+ "ky",
2184
+ "ky.",
2185
+ "l",
2186
+ "l.",
2187
+ "la",
2188
+ "la.",
2189
+ "labor",
2190
+ "lack",
2191
+ "laggards",
2192
+ "lagging",
2193
+ "lan",
2194
+ "land",
2195
+ "language",
2196
+ "lar",
2197
+ "large",
2198
+ "largest",
2199
+ "last",
2200
+ "laundering",
2201
+ "lawsuits",
2202
+ "lce",
2203
+ "lds",
2204
+ "lead",
2205
+ "leaders",
2206
+ "leadership",
2207
+ "leading",
2208
+ "learn",
2209
+ "learnings",
2210
+ "led",
2211
+ "legal",
2212
+ "lem",
2213
+ "len",
2214
+ "ler",
2215
+ "les",
2216
+ "less",
2217
+ "let",
2218
+ "let's",
2219
+ "letter",
2220
+ "let\u2019s",
2221
+ "level",
2222
+ "levels",
2223
+ "leverages",
2224
+ "leveraging",
2225
+ "lex",
2226
+ "lia",
2227
+ "liability",
2228
+ "lic",
2229
+ "lif",
2230
+ "life",
2231
+ "lifetime",
2232
+ "like",
2233
+ "likelihood",
2234
+ "limit",
2235
+ "limited",
2236
+ "limiting",
2237
+ "line",
2238
+ "linked",
2239
+ "lio",
2240
+ "listed",
2241
+ "little",
2242
+ "lives",
2243
+ "living",
2244
+ "ll",
2245
+ "ll.",
2246
+ "lls",
2247
+ "lly",
2248
+ "lo.",
2249
+ "lobbying",
2250
+ "local",
2251
+ "london",
2252
+ "long",
2253
+ "long-",
2254
+ "longer",
2255
+ "look",
2256
+ "looked",
2257
+ "lop",
2258
+ "loss",
2259
+ "lovin",
2260
+ "lovin'",
2261
+ "loving",
2262
+ "lovin\u2019",
2263
+ "low",
2264
+ "lower",
2265
+ "lowering",
2266
+ "loy",
2267
+ "lsa",
2268
+ "lso",
2269
+ "lta",
2270
+ "ltd",
2271
+ "ltd.",
2272
+ "lth",
2273
+ "lts",
2274
+ "lue",
2275
+ "luggage",
2276
+ "lyft",
2277
+ "lyrica",
2278
+ "m",
2279
+ "m.",
2280
+ "ma'am",
2281
+ "madam",
2282
+ "made",
2283
+ "madoff",
2284
+ "magnitude",
2285
+ "mail",
2286
+ "mainly",
2287
+ "maintain",
2288
+ "major",
2289
+ "majority",
2290
+ "majors",
2291
+ "make",
2292
+ "makes",
2293
+ "making",
2294
+ "man",
2295
+ "managed",
2296
+ "management",
2297
+ "managers",
2298
+ "managing",
2299
+ "manipulation",
2300
+ "manufacturer",
2301
+ "manufacturing",
2302
+ "many",
2303
+ "mar",
2304
+ "mar.",
2305
+ "market",
2306
+ "marketing",
2307
+ "markets",
2308
+ "mass",
2309
+ "mass.",
2310
+ "material",
2311
+ "materiality",
2312
+ "materials",
2313
+ "matters",
2314
+ "maximum",
2315
+ "may",
2316
+ "ma\u2019am",
2317
+ "mcdonald",
2318
+ "md",
2319
+ "md.",
2320
+ "mdb",
2321
+ "means",
2322
+ "measurable",
2323
+ "measured",
2324
+ "measures",
2325
+ "measuring",
2326
+ "media",
2327
+ "medication",
2328
+ "medications",
2329
+ "medium-",
2330
+ "meet",
2331
+ "member",
2332
+ "members",
2333
+ "membership",
2334
+ "mental",
2335
+ "menu",
2336
+ "mer",
2337
+ "merck",
2338
+ "mes",
2339
+ "messrs",
2340
+ "messrs.",
2341
+ "methane",
2342
+ "method",
2343
+ "methodology",
2344
+ "methods",
2345
+ "metric",
2346
+ "metrics",
2347
+ "mic",
2348
+ "mich",
2349
+ "mich.",
2350
+ "micromanage",
2351
+ "microsoft",
2352
+ "might",
2353
+ "mikula",
2354
+ "million",
2355
+ "mindful",
2356
+ "minerals",
2357
+ "minimising",
2358
+ "minimum",
2359
+ "mining",
2360
+ "minn",
2361
+ "minn.",
2362
+ "minnesota",
2363
+ "mirrors",
2364
+ "mishandling",
2365
+ "misinformation",
2366
+ "misleading",
2367
+ "mismanagement",
2368
+ "miss",
2369
+ "miss.",
2370
+ "mistreatment",
2371
+ "mit",
2372
+ "mitigating",
2373
+ "mma",
2374
+ "mo",
2375
+ "mo.",
2376
+ "mobile",
2377
+ "model",
2378
+ "models",
2379
+ "momentum",
2380
+ "money",
2381
+ "monopolistic",
2382
+ "monopoly",
2383
+ "mont",
2384
+ "mont.",
2385
+ "more",
2386
+ "moreover",
2387
+ "mortgage",
2388
+ "most",
2389
+ "mostly",
2390
+ "motors",
2391
+ "mpt",
2392
+ "mr",
2393
+ "mr.",
2394
+ "mrs",
2395
+ "mrs.",
2396
+ "ms",
2397
+ "ms.",
2398
+ "mt",
2399
+ "mt.",
2400
+ "mum",
2401
+ "must",
2402
+ "n",
2403
+ "n's",
2404
+ "n't",
2405
+ "n.",
2406
+ "n.4",
2407
+ "n.c.",
2408
+ "n.d.",
2409
+ "n.h.",
2410
+ "n.j.",
2411
+ "n.m.",
2412
+ "n.y.",
2413
+ "na",
2414
+ "nal",
2415
+ "natural",
2416
+ "nc.",
2417
+ "nce",
2418
+ "ncy",
2419
+ "nd.",
2420
+ "ndo",
2421
+ "nds",
2422
+ "neb",
2423
+ "neb.",
2424
+ "nebr",
2425
+ "nebr.",
2426
+ "ned",
2427
+ "need",
2428
+ "needed",
2429
+ "needs",
2430
+ "nep",
2431
+ "ner",
2432
+ "nes",
2433
+ "nestle",
2434
+ "net",
2435
+ "nev",
2436
+ "nev.",
2437
+ "new",
2438
+ "news",
2439
+ "next",
2440
+ "ney",
2441
+ "ng-",
2442
+ "nge",
2443
+ "ngs",
2444
+ "nia",
2445
+ "nie",
2446
+ "niger",
2447
+ "nike",
2448
+ "nks",
2449
+ "nly",
2450
+ "nn.",
2451
+ "nne",
2452
+ "no",
2453
+ "non",
2454
+ "nor",
2455
+ "northern",
2456
+ "not",
2457
+ "note",
2458
+ "nothin",
2459
+ "nothin'",
2460
+ "nothing",
2461
+ "nothin\u2019",
2462
+ "nov",
2463
+ "nov.",
2464
+ "now",
2465
+ "ns.",
2466
+ "nse",
2467
+ "nst",
2468
+ "nt",
2469
+ "nt.",
2470
+ "nti",
2471
+ "nto",
2472
+ "nts",
2473
+ "nuclear",
2474
+ "nuff",
2475
+ "numerous",
2476
+ "nuthin",
2477
+ "nuthin'",
2478
+ "nuthin\u2019",
2479
+ "nze",
2480
+ "nzi",
2481
+ "n\u0092s",
2482
+ "n\u2019s",
2483
+ "n\u2019t",
2484
+ "o",
2485
+ "o'clock",
2486
+ "o's",
2487
+ "o.",
2488
+ "o.0",
2489
+ "o.O",
2490
+ "o.o",
2491
+ "o_0",
2492
+ "o_O",
2493
+ "o_o",
2494
+ "oad",
2495
+ "oal",
2496
+ "obesity",
2497
+ "obligations",
2498
+ "oca",
2499
+ "ock",
2500
+ "oct",
2501
+ "oct.",
2502
+ "october",
2503
+ "ods",
2504
+ "ody",
2505
+ "oes",
2506
+ "of",
2507
+ "of.",
2508
+ "off",
2509
+ "offering",
2510
+ "officer",
2511
+ "offs",
2512
+ "offsets",
2513
+ "oft",
2514
+ "ogy",
2515
+ "oid",
2516
+ "oil",
2517
+ "oin",
2518
+ "oke",
2519
+ "okla",
2520
+ "okla.",
2521
+ "ol",
2522
+ "ol'",
2523
+ "ola",
2524
+ "old",
2525
+ "ole",
2526
+ "olo",
2527
+ "ols",
2528
+ "oly",
2529
+ "ol\u2019",
2530
+ "ome",
2531
+ "omitting",
2532
+ "omy",
2533
+ "on",
2534
+ "ona",
2535
+ "one",
2536
+ "ong",
2537
+ "ongoing",
2538
+ "online",
2539
+ "only",
2540
+ "onn",
2541
+ "ons",
2542
+ "ont",
2543
+ "ood",
2544
+ "ook",
2545
+ "ool",
2546
+ "oor",
2547
+ "ope",
2548
+ "open",
2549
+ "operate",
2550
+ "operating",
2551
+ "operations",
2552
+ "operator",
2553
+ "opinion",
2554
+ "opioid",
2555
+ "opioids",
2556
+ "opportunities",
2557
+ "opposition",
2558
+ "ops",
2559
+ "options",
2560
+ "or",
2561
+ "ord",
2562
+ "order",
2563
+ "ordered",
2564
+ "ore",
2565
+ "ore.",
2566
+ "org",
2567
+ "organizations",
2568
+ "ork",
2569
+ "orm",
2570
+ "orp",
2571
+ "ors",
2572
+ "ort",
2573
+ "ory",
2574
+ "os.",
2575
+ "ose",
2576
+ "oss",
2577
+ "ost",
2578
+ "ota",
2579
+ "ote",
2580
+ "other",
2581
+ "others",
2582
+ "oud",
2583
+ "ought",
2584
+ "oup",
2585
+ "our",
2586
+ "ous",
2587
+ "out",
2588
+ "outcomes",
2589
+ "outcry",
2590
+ "outlined",
2591
+ "outlook",
2592
+ "outrage",
2593
+ "ov.",
2594
+ "ove",
2595
+ "over",
2596
+ "overall",
2597
+ "overbooked",
2598
+ "overbooking",
2599
+ "overseas",
2600
+ "overseen",
2601
+ "oversight",
2602
+ "overstating",
2603
+ "own",
2604
+ "owner",
2605
+ "oxx",
2606
+ "oxy",
2607
+ "oxycontin",
2608
+ "o\u2019clock",
2609
+ "o\u2019s",
2610
+ "p",
2611
+ "p.",
2612
+ "p.m",
2613
+ "p.m.",
2614
+ "pa",
2615
+ "pa.",
2616
+ "packaging",
2617
+ "painkiller",
2618
+ "paris",
2619
+ "part",
2620
+ "particular",
2621
+ "particularly",
2622
+ "passed",
2623
+ "passenger",
2624
+ "passengers",
2625
+ "pathway",
2626
+ "pathways",
2627
+ "pay",
2628
+ "pci",
2629
+ "ped",
2630
+ "peers",
2631
+ "pen",
2632
+ "pension",
2633
+ "pensions",
2634
+ "people",
2635
+ "pepsico",
2636
+ "performance",
2637
+ "performing",
2638
+ "performs",
2639
+ "perhaps",
2640
+ "perspective",
2641
+ "pes",
2642
+ "pex",
2643
+ "pfeifer",
2644
+ "pfizer",
2645
+ "ph",
2646
+ "ph.d.",
2647
+ "pharma",
2648
+ "pharmaceutical",
2649
+ "physical",
2650
+ "picked",
2651
+ "pipeline",
2652
+ "place",
2653
+ "placed",
2654
+ "plan",
2655
+ "planet",
2656
+ "planning",
2657
+ "plans",
2658
+ "plant",
2659
+ "plastic",
2660
+ "platform",
2661
+ "ple",
2662
+ "pledges",
2663
+ "plsa",
2664
+ "ply",
2665
+ "pm",
2666
+ "policies",
2667
+ "policymakers",
2668
+ "polluters",
2669
+ "pollution",
2670
+ "ponzi",
2671
+ "pool",
2672
+ "poor",
2673
+ "portfolio",
2674
+ "position",
2675
+ "position.4",
2676
+ "positioned",
2677
+ "positions",
2678
+ "possible",
2679
+ "potential",
2680
+ "potentially",
2681
+ "powder",
2682
+ "power",
2683
+ "powerful",
2684
+ "powers",
2685
+ "pr.",
2686
+ "practice",
2687
+ "practices",
2688
+ "pre",
2689
+ "predicts",
2690
+ "preferred",
2691
+ "preparing",
2692
+ "prescription",
2693
+ "present",
2694
+ "presidential",
2695
+ "press",
2696
+ "pressing",
2697
+ "prevent",
2698
+ "previous",
2699
+ "pri",
2700
+ "price",
2701
+ "prices",
2702
+ "pricing",
2703
+ "primark",
2704
+ "principles",
2705
+ "prioritizes",
2706
+ "privacy",
2707
+ "problem",
2708
+ "process",
2709
+ "produce",
2710
+ "produced",
2711
+ "producers",
2712
+ "producing",
2713
+ "production",
2714
+ "productive",
2715
+ "products",
2716
+ "prof",
2717
+ "prof.",
2718
+ "profiled",
2719
+ "profit",
2720
+ "profits",
2721
+ "program",
2722
+ "progress",
2723
+ "project",
2724
+ "projections",
2725
+ "projects",
2726
+ "promoting",
2727
+ "prompt",
2728
+ "prone",
2729
+ "properly",
2730
+ "proponents",
2731
+ "proposal",
2732
+ "proprietary",
2733
+ "prosperous",
2734
+ "protect",
2735
+ "protecting",
2736
+ "protests",
2737
+ "proud",
2738
+ "provide",
2739
+ "provided",
2740
+ "providing",
2741
+ "proxy",
2742
+ "pt.",
2743
+ "public",
2744
+ "publication",
2745
+ "publicly",
2746
+ "publish",
2747
+ "purdue",
2748
+ "pursue",
2749
+ "puts",
2750
+ "q",
2751
+ "q.",
2752
+ "quality",
2753
+ "quantity",
2754
+ "r",
2755
+ "r.",
2756
+ "racism",
2757
+ "racist",
2758
+ "raft",
2759
+ "rainforest",
2760
+ "raised",
2761
+ "ral",
2762
+ "ram",
2763
+ "range",
2764
+ "rate",
2765
+ "rated",
2766
+ "rather",
2767
+ "rce",
2768
+ "rch",
2769
+ "rck",
2770
+ "rds",
2771
+ "re",
2772
+ "re.",
2773
+ "reach",
2774
+ "readily",
2775
+ "realistic",
2776
+ "reasonable",
2777
+ "reassessments",
2778
+ "rebecca",
2779
+ "received",
2780
+ "recent",
2781
+ "recently",
2782
+ "recognised",
2783
+ "recommend",
2784
+ "recommends",
2785
+ "record",
2786
+ "recyclable",
2787
+ "red",
2788
+ "reduce",
2789
+ "reducing",
2790
+ "reduction",
2791
+ "reductions",
2792
+ "ree",
2793
+ "reflect",
2794
+ "reflected",
2795
+ "regard",
2796
+ "regarding",
2797
+ "regards",
2798
+ "regularly",
2799
+ "regulations",
2800
+ "regulators",
2801
+ "regulatory",
2802
+ "reiterated",
2803
+ "rel",
2804
+ "related",
2805
+ "release",
2806
+ "released",
2807
+ "relevant",
2808
+ "reliable",
2809
+ "reliance",
2810
+ "rely",
2811
+ "remain",
2812
+ "remaining",
2813
+ "remediate",
2814
+ "remote",
2815
+ "removed",
2816
+ "renewable",
2817
+ "renewables",
2818
+ "rent",
2819
+ "rep",
2820
+ "rep.",
2821
+ "replace",
2822
+ "replicable",
2823
+ "report",
2824
+ "reported",
2825
+ "reporting",
2826
+ "reports",
2827
+ "representing",
2828
+ "request",
2829
+ "requests",
2830
+ "require",
2831
+ "requires",
2832
+ "requisite",
2833
+ "rer",
2834
+ "res",
2835
+ "residents",
2836
+ "resilience",
2837
+ "resilient",
2838
+ "resolution",
2839
+ "resolutions",
2840
+ "resolved",
2841
+ "resources",
2842
+ "response",
2843
+ "responsibility",
2844
+ "responsible",
2845
+ "results",
2846
+ "retail",
2847
+ "retailer",
2848
+ "retirement",
2849
+ "return",
2850
+ "returns",
2851
+ "rev",
2852
+ "rev.",
2853
+ "revenues",
2854
+ "review",
2855
+ "reviewed",
2856
+ "reynolds",
2857
+ "rge",
2858
+ "rgo",
2859
+ "rgy",
2860
+ "ric",
2861
+ "ride",
2862
+ "right",
2863
+ "rights",
2864
+ "rim",
2865
+ "rio",
2866
+ "ris",
2867
+ "risk",
2868
+ "risks",
2869
+ "risks.10",
2870
+ "risks8",
2871
+ "rit",
2872
+ "rivals",
2873
+ "river",
2874
+ "rivers",
2875
+ "riz",
2876
+ "rk.",
2877
+ "rld",
2878
+ "rly",
2879
+ "rma",
2880
+ "rms",
2881
+ "rns",
2882
+ "robust",
2883
+ "rof",
2884
+ "role",
2885
+ "rom",
2886
+ "ron",
2887
+ "ros",
2888
+ "rp.",
2889
+ "rry",
2890
+ "rs.",
2891
+ "rse",
2892
+ "rsy",
2893
+ "rth",
2894
+ "rts",
2895
+ "rue",
2896
+ "rug",
2897
+ "rules",
2898
+ "rve",
2899
+ "s",
2900
+ "s's",
2901
+ "s.",
2902
+ "s.7",
2903
+ "s.9",
2904
+ "s.c.",
2905
+ "sachs",
2906
+ "safe",
2907
+ "safety",
2908
+ "said",
2909
+ "sal",
2910
+ "same",
2911
+ "saving",
2912
+ "savings",
2913
+ "saw",
2914
+ "scandal",
2915
+ "scenario",
2916
+ "scenarios",
2917
+ "scheme",
2918
+ "scientific",
2919
+ "scope",
2920
+ "scopes",
2921
+ "scorecard",
2922
+ "scrutiny",
2923
+ "se",
2924
+ "search",
2925
+ "sector",
2926
+ "sectors",
2927
+ "security",
2928
+ "sed",
2929
+ "see",
2930
+ "seek",
2931
+ "seeking",
2932
+ "sel",
2933
+ "sell",
2934
+ "selling",
2935
+ "sen",
2936
+ "sen.",
2937
+ "sensitive",
2938
+ "sep",
2939
+ "sep.",
2940
+ "separation",
2941
+ "sept",
2942
+ "sept.",
2943
+ "ser",
2944
+ "series",
2945
+ "serve",
2946
+ "services",
2947
+ "ses",
2948
+ "set",
2949
+ "setters",
2950
+ "setting",
2951
+ "severely",
2952
+ "sexual",
2953
+ "sh.",
2954
+ "sha",
2955
+ "shall",
2956
+ "shareholders",
2957
+ "shares",
2958
+ "sharing",
2959
+ "she",
2960
+ "she's",
2961
+ "shell",
2962
+ "she\u2019s",
2963
+ "shift",
2964
+ "shipping",
2965
+ "short",
2966
+ "should",
2967
+ "show",
2968
+ "showed",
2969
+ "showing",
2970
+ "shown",
2971
+ "sia",
2972
+ "sign",
2973
+ "signed",
2974
+ "significant",
2975
+ "sil",
2976
+ "similar",
2977
+ "simpson",
2978
+ "since",
2979
+ "sis",
2980
+ "sit",
2981
+ "sks",
2982
+ "sla",
2983
+ "small",
2984
+ "smoke",
2985
+ "so",
2986
+ "social",
2987
+ "society",
2988
+ "software",
2989
+ "solutions",
2990
+ "some",
2991
+ "somethin",
2992
+ "somethin'",
2993
+ "something",
2994
+ "somethin\u2019",
2995
+ "son",
2996
+ "sound",
2997
+ "source",
2998
+ "southern",
2999
+ "space",
3000
+ "special",
3001
+ "speculative",
3002
+ "speech",
3003
+ "spend",
3004
+ "spent",
3005
+ "spill",
3006
+ "spills",
3007
+ "spirit",
3008
+ "spread",
3009
+ "spreading",
3010
+ "srs",
3011
+ "ss.",
3012
+ "st",
3013
+ "st.",
3014
+ "stabilising",
3015
+ "stakeholders",
3016
+ "standard",
3017
+ "standards",
3018
+ "state",
3019
+ "statement",
3020
+ "statements",
3021
+ "statements.7",
3022
+ "ste",
3023
+ "steel",
3024
+ "steering",
3025
+ "step",
3026
+ "stephanie",
3027
+ "stewardship",
3028
+ "still",
3029
+ "stock",
3030
+ "stockholders",
3031
+ "storage",
3032
+ "stranded",
3033
+ "strategic",
3034
+ "strategies",
3035
+ "strategy",
3036
+ "stress",
3037
+ "strong",
3038
+ "struggling",
3039
+ "sts",
3040
+ "study",
3041
+ "subprime",
3042
+ "subsequent",
3043
+ "subset",
3044
+ "substantially",
3045
+ "substitutes",
3046
+ "successfully",
3047
+ "such",
3048
+ "sue",
3049
+ "sufficient",
3050
+ "sugary",
3051
+ "sunedison",
3052
+ "superior",
3053
+ "supplied",
3054
+ "suppliers",
3055
+ "supply",
3056
+ "support",
3057
+ "supported",
3058
+ "supporting",
3059
+ "supports",
3060
+ "sus",
3061
+ "sustain",
3062
+ "sustainability",
3063
+ "sustainable",
3064
+ "sweater",
3065
+ "sweatshop",
3066
+ "sweatshops",
3067
+ "switches",
3068
+ "s\u2019s",
3069
+ "t",
3070
+ "t's",
3071
+ "t.",
3072
+ "ta",
3073
+ "table",
3074
+ "tactics",
3075
+ "take",
3076
+ "taken",
3077
+ "takes",
3078
+ "taking",
3079
+ "tal",
3080
+ "talc",
3081
+ "tanzania",
3082
+ "target",
3083
+ "targeted",
3084
+ "targets",
3085
+ "tax",
3086
+ "tch",
3087
+ "tcy",
3088
+ "td.",
3089
+ "team",
3090
+ "tech",
3091
+ "technologies",
3092
+ "technology",
3093
+ "ted",
3094
+ "tem",
3095
+ "temperature",
3096
+ "temperatures",
3097
+ "tenn",
3098
+ "tenn.",
3099
+ "tep",
3100
+ "ter",
3101
+ "term",
3102
+ "terms",
3103
+ "tes",
3104
+ "tesla",
3105
+ "test",
3106
+ "tested",
3107
+ "textile",
3108
+ "tfern@IIGCC.org",
3109
+ "tfern@iigcc.org",
3110
+ "thallinger",
3111
+ "than",
3112
+ "that",
3113
+ "that's",
3114
+ "that\u2019s",
3115
+ "the",
3116
+ "their",
3117
+ "them",
3118
+ "theme",
3119
+ "then",
3120
+ "there",
3121
+ "there's",
3122
+ "thereafter",
3123
+ "therefore",
3124
+ "there\u2019s",
3125
+ "these",
3126
+ "they",
3127
+ "this",
3128
+ "this's",
3129
+ "this\u2019s",
3130
+ "those",
3131
+ "three",
3132
+ "thrive",
3133
+ "through",
3134
+ "ths",
3135
+ "thy",
3136
+ "tic",
3137
+ "tier",
3138
+ "tiktok",
3139
+ "time",
3140
+ "timing",
3141
+ "tin",
3142
+ "tinto",
3143
+ "tle",
3144
+ "tly",
3145
+ "to",
3146
+ "today",
3147
+ "tok",
3148
+ "tom",
3149
+ "ton",
3150
+ "too",
3151
+ "tool",
3152
+ "tools",
3153
+ "top",
3154
+ "tor",
3155
+ "total",
3156
+ "totalenergies",
3157
+ "tracker",
3158
+ "transition",
3159
+ "transparency",
3160
+ "transparent",
3161
+ "transparently",
3162
+ "transportation",
3163
+ "treatment",
3164
+ "trillion",
3165
+ "true",
3166
+ "try",
3167
+ "tum",
3168
+ "twitter",
3169
+ "typically",
3170
+ "t\u2019s",
3171
+ "u",
3172
+ "u.",
3173
+ "u.s.",
3174
+ "ual",
3175
+ "uber",
3176
+ "uce",
3177
+ "uch",
3178
+ "ude",
3179
+ "udy",
3180
+ "ued",
3181
+ "uel",
3182
+ "ues",
3183
+ "uff",
3184
+ "ug.",
3185
+ "uge",
3186
+ "ugh",
3187
+ "ugs",
3188
+ "uk",
3189
+ "uke",
3190
+ "ul.",
3191
+ "ula",
3192
+ "uld",
3193
+ "ull",
3194
+ "um-",
3195
+ "un",
3196
+ "un.",
3197
+ "unambiguous",
3198
+ "und",
3199
+ "under",
3200
+ "underlying",
3201
+ "understand",
3202
+ "understanding",
3203
+ "understated",
3204
+ "unep",
3205
+ "unethical",
3206
+ "unhealthy",
3207
+ "union",
3208
+ "united",
3209
+ "uniting",
3210
+ "units",
3211
+ "unlike",
3212
+ "unprecedented",
3213
+ "unrealistic",
3214
+ "unsold",
3215
+ "unsustainable",
3216
+ "unt",
3217
+ "up",
3218
+ "updated",
3219
+ "updates",
3220
+ "ups",
3221
+ "upstream",
3222
+ "upt",
3223
+ "uptake",
3224
+ "ure",
3225
+ "urn",
3226
+ "urt",
3227
+ "us",
3228
+ "us$",
3229
+ "use",
3230
+ "used",
3231
+ "user",
3232
+ "using",
3233
+ "ust",
3234
+ "usual",
3235
+ "ute",
3236
+ "utilise",
3237
+ "utilities",
3238
+ "utilization",
3239
+ "uts",
3240
+ "uty",
3241
+ "v",
3242
+ "v.",
3243
+ "v.s",
3244
+ "v.s.",
3245
+ "v.v",
3246
+ "v_v",
3247
+ "va",
3248
+ "va.",
3249
+ "valuations",
3250
+ "value",
3251
+ "values",
3252
+ "vanguard",
3253
+ "variable",
3254
+ "vary",
3255
+ "vast",
3256
+ "ve",
3257
+ "ved",
3258
+ "vel",
3259
+ "ven",
3260
+ "ver",
3261
+ "version",
3262
+ "ves",
3263
+ "viability",
3264
+ "view",
3265
+ "vil",
3266
+ "vin",
3267
+ "violation",
3268
+ "violations",
3269
+ "vioxx",
3270
+ "virginia",
3271
+ "virtually",
3272
+ "visible",
3273
+ "visit",
3274
+ "vital",
3275
+ "vitally",
3276
+ "voice",
3277
+ "volkswagen",
3278
+ "vote",
3279
+ "voted",
3280
+ "voy",
3281
+ "vs",
3282
+ "vs.",
3283
+ "w",
3284
+ "w's",
3285
+ "w.",
3286
+ "w/o",
3287
+ "wage",
3288
+ "wages",
3289
+ "walmart",
3290
+ "wanting",
3291
+ "warehouse",
3292
+ "warehouses",
3293
+ "warming",
3294
+ "was",
3295
+ "wash",
3296
+ "wash.",
3297
+ "waste",
3298
+ "water",
3299
+ "way",
3300
+ "we",
3301
+ "wearing",
3302
+ "weather",
3303
+ "wed",
3304
+ "well",
3305
+ "wells",
3306
+ "wer",
3307
+ "were",
3308
+ "what",
3309
+ "what's",
3310
+ "what\u2019s",
3311
+ "when",
3312
+ "when's",
3313
+ "when\u2019s",
3314
+ "where",
3315
+ "where's",
3316
+ "whereas",
3317
+ "where\u2019s",
3318
+ "whether",
3319
+ "which",
3320
+ "while",
3321
+ "who",
3322
+ "who's",
3323
+ "who\u2019s",
3324
+ "why",
3325
+ "why's",
3326
+ "why\u2019s",
3327
+ "widespread",
3328
+ "will",
3329
+ "wis",
3330
+ "wis.",
3331
+ "with",
3332
+ "without",
3333
+ "wo",
3334
+ "words",
3335
+ "work",
3336
+ "worker",
3337
+ "workers",
3338
+ "working",
3339
+ "world",
3340
+ "worldwide",
3341
+ "world\u0092s",
3342
+ "worth",
3343
+ "would",
3344
+ "wright",
3345
+ "write",
3346
+ "www.chevron.com",
3347
+ "www.iigcc.org",
3348
+ "w\u2019s",
3349
+ "x",
3350
+ "x&x",
3351
+ "x'",
3352
+ "x'x",
3353
+ "x'xxxx",
3354
+ "x.",
3355
+ "x.X",
3356
+ "x.d",
3357
+ "x.x",
3358
+ "x.x.",
3359
+ "x/x",
3360
+ "xD",
3361
+ "xDD",
3362
+ "xX",
3363
+ "xXX",
3364
+ "x_X",
3365
+ "x_d",
3366
+ "x_x",
3367
+ "xd",
3368
+ "xdd",
3369
+ "xx",
3370
+ "xx'",
3371
+ "xx'x",
3372
+ "xx'xx",
3373
+ "xx.",
3374
+ "xxx",
3375
+ "xxx'x",
3376
+ "xxx.xxxx.xxx",
3377
+ "xxx/xx",
3378
+ "xxxx",
3379
+ "xxxx'",
3380
+ "xxxx'x",
3381
+ "xxxx-",
3382
+ "xxxx.d",
3383
+ "xxxx.d,d,d",
3384
+ "xxxx.dd",
3385
+ "xxxx@XXXX.xxx",
3386
+ "xxxx@xxxx.xxx",
3387
+ "xxxx[d",
3388
+ "xxxxd",
3389
+ "xxxx\u0092",
3390
+ "xxxx\u0092x",
3391
+ "xxxx\u2019",
3392
+ "xxxx\u2019x",
3393
+ "xxx\u2019x",
3394
+ "xx\u2019",
3395
+ "xx\u2019x",
3396
+ "xx\u2019xx",
3397
+ "x\u2019",
3398
+ "x\u2019x",
3399
+ "x\u2019xxxx",
3400
+ "x\ufe35x",
3401
+ "y",
3402
+ "y'",
3403
+ "y's",
3404
+ "y.",
3405
+ "year",
3406
+ "years",
3407
+ "yee",
3408
+ "yet",
3409
+ "yft",
3410
+ "you",
3411
+ "your",
3412
+ "yze",
3413
+ "y\u0092s",
3414
+ "y\u2019",
3415
+ "y\u2019s",
3416
+ "z",
3417
+ "z.",
3418
+ "zalando",
3419
+ "zara",
3420
+ "zealand",
3421
+ "zed",
3422
+ "zer",
3423
+ "zero",
3424
+ "zes",
3425
+ "zil",
3426
+ "zon",
3427
+ "|",
3428
+ "}",
3429
+ "\u0093",
3430
+ "\u0093GHG\u0094",
3431
+ "\u0093XXX\u0094",
3432
+ "\u0093ghg\u0094",
3433
+ "\u0093xxx\u0094",
3434
+ "\u00a0",
3435
+ "\u00ac",
3436
+ "\u00ac_\u00ac",
3437
+ "\u00af",
3438
+ "\u00af\\(x)/\u00af",
3439
+ "\u00af\\(\u30c4)/\u00af",
3440
+ "\u00b0",
3441
+ "\u00b0C.",
3442
+ "\u00b0F.",
3443
+ "\u00b0K.",
3444
+ "\u00b0X.",
3445
+ "\u00b0c.",
3446
+ "\u00b0f.",
3447
+ "\u00b0k.",
3448
+ "\u00b0x.",
3449
+ "\u00e4",
3450
+ "\u00e4.",
3451
+ "\u00f6",
3452
+ "\u00f6.",
3453
+ "\u00fc",
3454
+ "\u00fc.",
3455
+ "\u0ca0",
3456
+ "\u0ca0_\u0ca0",
3457
+ "\u0ca0\ufe35\u0ca0",
3458
+ "\u2013",
3459
+ "\u2014",
3460
+ "\u2018",
3461
+ "\u2018S",
3462
+ "\u2018X",
3463
+ "\u2018s",
3464
+ "\u2018x",
3465
+ "\u2019",
3466
+ "\u2019-(",
3467
+ "\u2019-)",
3468
+ "\u2019Cause",
3469
+ "\u2019Cos",
3470
+ "\u2019Coz",
3471
+ "\u2019Cuz",
3472
+ "\u2019S",
3473
+ "\u2019X",
3474
+ "\u2019Xxx",
3475
+ "\u2019Xxxxx",
3476
+ "\u2019am",
3477
+ "\u2019bout",
3478
+ "\u2019cause",
3479
+ "\u2019cos",
3480
+ "\u2019coz",
3481
+ "\u2019cuz",
3482
+ "\u2019d",
3483
+ "\u2019em",
3484
+ "\u2019ll",
3485
+ "\u2019m",
3486
+ "\u2019nuff",
3487
+ "\u2019re",
3488
+ "\u2019s",
3489
+ "\u2019ve",
3490
+ "\u2019x",
3491
+ "\u2019xx",
3492
+ "\u2019xxx",
3493
+ "\u2019xxxx",
3494
+ "\u2019y",
3495
+ "\u2019\u2019",
3496
+ "\u201c",
3497
+ "\u201d",
3498
+ "\u20ac",
3499
+ "\u2501",
3500
+ "\u253b",
3501
+ "\u253b\u2501\u253b",
3502
+ "\u256f",
3503
+ "\u25a1",
3504
+ "\ufe35",
3505
+ "\uff09"
3506
+ ]
vocab/vectors ADDED
Binary file (128 Bytes). View file
 
vocab/vectors.cfg ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+ "mode":"default"
3
+ }