pki commited on
Commit
a03103c
·
verified ·
1 Parent(s): 24796d9

Upload folder using huggingface_hub

Browse files
Files changed (15) hide show
  1. .gitattributes +2 -0
  2. README.md +169 -0
  3. config.cfg +146 -0
  4. meta.json +118 -0
  5. ner/cfg +13 -0
  6. ner/model +3 -0
  7. ner/moves +1 -0
  8. tok2vec/cfg +3 -0
  9. tok2vec/model +3 -0
  10. tokenizer +3 -0
  11. vocab/key2row +1 -0
  12. vocab/lookups.bin +3 -0
  13. vocab/strings.json +2585 -0
  14. vocab/vectors +0 -0
  15. vocab/vectors.cfg +3 -0
.gitattributes CHANGED
@@ -33,3 +33,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ ner/model filter=lfs diff=lfs merge=lfs -text
37
+ tok2vec/model filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,169 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Cybersecurity NER Model v8
2
+
3
+ Named Entity Recognition model for cybersecurity domain text, trained on spaCy v3.8 with custom training data.
4
+
5
+ ## Model Description
6
+
7
+ Fine-tuned NER model for extracting 13 cybersecurity entity types from technical documentation, CVs, job descriptions, threat reports, and compliance documents.
8
+
9
+ ## Performance
10
+
11
+ **Test Results (v8):**
12
+ - Pass Rate: 94% (62/66 tests)
13
+ - Dev F1 Score: 98.58%
14
+ - Precision: 98.71%
15
+ - Recall: 98.46%
16
+ - Training Steps: 11,500 (early stopping)
17
+ - Training Data: 2,223 examples
18
+
19
+ **Entity Type Performance:**
20
+ | Entity Type | Test Pass Rate | Dev Set F1 |
21
+ |-------------|----------------|------------|
22
+ | CVE | 100% (3/3) | 100.00% |
23
+ | AUDIT_TERM | 75% (3/4) | 100.00% |
24
+ | SECURITY_TOOL | 100% (4/4) | 100.00% |
25
+ | CERTIFICATION | 100% (4/4) | 98.73% |
26
+ | SECURITY_ROLE | 100% (4/4) | 98.11% |
27
+ | FRAMEWORK | 100% (4/4) | 93.88% |
28
+ | TECHNICAL_SKILL | 100% (4/4) | 100.00% |
29
+ | ACRONYM | 100% (4/4) | 100.00% |
30
+ | SECURITY_DOMAIN | 100% (4/4) | 100.00% |
31
+ | ATTACK_TECHNIQUE | 75% (3/4) | 98.70% |
32
+ | THREAT_TYPE | 75% (3/4) | 95.24% |
33
+ | REGULATION | 75% (3/4) | 96.55% |
34
+ | CONTROL_ID | 100% (4/4) | - |
35
+
36
+ ## Entity Types
37
+
38
+ 1. **CVE** - CVE identifiers (e.g., CVE-2024-1234)
39
+ 2. **CERTIFICATION** - Security certifications (CISSP, OSCP, CEH, CISM, Security+)
40
+ 3. **FRAMEWORK** - Security frameworks (NIST CSF, ISO 27001, MITRE ATT&CK, CIS Controls)
41
+ 4. **ATTACK_TECHNIQUE** - Attack methods (SQL injection, XSS, CSRF, buffer overflow)
42
+ 5. **TECHNICAL_SKILL** - Technical skills (Incident Response, Forensics, Penetration Testing)
43
+ 6. **AUDIT_TERM** - Audit/compliance terms (Risk assessment, Compliance audit, Security review)
44
+ 7. **SECURITY_ROLE** - Job roles (CISO, SOC Analyst, Security Engineer, Pentester)
45
+ 8. **THREAT_TYPE** - Threat types (APT, ransomware, phishing, DDoS, malware)
46
+ 9. **ACRONYM** - Security acronyms (SIEM, EDR, SOAR, IDS/IPS, WAF, DLP)
47
+ 10. **SECURITY_DOMAIN** - Security domains (Cloud Security, Network Security, Application Security)
48
+ 11. **REGULATION** - Regulations (GDPR, HIPAA, PCI-DSS, SOX, CCPA)
49
+ 12. **SECURITY_TOOL** - Security tools (Splunk, Metasploit, Burp Suite, Nmap, Wireshark)
50
+ 13. **CONTROL_ID** - Control identifiers (ISO 27001 A.5.1, NIST CSF PR.AC-1, CIS Control 1.1)
51
+
52
+ ## Usage
53
+
54
+ ```python
55
+ import spacy
56
+
57
+ # Load model
58
+ nlp = spacy.load("path/to/model")
59
+
60
+ # Extract entities
61
+ text = "CISSP certified professional with experience in Splunk and Metasploit"
62
+ doc = nlp(text)
63
+
64
+ for ent in doc.ents:
65
+ print(f"{ent.text} -> {ent.label_}")
66
+ ```
67
+
68
+ **Output:**
69
+ ```
70
+ CISSP -> CERTIFICATION
71
+ Splunk -> SECURITY_TOOL
72
+ Metasploit -> SECURITY_TOOL
73
+ ```
74
+
75
+ ## Training Data
76
+
77
+ **Sources:**
78
+ - v7 merged data: 1,448 examples
79
+ - v8 generated: 1,347 examples with multi-entity patterns, case variants
80
+ - Manual curated: 100 examples
81
+ - Final dataset: 2,223 unique examples (after validation and deduplication)
82
+
83
+ **v8 Improvements:**
84
+ - Multi-entity "X and Y" patterns (50 examples per entity type)
85
+ - Title case variants (CISSP, cissp, Cissp)
86
+ - Comma-separated list patterns
87
+ - AUDIT_TERM edge cases (Compliance audit)
88
+
89
+ **Entity Distribution:**
90
+ - AUDIT_TERM: 326 (12.4%)
91
+ - CERTIFICATION: 295 (11.2%)
92
+ - SECURITY_TOOL: 293 (11.1%)
93
+ - ATTACK_TECHNIQUE: 282 (10.7%)
94
+ - THREAT_TYPE: 263 (10.0%)
95
+ - TECHNICAL_SKILL: 228 (8.6%)
96
+ - REGULATION: 222 (8.4%)
97
+ - CVE: 182 (6.9%)
98
+ - FRAMEWORK: 165 (6.3%)
99
+ - SECURITY_ROLE: 153 (5.8%)
100
+ - ACRONYM: 142 (5.4%)
101
+ - SECURITY_DOMAIN: 85 (3.2%)
102
+
103
+ ## Training Configuration
104
+
105
+ - **Framework:** spaCy 3.8
106
+ - **Architecture:** tok2vec + TransitionBasedParser
107
+ - **GPU:** NVIDIA RTX 4090
108
+ - **Training steps:** 11,500 (early stopping)
109
+ - **Patience:** 5,000 steps
110
+ - **Learning rate:** 3e-05
111
+ - **Dropout:** 0.25
112
+ - **Batch size:** 1,000
113
+ - **Train/dev split:** 85/15
114
+
115
+ ## Version History
116
+
117
+ **v8 (Current):**
118
+ - 94% pass rate (62/66)
119
+ - Multi-entity extraction improved
120
+ - Title case support added
121
+ - AUDIT_TERM edge cases fixed
122
+
123
+ **v7:**
124
+ - 86% pass rate (57/66)
125
+ - CVE detection restored
126
+ - SECURITY_ROLE improved to 100%
127
+ - IDS/IPS and DDoS fixed
128
+
129
+ **v6:**
130
+ - 74% pass rate (49/66)
131
+ - CVE regression (missing)
132
+ - AUDIT_TERM and SECURITY_ROLE issues
133
+
134
+ ## Known Limitations
135
+
136
+ v8 has 4 remaining test failures:
137
+ 1. Multi-entity extraction in specific contexts ("APT group using ransomware")
138
+ 2. Span boundary issues with conjunctions ("XSS and CSRF mitigated")
139
+ 3. Specific "X and Y" patterns ("HIPAA and PCI-DSS standards")
140
+ 4. "Gap analysis" edge case
141
+
142
+ ## Use Cases
143
+
144
+ - CV/resume skill extraction
145
+ - Job description analysis
146
+ - Threat intelligence reports
147
+ - Compliance documentation
148
+ - Security audit reports
149
+ - Technical documentation
150
+ - Security training materials
151
+
152
+ ## License
153
+
154
+ MIT
155
+
156
+ ## Citation
157
+
158
+ ```bibtex
159
+ @misc{cybersecurity-ner-v8,
160
+ title={Cybersecurity NER Model v8},
161
+ author={PKI Research},
162
+ year={2026},
163
+ url={https://huggingface.co/your-username/cybersecurity-ner-v8}
164
+ }
165
+ ```
166
+
167
+ ## Contact
168
+
169
+ For issues or questions, please open an issue on GitHub.
config.cfg ADDED
@@ -0,0 +1,146 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [paths]
2
+ train = "/home/pki/code/llm-training-repo/ner-cybersecurity/data/train_v8.spacy"
3
+ dev = "/home/pki/code/llm-training-repo/ner-cybersecurity/data/dev_v8.spacy"
4
+ vectors = null
5
+ init_tok2vec = null
6
+
7
+ [system]
8
+ gpu_allocator = "pytorch"
9
+ seed = 42
10
+ use_pytorch_for_gpu_memory = true
11
+
12
+ [nlp]
13
+ lang = "en"
14
+ pipeline = ["tok2vec","ner"]
15
+ batch_size = 1000
16
+ disabled = []
17
+ before_creation = null
18
+ after_creation = null
19
+ after_pipeline_creation = null
20
+ tokenizer = {"@tokenizers":"spacy.Tokenizer.v1"}
21
+ vectors = {"@vectors":"spacy.Vectors.v1"}
22
+
23
+ [components]
24
+
25
+ [components.ner]
26
+ factory = "ner"
27
+ incorrect_spans_key = null
28
+ moves = null
29
+ scorer = {"@scorers":"spacy.ner_scorer.v1"}
30
+ update_with_oracle_cut_size = 100
31
+
32
+ [components.ner.model]
33
+ @architectures = "spacy.TransitionBasedParser.v2"
34
+ state_type = "ner"
35
+ extra_state_tokens = false
36
+ hidden_width = 64
37
+ maxout_pieces = 2
38
+ use_upper = true
39
+ nO = null
40
+
41
+ [components.ner.model.tok2vec]
42
+ @architectures = "spacy.Tok2VecListener.v1"
43
+ width = ${components.tok2vec.model.encode.width}
44
+ upstream = "*"
45
+
46
+ [components.tok2vec]
47
+ factory = "tok2vec"
48
+
49
+ [components.tok2vec.model]
50
+ @architectures = "spacy.Tok2Vec.v2"
51
+
52
+ [components.tok2vec.model.embed]
53
+ @architectures = "spacy.MultiHashEmbed.v2"
54
+ width = 96
55
+ attrs = ["NORM","PREFIX","SUFFIX","SHAPE"]
56
+ rows = [5000,2500,2500,2500]
57
+ include_static_vectors = false
58
+
59
+ [components.tok2vec.model.encode]
60
+ @architectures = "spacy.MaxoutWindowEncoder.v2"
61
+ width = 96
62
+ depth = 4
63
+ window_size = 1
64
+ maxout_pieces = 3
65
+
66
+ [corpora]
67
+
68
+ [corpora.dev]
69
+ @readers = "spacy.Corpus.v1"
70
+ path = ${paths.dev}
71
+ max_length = 0
72
+ gold_preproc = false
73
+ limit = 0
74
+ augmenter = null
75
+
76
+ [corpora.train]
77
+ @readers = "spacy.Corpus.v1"
78
+ path = ${paths.train}
79
+ max_length = 0
80
+ gold_preproc = false
81
+ limit = 0
82
+ augmenter = null
83
+
84
+ [training]
85
+ dev_corpus = "corpora.dev"
86
+ train_corpus = "corpora.train"
87
+ seed = ${system.seed}
88
+ gpu_allocator = ${system.gpu_allocator}
89
+ dropout = 0.25
90
+ accumulate_gradient = 3
91
+ patience = 5000
92
+ max_epochs = 0
93
+ max_steps = 100000
94
+ eval_frequency = 500
95
+ frozen_components = []
96
+ annotating_components = []
97
+ before_to_disk = null
98
+ before_update = null
99
+
100
+ [training.batcher]
101
+ @batchers = "spacy.batch_by_words.v1"
102
+ discard_oversize = false
103
+ tolerance = 0.2
104
+ get_length = null
105
+
106
+ [training.batcher.size]
107
+ @schedules = "compounding.v1"
108
+ start = 100
109
+ stop = 1000
110
+ compound = 1.001
111
+ t = 0.0
112
+
113
+ [training.logger]
114
+ @loggers = "spacy.ConsoleLogger.v1"
115
+ progress_bar = true
116
+
117
+ [training.optimizer]
118
+ @optimizers = "Adam.v1"
119
+ beta1 = 0.9
120
+ beta2 = 0.999
121
+ L2_is_weight_decay = true
122
+ L2 = 0.02
123
+ grad_clip = 1.0
124
+ use_averages = false
125
+ eps = 0.00000001
126
+ learn_rate = 0.00003
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]
meta.json ADDED
@@ -0,0 +1,118 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lang":"en",
3
+ "name":"pipeline",
4
+ "version":"0.0.0",
5
+ "spacy_version":">=3.8.11,<3.9.0",
6
+ "description":"",
7
+ "author":"",
8
+ "email":"",
9
+ "url":"",
10
+ "license":"",
11
+ "spacy_git_version":"e7a662a",
12
+ "vectors":{
13
+ "width":0,
14
+ "vectors":0,
15
+ "keys":0,
16
+ "name":null,
17
+ "mode":"default"
18
+ },
19
+ "labels":{
20
+ "tok2vec":[
21
+
22
+ ],
23
+ "ner":[
24
+ "ACRONYM",
25
+ "ATTACK_TECHNIQUE",
26
+ "AUDIT_TERM",
27
+ "CERTIFICATION",
28
+ "CVE",
29
+ "FRAMEWORK",
30
+ "REGULATION",
31
+ "SECURITY_DOMAIN",
32
+ "SECURITY_ROLE",
33
+ "SECURITY_TOOL",
34
+ "TECHNICAL_SKILL",
35
+ "THREAT_TYPE"
36
+ ]
37
+ },
38
+ "pipeline":[
39
+ "tok2vec",
40
+ "ner"
41
+ ],
42
+ "components":[
43
+ "tok2vec",
44
+ "ner"
45
+ ],
46
+ "disabled":[
47
+
48
+ ],
49
+ "performance":{
50
+ "ents_f":0.9858429858,
51
+ "ents_p":0.9871134021,
52
+ "ents_r":0.9845758355,
53
+ "ents_per_type":{
54
+ "THREAT_TYPE":{
55
+ "p":0.9375,
56
+ "r":0.9677419355,
57
+ "f":0.9523809524
58
+ },
59
+ "CVE":{
60
+ "p":1.0,
61
+ "r":1.0,
62
+ "f":1.0
63
+ },
64
+ "AUDIT_TERM":{
65
+ "p":1.0,
66
+ "r":1.0,
67
+ "f":1.0
68
+ },
69
+ "CERTIFICATION":{
70
+ "p":1.0,
71
+ "r":0.975,
72
+ "f":0.9873417722
73
+ },
74
+ "SECURITY_ROLE":{
75
+ "p":0.962962963,
76
+ "r":1.0,
77
+ "f":0.9811320755
78
+ },
79
+ "ATTACK_TECHNIQUE":{
80
+ "p":1.0,
81
+ "r":0.9743589744,
82
+ "f":0.987012987
83
+ },
84
+ "SECURITY_DOMAIN":{
85
+ "p":1.0,
86
+ "r":1.0,
87
+ "f":1.0
88
+ },
89
+ "ACRONYM":{
90
+ "p":1.0,
91
+ "r":1.0,
92
+ "f":1.0
93
+ },
94
+ "TECHNICAL_SKILL":{
95
+ "p":1.0,
96
+ "r":1.0,
97
+ "f":1.0
98
+ },
99
+ "REGULATION":{
100
+ "p":0.9333333333,
101
+ "r":1.0,
102
+ "f":0.9655172414
103
+ },
104
+ "FRAMEWORK":{
105
+ "p":1.0,
106
+ "r":0.8846153846,
107
+ "f":0.9387755102
108
+ },
109
+ "SECURITY_TOOL":{
110
+ "p":1.0,
111
+ "r":1.0,
112
+ "f":1.0
113
+ }
114
+ },
115
+ "tok2vec_loss":765.8896043144,
116
+ "ner_loss":1302.3627929688
117
+ }
118
+ }
ner/cfg ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "moves":null,
3
+ "update_with_oracle_cut_size":100,
4
+ "multitasks":[
5
+
6
+ ],
7
+ "min_action_freq":1,
8
+ "learn_tokens":false,
9
+ "beam_width":1,
10
+ "beam_density":0.0,
11
+ "beam_update_prob":0.0,
12
+ "incorrect_spans_key":null
13
+ }
ner/model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:28bfe70ec710ca15e40af7123c982e25c1989cac8e4fa00c68bd366c2a792953
3
+ size 138948
ner/moves ADDED
@@ -0,0 +1 @@
 
 
1
+ ��moves��{"0":{},"1":{"ATTACK_TECHNIQUE":612,"CERTIFICATION":579,"AUDIT_TERM":562,"REGULATION":524,"CVE":456,"TECHNICAL_SKILL":384,"SECURITY_TOOL":368,"THREAT_TYPE":350,"FRAMEWORK":310,"SECURITY_ROLE":275,"SECURITY_DOMAIN":152,"ACRONYM":129},"2":{"ATTACK_TECHNIQUE":612,"CERTIFICATION":579,"AUDIT_TERM":562,"REGULATION":524,"CVE":456,"TECHNICAL_SKILL":384,"SECURITY_TOOL":368,"THREAT_TYPE":350,"FRAMEWORK":310,"SECURITY_ROLE":275,"SECURITY_DOMAIN":152,"ACRONYM":129},"3":{"ATTACK_TECHNIQUE":612,"CERTIFICATION":579,"AUDIT_TERM":562,"REGULATION":524,"CVE":456,"TECHNICAL_SKILL":384,"SECURITY_TOOL":368,"THREAT_TYPE":350,"FRAMEWORK":310,"SECURITY_ROLE":275,"SECURITY_DOMAIN":152,"ACRONYM":129},"4":{"ATTACK_TECHNIQUE":612,"CERTIFICATION":579,"AUDIT_TERM":562,"REGULATION":524,"CVE":456,"TECHNICAL_SKILL":384,"SECURITY_TOOL":368,"THREAT_TYPE":350,"FRAMEWORK":310,"SECURITY_ROLE":275,"SECURITY_DOMAIN":152,"ACRONYM":129,"":1},"5":{"":1}}�cfg��neg_key�
tok2vec/cfg ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+
3
+ }
tok2vec/model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:813510ec24c5e8b1bf2f3cabc40c5628aaacecfd773462c155a2be63bb44d9cd
3
+ size 6585091
tokenizer ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ ��prefix_search� �^§|^%|^=|^—|^–|^\+(?![0-9])|^…|^……|^,|^:|^;|^\!|^\?|^¿|^؟|^¡|^\(|^\)|^\[|^\]|^\{|^\}|^<|^>|^_|^#|^\*|^&|^。|^?|^!|^,|^、|^;|^:|^~|^·|^।|^،|^۔|^؛|^٪|^\.\.+|^…|^\'|^"|^”|^“|^`|^‘|^´|^’|^‚|^,|^„|^»|^«|^「|^」|^『|^』|^(|^)|^〔|^〕|^【|^】|^《|^》|^〈|^〉|^〈|^〉|^⟦|^⟧|^\$|^£|^€|^¥|^฿|^US\$|^C\$|^A\$|^₽|^﷼|^₴|^₠|^₡|^₢|^₣|^₤|^₥|^₦|^₧|^₨|^₩|^₪|^₫|^€|^₭|^₮|^₯|^₰|^₱|^₲|^₳|^₴|^₵|^₶|^₷|^₸|^₹|^₺|^₻|^₼|^₽|^₾|^₿|^[\u00A6\u00A9\u00AE\u00B0\u0482\u058D\u058E\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u09FA\u0B70\u0BF3-\u0BF8\u0BFA\u0C7F\u0D4F\u0D79\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116\u2117\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u214A\u214C\u214D\u214F\u218A\u218B\u2195-\u2199\u219C-\u219F\u21A1\u21A2\u21A4\u21A5\u21A7-\u21AD\u21AF-\u21CD\u21D0\u21D1\u21D3\u21D5-\u21F3\u2300-\u2307\u230C-\u231F\u2322-\u2328\u232B-\u237B\u237D-\u239A\u23B4-\u23DB\u23E2-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u25B6\u25B8-\u25C0\u25C2-\u25F7\u2600-\u266E\u2670-\u2767\u2794-\u27BF\u2800-\u28FF\u2B00-\u2B2F\u2B45\u2B46\u2B4D-\u2B73\u2B76-\u2B95\u2B98-\u2BC8\u2BCA-\u2BFE\u2CE5-\u2CEA\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u32FE\u3300-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA828-\uA82B\uA836\uA837\uA839\uAA77-\uAA79\uFDFD\uFFE4\uFFE8\uFFED\uFFEE\uFFFC\uFFFD\U00010137-\U0001013F\U00010179-\U00010189\U0001018C-\U0001018E\U00010190-\U0001019B\U000101A0\U000101D0-\U000101FC\U00010877\U00010878\U00010AC8\U0001173F\U00016B3C-\U00016B3F\U00016B45\U0001BC9C\U0001D000-\U0001D0F5\U0001D100-\U0001D126\U0001D129-\U0001D164\U0001D16A-\U0001D16C\U0001D183\U0001D184\U0001D18C-\U0001D1A9\U0001D1AE-\U0001D1E8\U0001D200-\U0001D241\U0001D245\U0001D300-\U0001D356\U0001D800-\U0001D9FF\U0001DA37-\U0001DA3A\U0001DA6D-\U0001DA74\U0001DA76-\U0001DA83\U0001DA85\U0001DA86\U0001ECAC\U0001F000-\U0001F02B\U0001F030-\U0001F093\U0001F0A0-\U0001F0AE\U0001F0B1-\U0001F0BF\U0001F0C1-\U0001F0CF\U0001F0D1-\U0001F0F5\U0001F110-\U0001F16B\U0001F170-\U0001F1AC\U0001F1E6-\U0001F202\U0001F210-\U0001F23B\U0001F240-\U0001F248\U0001F250\U0001F251\U0001F260-\U0001F265\U0001F300-\U0001F3FA\U0001F400-\U0001F6D4\U0001F6E0-\U0001F6EC\U0001F6F0-\U0001F6F9\U0001F700-\U0001F773\U0001F780-\U0001F7D8\U0001F800-\U0001F80B\U0001F810-\U0001F847\U0001F850-\U0001F859\U0001F860-\U0001F887\U0001F890-\U0001F8AD\U0001F900-\U0001F90B\U0001F910-\U0001F93E\U0001F940-\U0001F970\U0001F973-\U0001F976\U0001F97A\U0001F97C-\U0001F9A2\U0001F9B0-\U0001F9B9\U0001F9C0-\U0001F9C2\U0001F9D0-\U0001F9FF\U0001FA60-\U0001FA6D]�suffix_search�2�…$|……$|,$|:$|;$|\!$|\?$|¿$|؟$|¡$|\($|\)$|\[$|\]$|\{$|\}$|<$|>$|_$|#$|\*$|&$|。$|?$|!$|,$|、$|;$|:$|~$|·$|।$|،$|۔$|؛$|٪$|\.\.+$|…$|\'$|"$|”$|“$|`$|‘$|´$|’$|‚$|,$|„$|»$|«$|「$|」$|『$|』$|($|)$|〔$|〕$|【$|】$|《$|》$|〈$|〉$|〈$|〉$|⟦$|⟧$|[\u00A6\u00A9\u00AE\u00B0\u0482\u058D\u058E\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u09FA\u0B70\u0BF3-\u0BF8\u0BFA\u0C7F\u0D4F\u0D79\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116\u2117\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u214A\u214C\u214D\u214F\u218A\u218B\u2195-\u2199\u219C-\u219F\u21A1\u21A2\u21A4\u21A5\u21A7-\u21AD\u21AF-\u21CD\u21D0\u21D1\u21D3\u21D5-\u21F3\u2300-\u2307\u230C-\u231F\u2322-\u2328\u232B-\u237B\u237D-\u239A\u23B4-\u23DB\u23E2-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u25B6\u25B8-\u25C0\u25C2-\u25F7\u2600-\u266E\u2670-\u2767\u2794-\u27BF\u2800-\u28FF\u2B00-\u2B2F\u2B45\u2B46\u2B4D-\u2B73\u2B76-\u2B95\u2B98-\u2BC8\u2BCA-\u2BFE\u2CE5-\u2CEA\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u32FE\u3300-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA828-\uA82B\uA836\uA837\uA839\uAA77-\uAA79\uFDFD\uFFE4\uFFE8\uFFED\uFFEE\uFFFC\uFFFD\U00010137-\U0001013F\U00010179-\U00010189\U0001018C-\U0001018E\U00010190-\U0001019B\U000101A0\U000101D0-\U000101FC\U00010877\U00010878\U00010AC8\U0001173F\U00016B3C-\U00016B3F\U00016B45\U0001BC9C\U0001D000-\U0001D0F5\U0001D100-\U0001D126\U0001D129-\U0001D164\U0001D16A-\U0001D16C\U0001D183\U0001D184\U0001D18C-\U0001D1A9\U0001D1AE-\U0001D1E8\U0001D200-\U0001D241\U0001D245\U0001D300-\U0001D356\U0001D800-\U0001D9FF\U0001DA37-\U0001DA3A\U0001DA6D-\U0001DA74\U0001DA76-\U0001DA83\U0001DA85\U0001DA86\U0001ECAC\U0001F000-\U0001F02B\U0001F030-\U0001F093\U0001F0A0-\U0001F0AE\U0001F0B1-\U0001F0BF\U0001F0C1-\U0001F0CF\U0001F0D1-\U0001F0F5\U0001F110-\U0001F16B\U0001F170-\U0001F1AC\U0001F1E6-\U0001F202\U0001F210-\U0001F23B\U0001F240-\U0001F248\U0001F250\U0001F251\U0001F260-\U0001F265\U0001F300-\U0001F3FA\U0001F400-\U0001F6D4\U0001F6E0-\U0001F6EC\U0001F6F0-\U0001F6F9\U0001F700-\U0001F773\U0001F780-\U0001F7D8\U0001F800-\U0001F80B\U0001F810-\U0001F847\U0001F850-\U0001F859\U0001F860-\U0001F887\U0001F890-\U0001F8AD\U0001F900-\U0001F90B\U0001F910-\U0001F93E\U0001F940-\U0001F970\U0001F973-\U0001F976\U0001F97A\U0001F97C-\U0001F9A2\U0001F9B0-\U0001F9B9\U0001F9C0-\U0001F9C2\U0001F9D0-\U0001F9FF\U0001FA60-\U0001FA6D]$|'s$|'S$|’s$|’S$|—$|–$|(?<=[0-9])\+$|(?<=°[FfCcKk])\.$|(?<=[0-9])(?:\$|£|€|¥|฿|US\$|C\$|A\$|₽|﷼|₴|₠|₡|₢|₣|₤|₥|₦|₧|₨|₩|₪|₫|€|₭|₮|₯|₰|₱|₲|₳|₴|₵|₶|₷|₸|₹|₺|₻|₼|₽|₾|₿)$|(?<=[0-9])(?:km|km²|km³|m|m²|m³|dm|dm²|dm³|cm|cm²|cm³|mm|mm²|mm³|ha|µm|nm|yd|in|ft|kg|g|mg|µg|t|lb|oz|m/s|km/h|kmh|mph|hPa|Pa|mbar|mb|MB|kb|KB|gb|GB|tb|TB|T|G|M|K|%|км|км²|км³|м|м²|м³|дм|дм²|дм³|см|см²|см³|мм|мм²|мм³|нм|кг|г|мг|м/с|км/ч|кПа|Па|мбар|Кб|КБ|кб|Мб|МБ|мб|Гб|ГБ|гб|Тб|ТБ|тбكم|كم²|كم³|م|م²|م³|سم|سم²|سم³|مم|مم²|مم³|كم|غرام|جرام|جم|كغ|ملغ|كوب|اكواب)$|(?<=[0-9a-z\uFF41-\uFF5A\u00DF-\u00F6\u00F8-\u00FF\u0101\u0103\u0105\u0107\u0109\u010B\u010D\u010F\u0111\u0113\u0115\u0117\u0119\u011B\u011D\u011F\u0121\u0123\u0125\u0127\u0129\u012B\u012D\u012F\u0131\u0133\u0135\u0137\u0138\u013A\u013C\u013E\u0140\u0142\u0144\u0146\u0148\u0149\u014B\u014D\u014F\u0151\u0153\u0155\u0157\u0159\u015B\u015D\u015F\u0161\u0163\u0165\u0167\u0169\u016B\u016D\u016F\u0171\u0173\u0175\u0177\u017A\u017C\u017E\u017F\u0180\u0183\u0185\u0188\u018C\u018D\u0192\u0195\u0199-\u019B\u019E\u01A1\u01A3\u01A5\u01A8\u01AA\u01AB\u01AD\u01B0\u01B4\u01B6\u01B9\u01BA\u01BD-\u01BF\u01C6\u01C9\u01CC\u01CE\u01D0\u01D2\u01D4\u01D6\u01D8\u01DA\u01DC\u01DD\u01DF\u01E1\u01E3\u01E5\u01E7\u01E9\u01EB\u01ED\u01EF\u01F0\u01F3\u01F5\u01F9\u01FB\u01FD\u01FF\u0201\u0203\u0205\u0207\u0209\u020B\u020D\u020F\u0211\u0213\u0215\u0217\u0219\u021B\u021D\u021F\u0221\u0223\u0225\u0227\u0229\u022B\u022D\u022F\u0231\u0233-\u0239\u023C\u023F\u0240\u0242\u0247\u0249\u024B\u024D\u024F\u2C61\u2C65\u2C66\u2C68\u2C6A\u2C6C\u2C71\u2C73\u2C74\u2C76-\u2C7B\uA723\uA725\uA727\uA729\uA72B\uA72D\uA72F-\uA731\uA733\uA735\uA737\uA739\uA73B\uA73D\uA73F\uA741\uA743\uA745\uA747\uA749\uA74B\uA74D\uA74F\uA751\uA753\uA755\uA757\uA759\uA75B\uA75D\uA75F\uA761\uA763\uA765\uA767\uA769\uA76B\uA76D\uA76F\uA771-\uA778\uA77A\uA77C\uA77F\uA781\uA783\uA785\uA787\uA78C\uA78E\uA791\uA793-\uA795\uA797\uA799\uA79B\uA79D\uA79F\uA7A1\uA7A3\uA7A5\uA7A7\uA7A9\uA7AF\uA7B5\uA7B7\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E01\u1E03\u1E05\u1E07\u1E09\u1E0B\u1E0D\u1E0F\u1E11\u1E13\u1E15\u1E17\u1E19\u1E1B\u1E1D\u1E1F\u1E21\u1E23\u1E25\u1E27\u1E29\u1E2B\u1E2D\u1E2F\u1E31\u1E33\u1E35\u1E37\u1E39\u1E3B\u1E3D\u1E3F\u1E41\u1E43\u1E45\u1E47\u1E49\u1E4B\u1E4D\u1E4F\u1E51\u1E53\u1E55\u1E57\u1E59\u1E5B\u1E5D\u1E5F\u1E61\u1E63\u1E65\u1E67\u1E69\u1E6B\u1E6D\u1E6F\u1E71\u1E73\u1E75\u1E77\u1E79\u1E7B\u1E7D\u1E7F\u1E81\u1E83\u1E85\u1E87\u1E89\u1E8B\u1E8D\u1E8F\u1E91\u1E93\u1E95-\u1E9D\u1E9F\u1EA1\u1EA3\u1EA5\u1EA7\u1EA9\u1EAB\u1EAD\u1EAF\u1EB1\u1EB3\u1EB5\u1EB7\u1EB9\u1EBB\u1EBD\u1EBF\u1EC1\u1EC3\u1EC5\u1EC7\u1EC9\u1ECB\u1ECD\u1ECF\u1ED1\u1ED3\u1ED5\u1ED7\u1ED9\u1EDB\u1EDD\u1EDF\u1EE1\u1EE3\u1EE5\u1EE7\u1EE9\u1EEB\u1EED\u1EEF\u1EF1\u1EF3\u1EF5\u1EF7\u1EF9\u1EFB\u1EFD\u1EFFёа-яәөүҗңһα-ωάέίόώήύа-щюяіїєґѓѕјљњќѐѝ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F%²\-\+…|……|,|:|;|\!|\?|¿|؟|¡|\(|\)|\[|\]|\{|\}|<|>|_|#|\*|&|。|?|!|,|、|;|:|~|·|।|،|۔|؛|٪(?:\'"”“`‘´’‚,„»«「」『』()〔〕【】《》〈〉〈〉⟦⟧)])\.$|(?<=[A-Z\uFF21-\uFF3A\u00C0-\u00D6\u00D8-\u00DE\u0100\u0102\u0104\u0106\u0108\u010A\u010C\u010E\u0110\u0112\u0114\u0116\u0118\u011A\u011C\u011E\u0120\u0122\u0124\u0126\u0128\u012A\u012C\u012E\u0130\u0132\u0134\u0136\u0139\u013B\u013D\u013F\u0141\u0143\u0145\u0147\u014A\u014C\u014E\u0150\u0152\u0154\u0156\u0158\u015A\u015C\u015E\u0160\u0162\u0164\u0166\u0168\u016A\u016C\u016E\u0170\u0172\u0174\u0176\u0178\u0179\u017B\u017D\u0181\u0182\u0184\u0186\u0187\u0189-\u018B\u018E-\u0191\u0193\u0194\u0196-\u0198\u019C\u019D\u019F\u01A0\u01A2\u01A4\u01A6\u01A7\u01A9\u01AC\u01AE\u01AF\u01B1-\u01B3\u01B5\u01B7\u01B8\u01BC\u01C4\u01C7\u01CA\u01CD\u01CF\u01D1\u01D3\u01D5\u01D7\u01D9\u01DB\u01DE\u01E0\u01E2\u01E4\u01E6\u01E8\u01EA\u01EC\u01EE\u01F1\u01F4\u01F6-\u01F8\u01FA\u01FC\u01FE\u0200\u0202\u0204\u0206\u0208\u020A\u020C\u020E\u0210\u0212\u0214\u0216\u0218\u021A\u021C\u021E\u0220\u0222\u0224\u0226\u0228\u022A\u022C\u022E\u0230\u0232\u023A\u023B\u023D\u023E\u0241\u0243-\u0246\u0248\u024A\u024C\u024E\u2C60\u2C62-\u2C64\u2C67\u2C69\u2C6B\u2C6D-\u2C70\u2C72\u2C75\u2C7E\u2C7F\uA722\uA724\uA726\uA728\uA72A\uA72C\uA72E\uA732\uA734\uA736\uA738\uA73A\uA73C\uA73E\uA740\uA742\uA744\uA746\uA748\uA74A\uA74C\uA74E\uA750\uA752\uA754\uA756\uA758\uA75A\uA75C\uA75E\uA760\uA762\uA764\uA766\uA768\uA76A\uA76C\uA76E\uA779\uA77B\uA77D\uA77E\uA780\uA782\uA784\uA786\uA78B\uA78D\uA790\uA792\uA796\uA798\uA79A\uA79C\uA79E\uA7A0\uA7A2\uA7A4\uA7A6\uA7A8\uA7AA-\uA7AE\uA7B0-\uA7B4\uA7B6\uA7B8\u1E00\u1E02\u1E04\u1E06\u1E08\u1E0A\u1E0C\u1E0E\u1E10\u1E12\u1E14\u1E16\u1E18\u1E1A\u1E1C\u1E1E\u1E20\u1E22\u1E24\u1E26\u1E28\u1E2A\u1E2C\u1E2E\u1E30\u1E32\u1E34\u1E36\u1E38\u1E3A\u1E3C\u1E3E\u1E40\u1E42\u1E44\u1E46\u1E48\u1E4A\u1E4C\u1E4E\u1E50\u1E52\u1E54\u1E56\u1E58\u1E5A\u1E5C\u1E5E\u1E60\u1E62\u1E64\u1E66\u1E68\u1E6A\u1E6C\u1E6E\u1E70\u1E72\u1E74\u1E76\u1E78\u1E7A\u1E7C\u1E7E\u1E80\u1E82\u1E84\u1E86\u1E88\u1E8A\u1E8C\u1E8E\u1E90\u1E92\u1E94\u1E9E\u1EA0\u1EA2\u1EA4\u1EA6\u1EA8\u1EAA\u1EAC\u1EAE\u1EB0\u1EB2\u1EB4\u1EB6\u1EB8\u1EBA\u1EBC\u1EBE\u1EC0\u1EC2\u1EC4\u1EC6\u1EC8\u1ECA\u1ECC\u1ECE\u1ED0\u1ED2\u1ED4\u1ED6\u1ED8\u1EDA\u1EDC\u1EDE\u1EE0\u1EE2\u1EE4\u1EE6\u1EE8\u1EEA\u1EEC\u1EEE\u1EF0\u1EF2\u1EF4\u1EF6\u1EF8\u1EFA\u1EFC\u1EFEЁА-ЯӘӨҮҖҢҺΑ-ΩΆΈΊΌΏΉΎА-ЩЮЯІЇЄҐЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F][A-Z\uFF21-\uFF3A\u00C0-\u00D6\u00D8-\u00DE\u0100\u0102\u0104\u0106\u0108\u010A\u010C\u010E\u0110\u0112\u0114\u0116\u0118\u011A\u011C\u011E\u0120\u0122\u0124\u0126\u0128\u012A\u012C\u012E\u0130\u0132\u0134\u0136\u0139\u013B\u013D\u013F\u0141\u0143\u0145\u0147\u014A\u014C\u014E\u0150\u0152\u0154\u0156\u0158\u015A\u015C\u015E\u0160\u0162\u0164\u0166\u0168\u016A\u016C\u016E\u0170\u0172\u0174\u0176\u0178\u0179\u017B\u017D\u0181\u0182\u0184\u0186\u0187\u0189-\u018B\u018E-\u0191\u0193\u0194\u0196-\u0198\u019C\u019D\u019F\u01A0\u01A2\u01A4\u01A6\u01A7\u01A9\u01AC\u01AE\u01AF\u01B1-\u01B3\u01B5\u01B7\u01B8\u01BC\u01C4\u01C7\u01CA\u01CD\u01CF\u01D1\u01D3\u01D5\u01D7\u01D9\u01DB\u01DE\u01E0\u01E2\u01E4\u01E6\u01E8\u01EA\u01EC\u01EE\u01F1\u01F4\u01F6-\u01F8\u01FA\u01FC\u01FE\u0200\u0202\u0204\u0206\u0208\u020A\u020C\u020E\u0210\u0212\u0214\u0216\u0218\u021A\u021C\u021E\u0220\u0222\u0224\u0226\u0228\u022A\u022C\u022E\u0230\u0232\u023A\u023B\u023D\u023E\u0241\u0243-\u0246\u0248\u024A\u024C\u024E\u2C60\u2C62-\u2C64\u2C67\u2C69\u2C6B\u2C6D-\u2C70\u2C72\u2C75\u2C7E\u2C7F\uA722\uA724\uA726\uA728\uA72A\uA72C\uA72E\uA732\uA734\uA736\uA738\uA73A\uA73C\uA73E\uA740\uA742\uA744\uA746\uA748\uA74A\uA74C\uA74E\uA750\uA752\uA754\uA756\uA758\uA75A\uA75C\uA75E\uA760\uA762\uA764\uA766\uA768\uA76A\uA76C\uA76E\uA779\uA77B\uA77D\uA77E\uA780\uA782\uA784\uA786\uA78B\uA78D\uA790\uA792\uA796\uA798\uA79A\uA79C\uA79E\uA7A0\uA7A2\uA7A4\uA7A6\uA7A8\uA7AA-\uA7AE\uA7B0-\uA7B4\uA7B6\uA7B8\u1E00\u1E02\u1E04\u1E06\u1E08\u1E0A\u1E0C\u1E0E\u1E10\u1E12\u1E14\u1E16\u1E18\u1E1A\u1E1C\u1E1E\u1E20\u1E22\u1E24\u1E26\u1E28\u1E2A\u1E2C\u1E2E\u1E30\u1E32\u1E34\u1E36\u1E38\u1E3A\u1E3C\u1E3E\u1E40\u1E42\u1E44\u1E46\u1E48\u1E4A\u1E4C\u1E4E\u1E50\u1E52\u1E54\u1E56\u1E58\u1E5A\u1E5C\u1E5E\u1E60\u1E62\u1E64\u1E66\u1E68\u1E6A\u1E6C\u1E6E\u1E70\u1E72\u1E74\u1E76\u1E78\u1E7A\u1E7C\u1E7E\u1E80\u1E82\u1E84\u1E86\u1E88\u1E8A\u1E8C\u1E8E\u1E90\u1E92\u1E94\u1E9E\u1EA0\u1EA2\u1EA4\u1EA6\u1EA8\u1EAA\u1EAC\u1EAE\u1EB0\u1EB2\u1EB4\u1EB6\u1EB8\u1EBA\u1EBC\u1EBE\u1EC0\u1EC2\u1EC4\u1EC6\u1EC8\u1ECA\u1ECC\u1ECE\u1ED0\u1ED2\u1ED4\u1ED6\u1ED8\u1EDA\u1EDC\u1EDE\u1EE0\u1EE2\u1EE4\u1EE6\u1EE8\u1EEA\u1EEC\u1EEE\u1EF0\u1EF2\u1EF4\u1EF6\u1EF8\u1EFA\u1EFC\u1EFEЁА-ЯӘӨҮҖҢҺΑ-ΩΆΈΊΌΏΉΎА-ЩЮЯІЇЄҐЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])\.$�infix_finditer�>�\.\.+|…|[\u00A6\u00A9\u00AE\u00B0\u0482\u058D\u058E\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u09FA\u0B70\u0BF3-\u0BF8\u0BFA\u0C7F\u0D4F\u0D79\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116\u2117\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u214A\u214C\u214D\u214F\u218A\u218B\u2195-\u2199\u219C-\u219F\u21A1\u21A2\u21A4\u21A5\u21A7-\u21AD\u21AF-\u21CD\u21D0\u21D1\u21D3\u21D5-\u21F3\u2300-\u2307\u230C-\u231F\u2322-\u2328\u232B-\u237B\u237D-\u239A\u23B4-\u23DB\u23E2-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u25B6\u25B8-\u25C0\u25C2-\u25F7\u2600-\u266E\u2670-\u2767\u2794-\u27BF\u2800-\u28FF\u2B00-\u2B2F\u2B45\u2B46\u2B4D-\u2B73\u2B76-\u2B95\u2B98-\u2BC8\u2BCA-\u2BFE\u2CE5-\u2CEA\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u32FE\u3300-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA828-\uA82B\uA836\uA837\uA839\uAA77-\uAA79\uFDFD\uFFE4\uFFE8\uFFED\uFFEE\uFFFC\uFFFD\U00010137-\U0001013F\U00010179-\U00010189\U0001018C-\U0001018E\U00010190-\U0001019B\U000101A0\U000101D0-\U000101FC\U00010877\U00010878\U00010AC8\U0001173F\U00016B3C-\U00016B3F\U00016B45\U0001BC9C\U0001D000-\U0001D0F5\U0001D100-\U0001D126\U0001D129-\U0001D164\U0001D16A-\U0001D16C\U0001D183\U0001D184\U0001D18C-\U0001D1A9\U0001D1AE-\U0001D1E8\U0001D200-\U0001D241\U0001D245\U0001D300-\U0001D356\U0001D800-\U0001D9FF\U0001DA37-\U0001DA3A\U0001DA6D-\U0001DA74\U0001DA76-\U0001DA83\U0001DA85\U0001DA86\U0001ECAC\U0001F000-\U0001F02B\U0001F030-\U0001F093\U0001F0A0-\U0001F0AE\U0001F0B1-\U0001F0BF\U0001F0C1-\U0001F0CF\U0001F0D1-\U0001F0F5\U0001F110-\U0001F16B\U0001F170-\U0001F1AC\U0001F1E6-\U0001F202\U0001F210-\U0001F23B\U0001F240-\U0001F248\U0001F250\U0001F251\U0001F260-\U0001F265\U0001F300-\U0001F3FA\U0001F400-\U0001F6D4\U0001F6E0-\U0001F6EC\U0001F6F0-\U0001F6F9\U0001F700-\U0001F773\U0001F780-\U0001F7D8\U0001F800-\U0001F80B\U0001F810-\U0001F847\U0001F850-\U0001F859\U0001F860-\U0001F887\U0001F890-\U0001F8AD\U0001F900-\U0001F90B\U0001F910-\U0001F93E\U0001F940-\U0001F970\U0001F973-\U0001F976\U0001F97A\U0001F97C-\U0001F9A2\U0001F9B0-\U0001F9B9\U0001F9C0-\U0001F9C2\U0001F9D0-\U0001F9FF\U0001FA60-\U0001FA6D]|(?<=[0-9])[+\-\*^](?=[0-9-])|(?<=[a-z\uFF41-\uFF5A\u00DF-\u00F6\u00F8-\u00FF\u0101\u0103\u0105\u0107\u0109\u010B\u010D\u010F\u0111\u0113\u0115\u0117\u0119\u011B\u011D\u011F\u0121\u0123\u0125\u0127\u0129\u012B\u012D\u012F\u0131\u0133\u0135\u0137\u0138\u013A\u013C\u013E\u0140\u0142\u0144\u0146\u0148\u0149\u014B\u014D\u014F\u0151\u0153\u0155\u0157\u0159\u015B\u015D\u015F\u0161\u0163\u0165\u0167\u0169\u016B\u016D\u016F\u0171\u0173\u0175\u0177\u017A\u017C\u017E\u017F\u0180\u0183\u0185\u0188\u018C\u018D\u0192\u0195\u0199-\u019B\u019E\u01A1\u01A3\u01A5\u01A8\u01AA\u01AB\u01AD\u01B0\u01B4\u01B6\u01B9\u01BA\u01BD-\u01BF\u01C6\u01C9\u01CC\u01CE\u01D0\u01D2\u01D4\u01D6\u01D8\u01DA\u01DC\u01DD\u01DF\u01E1\u01E3\u01E5\u01E7\u01E9\u01EB\u01ED\u01EF\u01F0\u01F3\u01F5\u01F9\u01FB\u01FD\u01FF\u0201\u0203\u0205\u0207\u0209\u020B\u020D\u020F\u0211\u0213\u0215\u0217\u0219\u021B\u021D\u021F\u0221\u0223\u0225\u0227\u0229\u022B\u022D\u022F\u0231\u0233-\u0239\u023C\u023F\u0240\u0242\u0247\u0249\u024B\u024D\u024F\u2C61\u2C65\u2C66\u2C68\u2C6A\u2C6C\u2C71\u2C73\u2C74\u2C76-\u2C7B\uA723\uA725\uA727\uA729\uA72B\uA72D\uA72F-\uA731\uA733\uA735\uA737\uA739\uA73B\uA73D\uA73F\uA741\uA743\uA745\uA747\uA749\uA74B\uA74D\uA74F\uA751\uA753\uA755\uA757\uA759\uA75B\uA75D\uA75F\uA761\uA763\uA765\uA767\uA769\uA76B\uA76D\uA76F\uA771-\uA778\uA77A\uA77C\uA77F\uA781\uA783\uA785\uA787\uA78C\uA78E\uA791\uA793-\uA795\uA797\uA799\uA79B\uA79D\uA79F\uA7A1\uA7A3\uA7A5\uA7A7\uA7A9\uA7AF\uA7B5\uA7B7\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E01\u1E03\u1E05\u1E07\u1E09\u1E0B\u1E0D\u1E0F\u1E11\u1E13\u1E15\u1E17\u1E19\u1E1B\u1E1D\u1E1F\u1E21\u1E23\u1E25\u1E27\u1E29\u1E2B\u1E2D\u1E2F\u1E31\u1E33\u1E35\u1E37\u1E39\u1E3B\u1E3D\u1E3F\u1E41\u1E43\u1E45\u1E47\u1E49\u1E4B\u1E4D\u1E4F\u1E51\u1E53\u1E55\u1E57\u1E59\u1E5B\u1E5D\u1E5F\u1E61\u1E63\u1E65\u1E67\u1E69\u1E6B\u1E6D\u1E6F\u1E71\u1E73\u1E75\u1E77\u1E79\u1E7B\u1E7D\u1E7F\u1E81\u1E83\u1E85\u1E87\u1E89\u1E8B\u1E8D\u1E8F\u1E91\u1E93\u1E95-\u1E9D\u1E9F\u1EA1\u1EA3\u1EA5\u1EA7\u1EA9\u1EAB\u1EAD\u1EAF\u1EB1\u1EB3\u1EB5\u1EB7\u1EB9\u1EBB\u1EBD\u1EBF\u1EC1\u1EC3\u1EC5\u1EC7\u1EC9\u1ECB\u1ECD\u1ECF\u1ED1\u1ED3\u1ED5\u1ED7\u1ED9\u1EDB\u1EDD\u1EDF\u1EE1\u1EE3\u1EE5\u1EE7\u1EE9\u1EEB\u1EED\u1EEF\u1EF1\u1EF3\u1EF5\u1EF7\u1EF9\u1EFB\u1EFD\u1EFFёа-яәөүҗңһα-ωάέίόώήύа-щюяіїєґѓѕјљњќѐѝ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F\'"”“`‘´’‚,„»«「」『』()〔〕【】《》〈〉〈〉⟦⟧])\.(?=[A-Z\uFF21-\uFF3A\u00C0-\u00D6\u00D8-\u00DE\u0100\u0102\u0104\u0106\u0108\u010A\u010C\u010E\u0110\u0112\u0114\u0116\u0118\u011A\u011C\u011E\u0120\u0122\u0124\u0126\u0128\u012A\u012C\u012E\u0130\u0132\u0134\u0136\u0139\u013B\u013D\u013F\u0141\u0143\u0145\u0147\u014A\u014C\u014E\u0150\u0152\u0154\u0156\u0158\u015A\u015C\u015E\u0160\u0162\u0164\u0166\u0168\u016A\u016C\u016E\u0170\u0172\u0174\u0176\u0178\u0179\u017B\u017D\u0181\u0182\u0184\u0186\u0187\u0189-\u018B\u018E-\u0191\u0193\u0194\u0196-\u0198\u019C\u019D\u019F\u01A0\u01A2\u01A4\u01A6\u01A7\u01A9\u01AC\u01AE\u01AF\u01B1-\u01B3\u01B5\u01B7\u01B8\u01BC\u01C4\u01C7\u01CA\u01CD\u01CF\u01D1\u01D3\u01D5\u01D7\u01D9\u01DB\u01DE\u01E0\u01E2\u01E4\u01E6\u01E8\u01EA\u01EC\u01EE\u01F1\u01F4\u01F6-\u01F8\u01FA\u01FC\u01FE\u0200\u0202\u0204\u0206\u0208\u020A\u020C\u020E\u0210\u0212\u0214\u0216\u0218\u021A\u021C\u021E\u0220\u0222\u0224\u0226\u0228\u022A\u022C\u022E\u0230\u0232\u023A\u023B\u023D\u023E\u0241\u0243-\u0246\u0248\u024A\u024C\u024E\u2C60\u2C62-\u2C64\u2C67\u2C69\u2C6B\u2C6D-\u2C70\u2C72\u2C75\u2C7E\u2C7F\uA722\uA724\uA726\uA728\uA72A\uA72C\uA72E\uA732\uA734\uA736\uA738\uA73A\uA73C\uA73E\uA740\uA742\uA744\uA746\uA748\uA74A\uA74C\uA74E\uA750\uA752\uA754\uA756\uA758\uA75A\uA75C\uA75E\uA760\uA762\uA764\uA766\uA768\uA76A\uA76C\uA76E\uA779\uA77B\uA77D\uA77E\uA780\uA782\uA784\uA786\uA78B\uA78D\uA790\uA792\uA796\uA798\uA79A\uA79C\uA79E\uA7A0\uA7A2\uA7A4\uA7A6\uA7A8\uA7AA-\uA7AE\uA7B0-\uA7B4\uA7B6\uA7B8\u1E00\u1E02\u1E04\u1E06\u1E08\u1E0A\u1E0C\u1E0E\u1E10\u1E12\u1E14\u1E16\u1E18\u1E1A\u1E1C\u1E1E\u1E20\u1E22\u1E24\u1E26\u1E28\u1E2A\u1E2C\u1E2E\u1E30\u1E32\u1E34\u1E36\u1E38\u1E3A\u1E3C\u1E3E\u1E40\u1E42\u1E44\u1E46\u1E48\u1E4A\u1E4C\u1E4E\u1E50\u1E52\u1E54\u1E56\u1E58\u1E5A\u1E5C\u1E5E\u1E60\u1E62\u1E64\u1E66\u1E68\u1E6A\u1E6C\u1E6E\u1E70\u1E72\u1E74\u1E76\u1E78\u1E7A\u1E7C\u1E7E\u1E80\u1E82\u1E84\u1E86\u1E88\u1E8A\u1E8C\u1E8E\u1E90\u1E92\u1E94\u1E9E\u1EA0\u1EA2\u1EA4\u1EA6\u1EA8\u1EAA\u1EAC\u1EAE\u1EB0\u1EB2\u1EB4\u1EB6\u1EB8\u1EBA\u1EBC\u1EBE\u1EC0\u1EC2\u1EC4\u1EC6\u1EC8\u1ECA\u1ECC\u1ECE\u1ED0\u1ED2\u1ED4\u1ED6\u1ED8\u1EDA\u1EDC\u1EDE\u1EE0\u1EE2\u1EE4\u1EE6\u1EE8\u1EEA\u1EEC\u1EEE\u1EF0\u1EF2\u1EF4\u1EF6\u1EF8\u1EFA\u1EFC\u1EFEЁА-ЯӘӨҮҖҢҺΑ-ΩΆΈΊΌΏΉΎА-ЩЮЯІЇЄҐЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F\'"”“`‘´’‚,„»«「」『』()〔〕【】《》〈〉〈〉⟦⟧])|(?<=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F]),(?=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])|(?<=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F0-9])(?:-|–|—|--|---|——|~)(?=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])|(?<=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F0-9])[:<>=/](?=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])�token_match��url_match�
2
+ ��A�
3
+ � ��A� �'��A�'�''��A�''�'Cause��A�'CauseC�because�'Cos��A�'CosC�because�'Coz��A�'CozC�because�'Cuz��A�'CuzC�because�'S��A�'SC�'s�'bout��A�'boutC�about�'cause��A�'causeC�because�'cos��A�'cosC�because�'coz��A�'cozC�because�'cuz��A�'cuzC�because�'d��A�'d�'em��A�'emC�them�'ll��A�'llC�will�'nuff��A�'nuffC�enough�'re��A�'reC�are�'s��A�'sC�'s�(*_*)��A�(*_*)�(-8��A�(-8�(-:��A�(-:�(-;��A�(-;�(-_-)��A�(-_-)�(._.)��A�(._.)�(:��A�(:�(;��A�(;�(=��A�(=�(>_<)��A�(>_<)�(^_^)��A�(^_^)�(o:��A�(o:�(¬_¬)��A�(¬_¬)�(ಠ_ಠ)��A�(ಠ_ಠ)�(╯°□°)╯︵┻━┻��A�(╯°□°)╯︵┻━┻�)-:��A�)-:�):��A�):�-_-��A�-_-�-__-��A�-__-�._.��A�._.�0.0��A�0.0�0.o��A�0.o�0_0��A�0_0�0_o��A�0_o�10a.m.��A�10�A�a.m.C�a.m.�10am��A�10�A�amC�a.m.�10p.m.��A�10�A�p.m.C�p.m.�10pm��A�10�A�pmC�p.m.�11a.m.��A�11�A�a.m.C�a.m.�11am��A�11�A�amC�a.m.�11p.m.��A�11�A�p.m.C�p.m.�11pm��A�11�A�pmC�p.m.�12a.m.��A�12�A�a.m.C�a.m.�12am��A�12�A�amC�a.m.�12p.m.��A�12�A�p.m.C�p.m.�12pm��A�12�A�pmC�p.m.�1a.m.��A�1�A�a.m.C�a.m.�1am��A�1�A�amC�a.m.�1p.m.��A�1�A�p.m.C�p.m.�1pm��A�1�A�pmC�p.m.�2a.m.��A�2�A�a.m.C�a.m.�2am��A�2�A�amC�a.m.�2p.m.��A�2�A�p.m.C�p.m.�2pm��A�2�A�pmC�p.m.�3a.m.��A�3�A�a.m.C�a.m.�3am��A�3�A�amC�a.m.�3p.m.��A�3�A�p.m.C�p.m.�3pm��A�3�A�pmC�p.m.�4a.m.��A�4�A�a.m.C�a.m.�4am��A�4�A�amC�a.m.�4p.m.��A�4�A�p.m.C�p.m.�4pm��A�4�A�pmC�p.m.�5a.m.��A�5�A�a.m.C�a.m.�5am��A�5�A�amC�a.m.�5p.m.��A�5�A�p.m.C�p.m.�5pm��A�5�A�pmC�p.m.�6a.m.��A�6�A�a.m.C�a.m.�6am��A�6�A�amC�a.m.�6p.m.��A�6�A�p.m.C�p.m.�6pm��A�6�A�pmC�p.m.�7a.m.��A�7�A�a.m.C�a.m.�7am��A�7�A�amC�a.m.�7p.m.��A�7�A�p.m.C�p.m.�7pm��A�7�A�pmC�p.m.�8)��A�8)�8-)��A�8-)�8-D��A�8-D�8D��A�8D�8a.m.��A�8�A�a.m.C�a.m.�8am��A�8�A�amC�a.m.�8p.m.��A�8�A�p.m.C�p.m.�8pm��A�8�A�pmC�p.m.�9a.m.��A�9�A�a.m.C�a.m.�9am��A�9�A�amC�a.m.�9p.m.��A�9�A�p.m.C�p.m.�9pm��A�9�A�pmC�p.m.�:'(��A�:'(�:')��A�:')�:'-(��A�:'-(�:'-)��A�:'-)�:(��A�:(�:((��A�:((�:(((��A�:(((�:()��A�:()�:)��A�:)�:))��A�:))�:)))��A�:)))�:*��A�:*�:-(��A�:-(�:-((��A�:-((�:-(((��A�:-(((�:-)��A�:-)�:-))��A�:-))�:-)))��A�:-)))�:-*��A�:-*�:-/��A�:-/�:-0��A�:-0�:-3��A�:-3�:->��A�:->�:-D��A�:-D�:-O��A�:-O�:-P��A�:-P�:-X��A�:-X�:-]��A�:-]�:-o��A�:-o�:-p��A�:-p�:-x��A�:-x�:-|��A�:-|�:-}��A�:-}�:/��A�:/�:0��A�:0�:1��A�:1�:3��A�:3�:>��A�:>�:D��A�:D�:O��A�:O�:P��A�:P�:X��A�:X�:]��A�:]�:o��A�:o�:o)��A�:o)�:p��A�:p�:x��A�:x�:|��A�:|�:}��A�:}�:’(��A�:’(�:’)��A�:’)�:’-(��A�:’-(�:’-)��A�:’-)�;)��A�;)�;-)��A�;-)�;-D��A�;-D�;D��A�;D�;_;��A�;_;�<.<��A�<.<�</3��A�</3�<3��A�<3�<33��A�<33�<333��A�<333�<space>��A�<space>�=(��A�=(�=)��A�=)�=/��A�=/�=3��A�=3�=D��A�=D�=[��A�=[�=]��A�=]�=|��A�=|�>.<��A�>.<�>.>��A�>.>�>:(��A�>:(�>:o��A�>:o�><(((*>��A�><(((*>�@_@��A�@_@�Adm.��A�Adm.�Ain't��A�Ai�A�n'tC�not�Aint��A�Ai�A�ntC�not�Ain’t��A�Ai�A�n’tC�not�Ak.��A�Ak.C�Alaska�Ala.��A�Ala.C�Alabama�Apr.��A�Apr.C�April�Aren't��A�AreC�are�A�n'tC�not�Arent��A�AreC�are�A�ntC�not�Aren’t��A�AreC�are�A�n’tC�not�Ariz.��A�Ariz.C�Arizona�Ark.��A�Ark.C�Arkansas�Aug.��A�Aug.C�August�Bros.��A�Bros.�C'mon��A�C'mC�come�A�on�C++��A�C++�Calif.��A�Calif.C�California�Can't��A�CaC�can�A�n'tC�not�Can't've��A�CaC�can�A�n'tC�not�A�'veC�have�Cannot��A�CanC�can�A�not�Cant��A�CaC�can�A�ntC�not�Cantve��A�CaC�can�A�ntC�not�A�veC�have�Can’t��A�CaC�can�A�n’tC�not�Can’t’ve��A�CaC�can�A�n’tC�not�A�’veC�have�Co.��A�Co.�Colo.��A�Colo.C�Colorado�Conn.��A�Conn.C�Connecticut�Corp.��A�Corp.�Could've��A�CouldC�could�A�'ve�Couldn't��A�CouldC�could�A�n'tC�not�Couldn't've��A�CouldC�could�A�n'tC�not�A�'veC�have�Couldnt��A�CouldC�could�A�ntC�not�Couldntve��A�CouldC�could�A�ntC�not�A�veC�have�Couldn’t��A�CouldC�could�A�n’tC�not�Couldn’t’ve��A�CouldC�could�A�n’tC�not�A�’veC�have�Couldve��A�CouldC�could�A�ve�Could’ve��A�CouldC�could�A�’ve�C’mon��A�C’mC�come�A�on�D.C.��A�D.C.�Daren't��A�DareC�dare�A�n'tC�not�Darent��A�DareC�dare�A�ntC�not�Daren’t��A�DareC�dare�A�n’tC�not�Dec.��A�Dec.C�December�Del.��A�Del.C�Delaware�Didn't��A�DidC�do�A�n'tC�not�Didn't've��A�DidC�do�A�n'tC�not�A�'veC�have�Didnt��A�DidC�do�A�ntC�not�Didntve��A�DidC�do�A�ntC�not�A�veC�have�Didn’t��A�DidC�do�A�n’tC�not�Didn’t’ve��A�DidC�do�A�n’tC�not�A�’veC�have�Doesn't��A�DoesC�does�A�n'tC�not�Doesn't've��A�DoesC�does�A�n'tC�not�A�'veC�have�Doesnt��A�DoesC�does�A�ntC�not�Doesntve��A�DoesC�does�A�ntC�not�A�veC�have�Doesn’t��A�DoesC�does�A�n’tC�not�Doesn’t’ve��A�DoesC�does�A�n’tC�not�A�’veC�have�Doin��A�DoinC�doing�Doin'��A�Doin'C�doing�Doin’��A�Doin’C�doing�Don't��A�DoC�do�A�n'tC�not�Don't've��A�DoC�do�A�n'tC�not�A�'veC�have�Dont��A�DoC�do�A�ntC�not�Dontve��A�DoC�do�A�ntC�not�A�veC�have�Don’t��A�DoC�do�A�n’tC�not�Don’t’ve��A�DoC�do�A�n’tC�not�A�’veC�have�Dr.��A�Dr.�E.G.��A�E.G.�E.g.��A�E.g.�Feb.��A�Feb.C�February�Fla.��A�Fla.C�Florida�Ga.��A�Ga.C�Georgia�Gen.��A�Gen.�Goin��A�GoinC�going�Goin'��A�Goin'C�going�Goin’��A�Goin’C�going�Gonna��A�GonC�going�A�naC�to�Gotta��A�GotC�got�A�taC�to�Gov.��A�Gov.�Hadn't��A�HadC�have�A�n'tC�not�Hadn't've��A�HadC�have�A�n'tC�not�A�'veC�have�Hadnt��A�HadC�have�A�ntC�not�Hadntve��A�HadC�have�A�ntC�not�A�veC�have�Hadn’t��A�HadC�have�A�n’tC�not�Hadn’t’ve��A�HadC�have�A�n’tC�not�A�’veC�have�Hasn't��A�HasC�has�A�n'tC�not�Hasnt��A�HasC�has�A�ntC�not�Hasn’t��A�HasC�has�A�n’tC�not�Haven't��A�HaveC�have�A�n'tC�not�Havent��A�HaveC�have�A�ntC�not�Haven’t��A�HaveC�have�A�n’tC�not�Havin��A�HavinC�having�Havin'��A�Havin'C�having�Havin’��A�Havin’C�having�He'd��A�HeC�he�A�'dC�'d�He'd've��A�HeC�he�A�'dC�would�A�'veC�have�He'll��A�HeC�he�A�'llC�will�He'll've��A�HeC�he�A�'llC�will�A�'veC�have�He's��A�HeC�he�A�'sC�'s�Hed��A�HeC�he�A�dC�'d�Hedve��A�HeC�he�A�dC�would�A�veC�have�Hellve��A�HeC�he�A�llC�will�A�veC�have�Hes��A�HeC�he�A�s�He’d��A�HeC�he�A�’dC�'d�He’d’ve��A�HeC�he�A�’dC�would�A�’veC�have�He’ll��A�HeC�he�A�’llC�will�He’ll’ve��A�HeC�he�A�’llC�will�A�’veC�have�He’s��A�HeC�he�A�’sC�'s�How'd��A�HowC�how�A�'dC�'d�How'd've��A�HowC�how�A�'dC�would�A�'veC�have�How'd'y��A�HowC�how�A�'d�A�'yC�you�How'll��A�HowC�how�A�'llC�will�How'll've��A�HowC�how�A�'llC�will�A�'veC�have�How're��A�HowC�how�A�'reC�are�How's��A�HowC�how�A�'sC�'s�How've��A�HowC�how�A�'ve�Howd��A�HowC�how�A�dC�'d�Howdve��A�HowC�how�A�dC�would�A�veC�have�Howll��A�HowC�how�A�llC�will�Howllve��A�HowC�how�A�llC�will�A�veC�have�Howre��A�HowC�how�A�reC�are�Hows��A�HowC�how�A�s�Howve��A�How�A�veC�have�How’d��A�HowC�how�A�’dC�'d�How’d’ve��A�HowC�how�A�’dC�would�A�’veC�have�How’d’y��A�HowC�how�A�’d�A�’yC�you�How’ll��A�HowC�how�A�’llC�will�How’ll’ve��A�HowC�how�A�’llC�will�A�’veC�have�How’re��A�HowC�how�A�’reC�are�How’s��A�HowC�how�A�’sC�'s�How’ve��A�HowC�how�A�’ve�I'd��A�IC�i�A�'dC�'d�I'd've��A�IC�i�A�'dC�would�A�'veC�have�I'll��A�IC�i�A�'llC�will�I'll've��A�IC�i�A�'llC�will�A�'veC�have�I'm��A�IC�i�A�'mC�am�I'ma��A�IC�i�A�'mC�am�A�aC�gonna�I've��A�IC�i�A�'veC�have�I.E.��A�I.E.�I.e.��A�I.e.�Ia.��A�Ia.C�Iowa�Id��A�IC�i�A�dC�'d�Id.��A�Id.C�Idaho�Idve��A�IC�i�A�dC�would�A�veC�have�Ill.��A�Ill.C�Illinois�Illve��A�IC�i�A�llC�will�A�veC�have�Im��A�IC�i�A�m�Ima��A�IC�i�A�mC�am�A�aC�gonna�Inc.��A�Inc.�Ind.��A�Ind.C�Indiana�Isn't��A�IsC�is�A�n'tC�not�Isnt��A�IsC�is�A�ntC�not�Isn’t��A�IsC�is�A�n’tC�not�It'd��A�ItC�it�A�'dC�'d�It'd've��A�ItC�it�A�'dC�would�A�'veC�have�It'll��A�ItC�it�A�'llC�will�It'll've��A�ItC�it�A�'llC�will�A�'veC�have�It's��A�ItC�it�A�'sC�'s�Itd��A�ItC�it�A�dC�'d�Itdve��A�ItC�it�A�dC�would�A�veC�have�Itll��A�ItC�it�A�llC�will�Itllve��A�ItC�it�A�llC�will�A�veC�have�It’d��A�ItC�it�A�’dC�'d�It’d’ve��A�ItC�it�A�’dC�would�A�’veC�have�It’ll��A�ItC�it�A�’llC�will�It’ll’ve��A�ItC�it�A�’llC�will�A�’veC�have�It’s��A�ItC�it�A�’sC�'s�Ive��A�IC�i�A�veC�have�I’d��A�IC�i�A�’dC�'d�I’d’ve��A�IC�i�A�’dC�would�A�’veC�have�I’ll��A�IC�i�A�’llC�will�I’ll’ve��A�IC�i�A�’llC�will�A�’veC�have�I’m��A�IC�i�A�’mC�am�I’ma��A�IC�i�A�’mC�am�A�aC�gonna�I’ve��A�IC�i�A�’veC�have�Jan.��A�Jan.C�January�Jr.��A�Jr.�Jul.��A�Jul.C�July�Jun.��A�Jun.C�June�Kan.��A�Kan.C�Kansas�Kans.��A�Kans.C�Kansas�Ky.��A�Ky.C�Kentucky�La.��A�La.C�Louisiana�Let's��A�LetC�let�A�'sC�us�Let’s��A�LetC�let�A�’sC�us�Lovin��A�LovinC�loving�Lovin'��A�Lovin'C�loving�Lovin’��A�Lovin’C�loving�Ltd.��A�Ltd.�Ma'am��A�Ma'amC�madam�Mar.��A�Mar.C�March�Mass.��A�Mass.C�Massachusetts�Mayn't��A�MayC�may�A�n'tC�not�Mayn't've��A�MayC�may�A�n'tC�not�A�'veC�have�Maynt��A�MayC�may�A�ntC�not�Mayntve��A�MayC�may�A�ntC�not�A�veC�have�Mayn’t��A�MayC�may�A�n’tC�not�Mayn’t’ve��A�MayC�may�A�n’tC�not�A�’veC�have�Ma’am��A�Ma’amC�madam�Md.��A�Md.�Messrs.��A�Messrs.�Mich.��A�Mich.C�Michigan�Might've��A�MightC�might�A�'ve�Mightn't��A�MightC�might�A�n'tC�not�Mightn't've��A�MightC�might�A�n'tC�not�A�'veC�have�Mightnt��A�MightC�might�A�ntC�not�Mightntve��A�MightC�might�A�ntC�not�A�veC�have�Mightn’t��A�MightC�might�A�n’tC�not�Mightn’t’ve��A�MightC�might�A�n’tC�not�A�’veC�have�Mightve��A�MightC�might�A�ve�Might’ve��A�MightC�might�A�’ve�Minn.��A�Minn.C�Minnesota�Miss.��A�Miss.C�Mississippi�Mo.��A�Mo.�Mont.��A�Mont.�Mr.��A�Mr.�Mrs.��A�Mrs.�Ms.��A�Ms.�Mt.��A�Mt.C�Mount�Must've��A�MustC�must�A�'ve�Mustn't��A�MustC�must�A�n'tC�not�Mustn't've��A�MustC�must�A�n'tC�not�A�'veC�have�Mustnt��A�MustC�must�A�ntC�not�Mustntve��A�MustC�must�A�ntC�not�A�veC�have�Mustn’t��A�MustC�must�A�n’tC�not�Mustn’t’ve��A�MustC�must�A�n’tC�not�A�’veC�have�Mustve��A�MustC�must�A�ve�Must’ve��A�MustC�must�A�’ve�N.C.��A�N.C.C�North Carolina�N.D.��A�N.D.C�North Dakota�N.H.��A�N.H.C�New Hampshire�N.J.��A�N.J.C�New Jersey�N.M.��A�N.M.C�New Mexico�N.Y.��A�N.Y.C�New York�Neb.��A�Neb.C�Nebraska�Nebr.��A�Nebr.C�Nebraska�Needn't��A�NeedC�need�A�n'tC�not�Needn't've��A�NeedC�need�A�n'tC�not�A�'veC�have�Neednt��A�NeedC�need�A�ntC�not�Needntve��A�NeedC�need�A�ntC�not�A�veC�have�Needn’t��A�NeedC�need�A�n’tC�not�Needn’t’ve��A�NeedC�need�A�n’tC�not�A�’veC�have�Nev.��A�Nev.C�Nevada�Not've��A�NotC�not�A�'veC�have�Nothin��A�NothinC�nothing�Nothin'��A�Nothin'C�nothing�Nothin’��A�Nothin’C�nothing�Notve��A�NotC�not�A�veC�have�Not’ve��A�NotC�not�A�’veC�have�Nov.��A�Nov.C�November�Nuthin��A�NuthinC�nothing�Nuthin'��A�Nuthin'C�nothing�Nuthin’��A�Nuthin’C�nothing�O'clock��A�O'clockC�o'clock�O.O��A�O.O�O.o��A�O.o�O_O��A�O_O�O_o��A�O_o�Oct.��A�Oct.C�October�Okla.��A�Okla.C�Oklahoma�Ol��A�OlC�old�Ol'��A�Ol'C�old�Ol’��A�Ol’C�old�Ore.��A�Ore.C�Oregon�Oughtn't��A�OughtC�ought�A�n'tC�not�Oughtn't've��A�OughtC�ought�A�n'tC�not�A�'veC�have�Oughtnt��A�OughtC�ought�A�ntC�not�Oughtntve��A�OughtC�ought�A�ntC�not�A�veC�have�Oughtn’t��A�OughtC�ought�A�n’tC�not�Oughtn’t’ve��A�OughtC�ought�A�n’tC�not�A�’veC�have�O’clock��A�O’clockC�o'clock�Pa.��A�Pa.C�Pennsylvania�Ph.D.��A�Ph.D.�Prof.��A�Prof.�Rep.��A�Rep.�Rev.��A�Rev.�S.C.��A�S.C.C�South Carolina�Sen.��A�Sen.�Sep.��A�Sep.C�September�Sept.��A�Sept.C�September�Shan't��A�ShaC�shall�A�n'tC�not�Shan't've��A�ShaC�shall�A�n'tC�not�A�'veC�have�Shant��A�ShaC�shall�A�ntC�not�Shantve��A�ShaC�shall�A�ntC�not�A�veC�have�Shan’t��A�ShaC�shall�A�n’tC�not�Shan’t’ve��A�ShaC�shall�A�n’tC�not�A�’veC�have�She'd��A�SheC�she�A�'dC�'d�She'd've��A�SheC�she�A�'dC�would�A�'veC�have�She'll��A�SheC�she�A�'llC�will�She'll've��A�SheC�she�A�'llC�will�A�'veC�have�She's��A�SheC�she�A�'sC�'s�Shedve��A�SheC�she�A�dC�would�A�veC�have�Shellve��A�SheC�she�A�llC�will�A�veC�have�Shes��A�SheC�she�A�s�She’d��A�SheC�she�A�’dC�'d�She’d’ve��A�SheC�she�A�’dC�would�A�’veC�have�She’ll��A�SheC�she�A�’llC�will�She’ll’ve��A�SheC�she�A�’llC�will�A�’veC�have�She’s��A�SheC�she�A�’sC�'s�Should've��A�ShouldC�should�A�'ve�Shouldn't��A�ShouldC�should�A�n'tC�not�Shouldn't've��A�ShouldC�should�A�n'tC�not�A�'veC�have�Shouldnt��A�ShouldC�should�A�ntC�not�Shouldntve��A�ShouldC�should�A�ntC�not�A�veC�have�Shouldn’t��A�ShouldC�should�A�n’tC�not�Shouldn’t’ve��A�ShouldC�should�A�n’tC�not�A�’veC�have�Shouldve��A�ShouldC�should�A�ve�Should’ve��A�ShouldC�should�A�’ve�Somethin��A�SomethinC�something�Somethin'��A�Somethin'C�something�Somethin’��A�Somethin’C�something�St.��A�St.�Tenn.��A�Tenn.C�Tennessee�That'd��A�ThatC�that�A�'dC�'d�That'd've��A�ThatC�that�A�'dC�would�A�'veC�have�That'll��A�ThatC�that�A�'llC�will�That'll've��A�ThatC�that�A�'llC�will�A�'veC�have�That's��A�ThatC�that�A�'sC�'s�Thatd��A�ThatC�that�A�dC�'d�Thatdve��A�ThatC�that�A�dC�would�A�veC�have�Thatll��A�ThatC�that�A�llC�will�Thatllve��A�ThatC�that�A�llC�will�A�veC�have�Thats��A�ThatC�that�A�s�That’d��A�ThatC�that�A�’dC�'d�That’d’ve��A�ThatC�that�A�’dC�would�A�’veC�have�That’ll��A�ThatC�that�A�’llC�will�That’ll’ve��A�ThatC�that�A�’llC�will�A�’veC�have�That’s��A�ThatC�that�A�’sC�'s�There'd��A�ThereC�there�A�'dC�'d�There'd've��A�ThereC�there�A�'dC�would�A�'veC�have�There'll��A�ThereC�there�A�'llC�will�There'll've��A�ThereC�there�A�'llC�will�A�'veC�have�There're��A�ThereC�there�A�'reC�are�There's��A�ThereC�there�A�'sC�'s�There've��A�ThereC�there�A�'ve�Thered��A�ThereC�there�A�dC�'d�Theredve��A�ThereC�there�A�dC�would�A�veC�have�Therell��A�ThereC�there�A�llC�will�Therellve��A�ThereC�there�A�llC�will�A�veC�have�Therere��A�ThereC�there�A�reC�are�Theres��A�ThereC�there�A�s�Thereve��A�There�A�veC�have�There’d��A�ThereC�there�A�’dC�'d�There’d’ve��A�ThereC�there�A�’dC�would�A�’veC�have�There’ll��A�ThereC�there�A�’llC�will�There’ll’ve��A�ThereC�there�A�’llC�will�A�’veC�have�There’re��A�ThereC�there�A�’reC�are�There’s��A�ThereC�there�A�’sC�'s�There’ve��A�ThereC�there�A�’ve�These'd��A�TheseC�these�A�'dC�'d�These'd've��A�TheseC�these�A�'dC�would�A�'veC�have�These'll��A�TheseC�these�A�'llC�will�These'll've��A�TheseC�these�A�'llC�will�A�'veC�have�These're��A�TheseC�these�A�'reC�are�These've��A�TheseC�these�A�'ve�Thesed��A�TheseC�these�A�dC�'d�Thesedve��A�TheseC�these�A�dC�would�A�veC�have�Thesell��A�TheseC�these�A�llC�will�Thesellve��A�TheseC�these�A�llC�will�A�veC�have�Thesere��A�TheseC�these�A�reC�are�Theseve��A�These�A�veC�have�These’d��A�TheseC�these�A�’dC�'d�These’d’ve��A�TheseC�these�A�’dC�would�A�’veC�have�These’ll��A�TheseC�these�A�’llC�will�These’ll’ve��A�TheseC�these�A�’llC�will�A�’veC�have�These’re��A�TheseC�these�A�’reC�are�These’ve��A�TheseC�these�A�’ve�They'd��A�TheyC�they�A�'dC�'d�They'd've��A�TheyC�they�A�'dC�would�A�'veC�have�They'll��A�TheyC�they�A�'llC�will�They'll've��A�TheyC�they�A�'llC�will�A�'veC�have�They're��A�TheyC�they�A�'reC�are�They've��A�TheyC�they�A�'veC�have�Theyd��A�TheyC�they�A�dC�'d�Theydve��A�TheyC�they�A�dC�would�A�veC�have�Theyll��A�TheyC�they�A�llC�will�Theyllve��A�TheyC�they�A�llC�will�A�veC�have�Theyre��A�TheyC�they�A�reC�are�Theyve��A�TheyC�they�A�veC�have�They’d��A�TheyC�they�A�’dC�'d�They’d’ve��A�TheyC�they�A�’dC�would�A�’veC�have�They’ll��A�TheyC�they�A�’llC�will�They’ll’ve��A�TheyC�they�A�’llC�will�A�’veC�have�They’re��A�TheyC�they�A�’reC�are�They’ve��A�TheyC�they�A�’veC�have�This'd��A�ThisC�this�A�'dC�'d�This'd've��A�ThisC�this�A�'dC�would�A�'veC�have�This'll��A�ThisC�this�A�'llC�will�This'll've��A�ThisC�this�A�'llC�will�A�'veC�have�This's��A�ThisC�this�A�'sC�'s�Thisd��A�ThisC�this�A�dC�'d�Thisdve��A�ThisC�this�A�dC�would�A�veC�have�Thisll��A�ThisC�this�A�llC�will�Thisllve��A�ThisC�this�A�llC�will�A�veC�have�Thiss��A�ThisC�this�A�s�This’d��A�ThisC�this�A�’dC�'d�This’d’ve��A�ThisC�this�A�’dC�would�A�’veC�have�This’ll��A�ThisC�this�A�’llC�will�This’ll’ve��A�ThisC�this�A�’llC�will�A�’veC�have�This’s��A�ThisC�this�A�’sC�'s�Those'd��A�ThoseC�those�A�'dC�'d�Those'd've��A�ThoseC�those�A�'dC�would�A�'veC�have�Those'll��A�ThoseC�those�A�'llC�will�Those'll've��A�ThoseC�those�A�'llC�will�A�'veC�have�Those're��A�ThoseC�those�A�'reC�are�Those've��A�ThoseC�those�A�'ve�Thosed��A�ThoseC�those�A�dC�'d�Thosedve��A�ThoseC�those�A�dC�would�A�veC�have�Thosell��A�ThoseC�those�A�llC�will�Thosellve��A�ThoseC�those�A�llC�will�A�veC�have�Thosere��A�ThoseC�those�A�reC�are�Thoseve��A�Those�A�veC�have�Those’d��A�ThoseC�those�A�’dC�'d�Those’d’ve��A�ThoseC�those�A�’dC�would�A�’veC�have�Those’ll��A�ThoseC�those�A�’llC�will�Those’ll’ve��A�ThoseC�those�A�’llC�will�A�’veC�have�Those’re��A�ThoseC�those�A�’reC�are�Those’ve��A�ThoseC�those�A�’ve�V.V��A�V.V�V_V��A�V_V�Va.��A�Va.C�Virginia�Wash.��A�Wash.C�Washington�Wasn't��A�WasC�was�A�n'tC�not�Wasnt��A�WasC�was�A�ntC�not�Wasn’t��A�WasC�was�A�n’tC�not�We'd��A�WeC�we�A�'dC�'d�We'd've��A�WeC�we�A�'dC�would�A�'veC�have�We'll��A�WeC�we�A�'llC�will�We'll've��A�WeC�we�A�'llC�will�A�'veC�have�We're��A�WeC�we�A�'reC�are�We've��A�WeC�we�A�'veC�have�Wed��A�WeC�we�A�dC�'d�Wedve��A�WeC�we�A�dC�would�A�veC�have�Wellve��A�WeC�we�A�llC�will�A�veC�have�Weren't��A�WereC�were�A�n'tC�not�Werent��A�WereC�were�A�ntC�not�Weren’t��A�WereC�were�A�n’tC�not�Weve��A�WeC�we�A�veC�have�We’d��A�WeC�we�A�’dC�'d�We’d’ve��A�WeC�we�A�’dC�would�A�’veC�have�We’ll��A�WeC�we�A�’llC�will�We’ll’ve��A�WeC�we�A�’llC�will�A�’veC�have�We’re��A�WeC�we�A�’reC�are�We’ve��A�WeC�we�A�’veC�have�What'd��A�WhatC�what�A�'dC�'d�What'd've��A�WhatC�what�A�'dC�would�A�'veC�have�What'll��A�WhatC�what�A�'llC�will�What'll've��A�WhatC�what�A�'llC�will�A�'veC�have�What're��A�WhatC�what�A�'reC�are�What's��A�WhatC�what�A�'sC�'s�What've��A�WhatC�what�A�'ve�Whatd��A�WhatC�what�A�dC�'d�Whatdve��A�WhatC�what�A�dC�would�A�veC�have�Whatll��A�WhatC�what�A�llC�will�Whatllve��A�WhatC�what�A�llC�will�A�veC�have�Whatre��A�WhatC�what�A�reC�are�Whats��A�WhatC�what�A�s�Whatve��A�What�A�veC�have�What’d��A�WhatC�what�A�’dC�'d�What’d’ve��A�WhatC�what�A�’dC�would�A�’veC�have�What’ll��A�WhatC�what�A�’llC�will�What’ll’ve��A�WhatC�what�A�’llC�will�A�’veC�have�What’re��A�WhatC�what�A�’reC�are�What’s��A�WhatC�what�A�’sC�'s�What’ve��A�WhatC�what�A�’ve�When'd��A�WhenC�when�A�'dC�'d�When'd've��A�WhenC�when�A�'dC�would�A�'veC�have�When'll��A�WhenC�when�A�'llC�will�When'll've��A�WhenC�when�A�'llC�will�A�'veC�have�When're��A�WhenC�when�A�'reC�are�When's��A�WhenC�when�A�'sC�'s�When've��A�WhenC�when�A�'ve�Whend��A�WhenC�when�A�dC�'d�Whendve��A�WhenC�when�A�dC�would�A�veC�have�Whenll��A�WhenC�when�A�llC�will�Whenllve��A�WhenC�when�A�llC�will�A�veC�have�Whenre��A�WhenC�when�A�reC�are�Whens��A�WhenC�when�A�s�Whenve��A�When�A�veC�have�When’d��A�WhenC�when�A�’dC�'d�When’d’ve��A�WhenC�when�A�’dC�would�A�’veC�have�When’ll��A�WhenC�when�A�’llC�will�When’ll’ve��A�WhenC�when�A�’llC�will�A�’veC�have�When’re��A�WhenC�when�A�’reC�are�When’s��A�WhenC�when�A�’sC�'s�When’ve��A�WhenC�when�A�’ve�Where'd��A�WhereC�where�A�'dC�'d�Where'd've��A�WhereC�where�A�'dC�would�A�'veC�have�Where'll��A�WhereC�where�A�'llC�will�Where'll've��A�WhereC�where�A�'llC�will�A�'veC�have�Where're��A�WhereC�where�A�'reC�are�Where's��A�WhereC�where�A�'sC�'s�Where've��A�WhereC�where�A�'ve�Whered��A�WhereC�where�A�dC�'d�Wheredve��A�WhereC�where�A�dC�would�A�veC�have�Wherell��A�WhereC�where�A�llC�will�Wherellve��A�WhereC�where�A�llC�will�A�veC�have�Wherere��A�WhereC�where�A�reC�are�Wheres��A�WhereC�where�A�s�Whereve��A�Where�A�veC�have�Where’d��A�WhereC�where�A�’dC�'d�Where’d’ve��A�WhereC�where�A�’dC�would�A�’veC�have�Where’ll��A�WhereC�where�A�’llC�will�Where’ll’ve��A�WhereC�where�A�’llC�will�A�’veC�have�Where’re��A�WhereC�where�A�’reC�are�Where’s��A�WhereC�where�A�’sC�'s�Where’ve��A�WhereC�where�A�’ve�Who'd��A�WhoC�who�A�'dC�'d�Who'd've��A�WhoC�who�A�'dC�would�A�'veC�have�Who'll��A�WhoC�who�A�'llC�will�Who'll've��A�WhoC�who�A�'llC�will�A�'veC�have�Who're��A�WhoC�who�A�'reC�are�Who's��A�WhoC�who�A�'sC�'s�Who've��A�WhoC�who�A�'ve�Whod��A�WhoC�who�A�dC�'d�Whodve��A�WhoC�who�A�dC�would�A�veC�have�Wholl��A�WhoC�who�A�llC�will�Whollve��A�WhoC�who�A�llC�will�A�veC�have�Whos��A�WhoC�who�A�s�Whove��A�Who�A�veC�have�Who’d��A�WhoC�who�A�’dC�'d�Who’d’ve��A�WhoC�who�A�’dC�would�A�’veC�have�Who’ll��A�WhoC�who�A�’llC�will�Who’ll’ve��A�WhoC�who�A�’llC�will�A�’veC�have�Who’re��A�WhoC�who�A�’reC�are�Who’s��A�WhoC�who�A�’sC�'s�Who’ve��A�WhoC�who�A�’ve�Why'd��A�WhyC�why�A�'dC�'d�Why'd've��A�WhyC�why�A�'dC�would�A�'veC�have�Why'll��A�WhyC�why�A�'llC�will�Why'll've��A�WhyC�why�A�'llC�will�A�'veC�have�Why're��A�WhyC�why�A�'reC�are�Why's��A�WhyC�why�A�'sC�'s�Why've��A�WhyC�why�A�'ve�Whyd��A�WhyC�why�A�dC�'d�Whydve��A�WhyC�why�A�dC�would�A�veC�have�Whyll��A�WhyC�why�A�llC�will�Whyllve��A�WhyC�why�A�llC�will�A�veC�have�Whyre��A�WhyC�why�A�reC�are�Whys��A�WhyC�why�A�s�Whyve��A�Why�A�veC�have�Why’d��A�WhyC�why�A�’dC�'d�Why’d’ve��A�WhyC�why�A�’dC�would�A�’veC�have�Why’ll��A�WhyC�why�A�’llC�will�Why’ll’ve��A�WhyC�why�A�’llC�will�A�’veC�have�Why’re��A�WhyC�why�A�’reC�are�Why’s��A�WhyC�why�A�’sC�'s�Why’ve��A�WhyC�why�A�’ve�Wis.��A�Wis.C�Wisconsin�Won't��A�WoC�will�A�n'tC�not�Won't've��A�WoC�will�A�n'tC�not�A�'veC�have�Wont��A�WoC�will�A�ntC�not�Wontve��A�WoC�will�A�ntC�not�A�veC�have�Won’t��A�WoC�will�A�n’tC�not�Won’t’ve��A�WoC�will�A�n’tC�not�A�’veC�have�Would've��A�WouldC�would�A�'ve�Wouldn't��A�WouldC�would�A�n'tC�not�Wouldn't've��A�WouldC�would�A�n'tC�not�A�'veC�have�Wouldnt��A�WouldC�would�A�ntC�not�Wouldntve��A�WouldC�would�A�ntC�not�A�veC�have�Wouldn’t��A�WouldC�would�A�n’tC�not�Wouldn’t’ve��A�WouldC�would�A�n’tC�not�A�’veC�have�Wouldve��A�WouldC�would�A�ve�Would’ve��A�WouldC�would�A�’ve�XD��A�XD�XDD��A�XDD�You'd��A�YouC�you�A�'dC�'d�You'd've��A�YouC�you�A�'dC�would�A�'veC�have�You'll��A�YouC�you�A�'llC�will�You'll've��A�YouC�you�A�'llC�will�A�'veC�have�You're��A�YouC�you�A�'reC�are�You've��A�YouC�you�A�'veC�have�Youd��A�YouC�you�A�dC�'d�Youdve��A�YouC�you�A�dC�would�A�veC�have�Youll��A�YouC�you�A�llC�will�Youllve��A�YouC�you�A�llC�will�A�veC�have�Youre��A�YouC�you�A�reC�are�Youve��A�YouC�you�A�veC�have�You’d��A�YouC�you�A�’dC�'d�You’d’ve��A�YouC�you�A�’dC�would�A�’veC�have�You’ll��A�YouC�you�A�’llC�will�You’ll’ve��A�YouC�you�A�’llC�will�A�’veC�have�You’re��A�YouC�you�A�’reC�are�You’ve��A�YouC�you�A�’veC�have�[-:��A�[-:�[:��A�[:�[=��A�[=�\")��A�\")�\n��A�\n�\t��A�\t�]=��A�]=�^_^��A�^_^�^__^��A�^__^�^___^��A�^___^�a.��A�a.�a.m.��A�a.m.�ain't��A�ai�A�n'tC�not�aint��A�ai�A�ntC�not�ain’t��A�ai�A�n’tC�not�and/or��A�and/orC�and/or�aren't��A�areC�are�A�n'tC�not�arent��A�areC�are�A�ntC�not�aren’t��A�areC�are�A�n’tC�not�b.��A�b.�c'mon��A�c'mC�come�A�on�c.��A�c.�can't��A�caC�can�A�n'tC�not�can't've��A�caC�can�A�n'tC�not�A�'veC�have�cannot��A�can�A�not�cant��A�caC�can�A�ntC�not�cantve��A�caC�can�A�ntC�not�A�veC�have�can’t��A�caC�can�A�n’tC�not�can’t’ve��A�caC�can�A�n’tC�not�A�’veC�have�co.��A�co.�could've��A�couldC�could�A�'ve�couldn't��A�couldC�could�A�n'tC�not�couldn't've��A�couldC�could�A�n'tC�not�A�'veC�have�couldnt��A�couldC�could�A�ntC�not�couldntve��A�couldC�could�A�ntC�not�A�veC�have�couldn’t��A�couldC�could�A�n’tC�not�couldn’t’ve��A�couldC�could�A�n’tC�not�A�’veC�have�couldve��A�couldC�could�A�ve�could’ve��A�couldC�could�A�’ve�c’mon��A�c’mC�come�A�on�d.��A�d.�daren't��A�dareC�dare�A�n'tC�not�darent��A�dareC�dare�A�ntC�not�daren’t��A�dareC�dare�A�n’tC�not�didn't��A�didC�do�A�n'tC�not�didn't've��A�didC�do�A�n'tC�not�A�'veC�have�didnt��A�didC�do�A�ntC�not�didntve��A�didC�do�A�ntC�not�A�veC�have�didn’t��A�didC�do�A�n’tC�not�didn’t’ve��A�didC�do�A�n’tC�not�A�’veC�have�doesn't��A�doesC�does�A�n'tC�not�doesn't've��A�doesC�does�A�n'tC�not�A�'veC�have�doesnt��A�doesC�does�A�ntC�not�doesntve��A�doesC�does�A�ntC�not�A�veC�have�doesn’t��A�doesC�does�A�n’tC�not�doesn’t’ve��A�doesC�does�A�n’tC�not�A�’veC�have�doin��A�doinC�doing�doin'��A�doin'C�doing�doin’��A�doin’C�doing�don't��A�doC�do�A�n'tC�not�don't've��A�doC�do�A�n'tC�not�A�'veC�have�dont��A�doC�do�A�ntC�not�dontve��A�doC�do�A�ntC�not�A�veC�have�don’t��A�doC�do�A�n’tC�not�don’t’ve��A�doC�do�A�n’tC�not�A�’veC�have�e.��A�e.�e.g.��A�e.g.�em��A�emC�them�f.��A�f.�g.��A�g.�goin��A�goinC�going�goin'��A�goin'C�going�goin’��A�goin’C�going�gonna��A�gonC�going�A�naC�to�gotta��A�got�A�taC�to�h.��A�h.�hadn't��A�hadC�have�A�n'tC�not�hadn't've��A�hadC�have�A�n'tC�not�A�'veC�have�hadnt��A�hadC�have�A�ntC�not�hadntve��A�hadC�have�A�ntC�not�A�veC�have�hadn’t��A�hadC�have�A�n’tC�not�hadn’t’ve��A�hadC�have�A�n’tC�not�A�’veC�have�hasn't��A�hasC�has�A�n'tC�not�hasnt��A�hasC�has�A�ntC�not�hasn’t��A�hasC�has�A�n’tC�not�haven't��A�haveC�have�A�n'tC�not�havent��A�haveC�have�A�ntC�not�haven’t��A�haveC�have�A�n’tC�not�havin��A�havinC�having�havin'��A�havin'C�having�havin’��A�havin’C�having�he'd��A�heC�he�A�'dC�'d�he'd've��A�heC�he�A�'dC�would�A�'veC�have�he'll��A�heC�he�A�'llC�will�he'll've��A�heC�he�A�'llC�will�A�'veC�have�he's��A�heC�he�A�'sC�'s�hed��A�heC�he�A�dC�'d�hedve��A�heC�he�A�dC�would�A�veC�have�hellve��A�heC�he�A�llC�will�A�veC�have�hes��A�heC�he�A�s�he’d��A�heC�he�A�’dC�'d�he’d’ve��A�heC�he�A�’dC�would�A�’veC�have�he’ll��A�heC�he�A�’llC�will�he’ll’ve��A�heC�he�A�’llC�will�A�’veC�have�he’s��A�heC�he�A�’sC�'s�how'd��A�howC�how�A�'dC�'d�how'd've��A�howC�how�A�'dC�would�A�'veC�have�how'd'y��A�how�A�'d�A�'yC�you�how'll��A�howC�how�A�'llC�will�how'll've��A�howC�how�A�'llC�will�A�'veC�have�how're��A�howC�how�A�'reC�are�how's��A�howC�how�A�'sC�'s�how've��A�howC�how�A�'ve�howd��A�howC�how�A�dC�'d�howdve��A�howC�how�A�dC�would�A�veC�have�howll��A�howC�how�A�llC�will�howllve��A�howC�how�A�llC�will�A�veC�have�howre��A�howC�how�A�reC�are�hows��A�howC�how�A�s�howve��A�how�A�veC�have�how’d��A�howC�how�A�’dC�'d�how’d’ve��A�howC�how�A���dC�would�A�’veC�have�how’d’y��A�how�A�’d�A�’yC�you�how’ll��A�howC�how�A�’llC�will�how’ll’ve��A�howC�how�A�’llC�will�A�’veC�have�how’re��A�howC�how�A�’reC�are�how’s��A�howC�how�A�’sC�'s�how’ve��A�howC�how�A�’ve�i'd��A�iC�i�A�'dC�'d�i'd've��A�iC�i�A�'dC�would�A�'veC�have�i'll��A�iC�i�A�'llC�will�i'll've��A�iC�i�A�'llC�will�A�'veC�have�i'm��A�iC�i�A�'mC�am�i'ma��A�iC�i�A�'mC�am�A�aC�gonna�i've��A�iC�i�A�'veC�have�i.��A�i.�i.e.��A�i.e.�id��A�iC�i�A�dC�'d�idve��A�iC�i�A�dC�would�A�veC�have�illve��A�iC�i�A�llC�will�A�veC�have�im��A�iC�i�A�m�ima��A�iC�i�A�mC�am�A�aC�gonna�isn't��A�isC�is�A�n'tC�not�isnt��A�isC�is�A�ntC�not�isn’t��A�isC�is�A�n’tC�not�it'd��A�itC�it�A�'dC�'d�it'd've��A�itC�it�A�'dC�would�A�'veC�have�it'll��A�itC�it�A�'llC�will�it'll've��A�itC�it�A�'llC�will�A�'veC�have�it's��A�itC�it�A�'sC�'s�itd��A�itC�it�A�dC�'d�itdve��A�itC�it�A�dC�would�A�veC�have�itll��A�itC�it�A�llC�will�itllve��A�itC�it�A�llC�will�A�veC�have�it’d��A�itC�it�A�’dC�'d�it’d’ve��A�itC�it�A�’dC�would�A�’veC�have�it’ll��A�itC�it�A�’llC�will�it’ll’ve��A�itC�it�A�’llC�will�A�’veC�have�it’s��A�itC�it�A�’sC�'s�ive��A�iC�i�A�veC�have�i’d��A�iC�i�A�’dC�'d�i’d’ve��A�iC�i�A�’dC�would�A�’veC�have�i’ll��A�iC�i�A�’llC�will�i’ll’ve��A�iC�i�A�’llC�will�A�’veC�have�i’m��A�iC�i�A�’mC�am�i’ma��A�iC�i�A�’mC�am�A�aC�gonna�i’ve��A�iC�i�A�’veC�have�j.��A�j.�k.��A�k.�l.��A�l.�let's��A�let�A�'sC�us�let’s��A�let�A�’sC�us�ll��A�llC�will�lovin��A�lovinC�loving�lovin'��A�lovin'C�loving�lovin’��A�lovin’C�loving�m.��A�m.�ma'am��A�ma'amC�madam�mayn't��A�mayC�may�A�n'tC�not�mayn't've��A�mayC�may�A�n'tC�not�A�'veC�have�maynt��A�mayC�may�A�ntC�not�mayntve��A�mayC�may�A�ntC�not�A�veC�have�mayn’t��A�mayC�may�A�n’tC�not�mayn’t’ve��A�mayC�may�A�n’tC�not�A�’veC�have�ma’am��A�ma’amC�madam�might've��A�mightC�might�A�'ve�mightn't��A�mightC�might�A�n'tC�not�mightn't've��A�mightC�might�A�n'tC�not�A�'veC�have�mightnt��A�mightC�might�A�ntC�not�mightntve��A�mightC�might�A�ntC�not�A�veC�have�mightn’t��A�mightC�might�A�n’tC�not�mightn’t’ve��A�mightC�might�A�n’tC�not�A�’veC�have�mightve��A�mightC�might�A�ve�might’ve��A�mightC�might�A�’ve�must've��A�mustC�must�A�'ve�mustn't��A�mustC�must�A�n'tC�not�mustn't've��A�mustC�must�A�n'tC�not�A�'veC�have�mustnt��A�mustC�must�A�ntC�not�mustntve��A�mustC�must�A�ntC�not�A�veC�have�mustn’t��A�mustC�must�A�n’tC�not�mustn’t’ve��A�mustC�must�A�n’tC�not�A�’veC�have�mustve��A�mustC�must�A�ve�must’ve��A�mustC�must�A�’ve�n.��A�n.�needn't��A�needC�need�A�n'tC�not�needn't've��A�needC�need�A�n'tC�not�A�'veC�have�neednt��A�needC�need�A�ntC�not�needntve��A�needC�need�A�ntC�not�A�veC�have�needn’t��A�needC�need�A�n’tC�not�needn’t’ve��A�needC�need�A�n’tC�not�A�’veC�have�not've��A�not�A�'veC�have�nothin��A�nothinC�nothing�nothin'��A�nothin'C�nothing�nothin’��A�nothin’C�nothing�notve��A�not�A�veC�have�not’ve��A�not�A�’veC�have�nuff��A�nuffC�enough�nuthin��A�nuthinC�nothing�nuthin'��A�nuthin'C�nothing�nuthin’��A�nuthin’C�nothing�o'clock��A�o'clockC�o'clock�o.��A�o.�o.0��A�o.0�o.O��A�o.O�o.o��A�o.o�o_0��A�o_0�o_O��A�o_O�o_o��A�o_o�ol��A�olC�old�ol'��A�ol'C�old�ol’��A�ol’C�old�oughtn't��A�oughtC�ought�A�n'tC�not�oughtn't've��A�oughtC�ought�A�n'tC�not�A�'veC�have�oughtnt��A�oughtC�ought�A�ntC�not�oughtntve��A�oughtC�ought�A�ntC�not�A�veC�have�oughtn’t��A�oughtC�ought�A�n’tC�not�oughtn’t’ve��A�oughtC�ought�A�n’tC�not�A�’veC�have�o’clock��A�o’clockC�o'clock�p.��A�p.�p.m.��A�p.m.�q.��A�q.�r.��A�r.�s.��A�s.�shan't��A�shaC�shall�A�n'tC�not�shan't've��A�shaC�shall�A�n'tC�not�A�'veC�have�shant��A�shaC�shall�A�ntC�not�shantve��A�shaC�shall�A�ntC�not�A�veC�have�shan’t��A�shaC�shall�A�n’tC�not�shan’t’ve��A�shaC�shall�A�n’tC�not�A�’veC�have�she'd��A�sheC�she�A�'dC�'d�she'd've��A�sheC�she�A�'dC�would�A�'veC�have�she'll��A�sheC�she�A�'llC�will�she'll've��A�sheC�she�A�'llC�will�A�'veC�have�she's��A�sheC�she�A�'sC�'s�shedve��A�sheC�she�A�dC�would�A�veC�have�shellve��A�sheC�she�A�llC�will�A�veC�have�shes��A�sheC�she�A�s�she’d��A�sheC�she�A�’dC�'d�she’d’ve��A�sheC�she�A�’dC�would�A�’veC�have�she’ll��A�sheC�she�A�’llC�will�she’ll’ve��A�sheC�she�A�’llC�will�A�’veC�have�she’s��A�sheC�she�A�’sC�'s�should've��A�shouldC�should�A�'ve�shouldn't��A�shouldC�should�A�n'tC�not�shouldn't've��A�shouldC�should�A�n'tC�not�A�'veC�have�shouldnt��A�shouldC�should�A�ntC�not�shouldntve��A�shouldC�should�A�ntC�not�A�veC�have�shouldn’t��A�shouldC�should�A�n’tC�not�shouldn’t’ve��A�shouldC�should�A�n’tC�not�A�’veC�have�shouldve��A�shouldC�should�A�ve�should’ve��A�shouldC�should�A�’ve�somethin��A�somethinC�something�somethin'��A�somethin'C�something�somethin’��A�somethin’C�something�t.��A�t.�that'd��A�thatC�that�A�'dC�'d�that'd've��A�thatC�that�A�'dC�would�A�'veC�have�that'll��A�thatC�that�A�'llC�will�that'll've��A�thatC�that�A�'llC�will�A�'veC�have�that's��A�thatC�that�A�'sC�'s�thatd��A�thatC�that�A�dC�'d�thatdve��A�thatC�that�A�dC�would�A�veC�have�thatll��A�thatC�that�A�llC�will�thatllve��A�thatC�that�A�llC�will�A�veC�have�thats��A�thatC�that�A�s�that’d��A�thatC�that�A�’dC�'d�that’d’ve��A�thatC�that�A�’dC�would�A�’veC�have�that’ll��A�thatC�that�A�’llC�will�that’ll’ve��A�thatC�that�A�’llC�will�A�’veC�have�that’s��A�thatC�that�A�’sC�'s�there'd��A�thereC�there�A�'dC�'d�there'd've��A�thereC�there�A�'dC�would�A�'veC�have�there'll��A�thereC�there�A�'llC�will�there'll've��A�thereC�there�A�'llC�will�A�'veC�have�there're��A�thereC�there�A�'reC�are�there's��A�thereC�there�A�'sC�'s�there've��A�thereC�there�A�'ve�thered��A�thereC�there�A�dC�'d�theredve��A�thereC�there�A�dC�would�A�veC�have�therell��A�thereC�there�A�llC�will�therellve��A�thereC�there�A�llC�will�A�veC�have�therere��A�thereC�there�A�reC�are�theres��A�thereC�there�A�s�thereve��A�there�A�veC�have�there’d��A�thereC�there�A�’dC�'d�there’d’ve��A�thereC�there�A�’dC�would�A�’veC�have�there’ll��A�thereC�there�A�’llC�will�there’ll’ve��A�thereC�there�A�’llC�will�A�’veC�have�there’re��A�thereC�there�A�’reC�are�there’s��A�thereC�there�A�’sC�'s�there’ve��A�thereC�there�A�’ve�these'd��A�theseC�these�A�'dC�'d�these'd've��A�theseC�these�A�'dC�would�A�'veC�have�these'll��A�theseC�these�A�'llC�will�these'll've��A�theseC�these�A�'llC�will�A�'veC�have�these're��A�theseC�these�A�'reC�are�these've��A�theseC�these�A�'ve�thesed��A�theseC�these�A�dC�'d�thesedve��A�theseC�these�A�dC�would�A�veC�have�thesell��A�theseC�these�A�llC�will�thesellve��A�theseC�these�A�llC�will�A�veC�have�thesere��A�theseC�these�A�reC�are�theseve��A�these�A�veC�have�these’d��A�theseC�these�A�’dC�'d�these’d’ve��A�theseC�these�A�’dC�would�A�’veC�have�these’ll��A�theseC�these�A�’llC�will�these’ll’ve��A�theseC�these�A�’llC�will�A�’veC�have�these’re��A�theseC�these�A�’reC�are�these’ve��A�theseC�these�A�’ve�they'd��A�theyC�they�A�'dC�'d�they'd've��A�theyC�they�A�'dC�would�A�'veC�have�they'll��A�theyC�they�A�'llC�will�they'll've��A�theyC�they�A�'llC�will�A�'veC�have�they're��A�theyC�they�A�'reC�are�they've��A�theyC�they�A�'veC�have�theyd��A�theyC�they�A�dC�'d�theydve��A�theyC�they�A�dC�would�A�veC�have�theyll��A�theyC�they�A�llC�will�theyllve��A�theyC�they�A�llC�will�A�veC�have�theyre��A�theyC�they�A�reC�are�theyve��A�theyC�they�A�veC�have�they’d��A�theyC�they�A�’dC�'d�they’d’ve��A�theyC�they�A�’dC�would�A�’veC�have�they’ll��A�theyC�they�A�’llC�will�they’ll’ve��A�theyC�they�A�’llC�will�A�’veC�have�they’re��A�theyC�they�A�’reC�are�they’ve��A�theyC�they�A�’veC�have�this'd��A�thisC�this�A�'dC�'d�this'd've��A�thisC�this�A�'dC�would�A�'veC�have�this'll��A�thisC�this�A�'llC�will�this'll've��A�thisC�this�A�'llC�will�A�'veC�have�this's��A�thisC�this�A�'sC�'s�thisd��A�thisC�this�A�dC�'d�thisdve��A�thisC�this�A�dC�would�A�veC�have�thisll��A�thisC�this�A�llC�will�thisllve��A�thisC�this�A�llC�will�A�veC�have�thiss��A�thisC�this�A�s�this’d��A�thisC�this�A�’dC�'d�this’d’ve��A�thisC�this�A�’dC�would�A�’veC�have�this’ll��A�thisC�this�A�’llC�will�this’ll’ve��A�thisC�this�A�’llC�will�A�’veC�have�this’s��A�thisC�this�A�’sC�'s�those'd��A�thoseC�those�A�'dC�'d�those'd've��A�thoseC�those�A�'dC�would�A�'veC�have�those'll��A�thoseC�those�A�'llC�will�those'll've��A�thoseC�those�A�'llC�will�A�'veC�have�those're��A�thoseC�those�A�'reC�are�those've��A�thoseC�those�A�'ve�thosed��A�thoseC�those�A�dC�'d�thosedve��A�thoseC�those�A�dC�would�A�veC�have�thosell��A�thoseC�those�A�llC�will�thosellve��A�thoseC�those�A�llC�will�A�veC�have�thosere��A�thoseC�those�A�reC�are�thoseve��A�those�A�veC�have�those’d��A�thoseC�those�A�’dC�'d�those’d’ve��A�thoseC�those�A�’dC�would�A�’veC�have�those’ll��A�thoseC�those�A�’llC�will�those’ll’ve��A�thoseC�those�A�’llC�will�A�’veC�have�those’re��A�thoseC�those�A�’reC�are�those’ve��A�thoseC�those�A�’ve�u.��A�u.�v.��A�v.�v.s.��A�v.s.�v.v��A�v.v�v_v��A�v_v�vs.��A�vs.�w.��A�w.�w/o��A�w/oC�without�wasn't��A�wasC�was�A�n'tC�not�wasnt��A�wasC�was�A�ntC�not�wasn’t��A�wasC�was�A�n’tC�not�we'd��A�weC�we�A�'dC�'d�we'd've��A�weC�we�A�'dC�would�A�'veC�have�we'll��A�weC�we�A�'llC�will�we'll've��A�weC�we�A�'llC�will�A�'veC�have�we're��A�weC�we�A�'reC�are�we've��A�weC�we�A�'veC�have�wed��A�weC�we�A�dC�'d�wedve��A�weC�we�A�dC�would�A�veC�have�wellve��A�weC�we�A�llC�will�A�veC�have�weren't��A�wereC�were�A�n'tC�not�werent��A�wereC�were�A�ntC�not�weren’t��A�wereC�were�A�n’tC�not�weve��A�weC�we�A�veC�have�we’d��A�weC�we�A�’dC�'d�we’d’ve��A�weC�we�A�’dC�would�A�’veC�have�we’ll��A�weC�we�A�’llC�will�we’ll’ve��A�weC�we�A�’llC�will�A�’veC�have�we’re��A�weC�we�A�’reC�are�we’ve��A�weC�we�A�’veC�have�what'd��A�whatC�what�A�'dC�'d�what'd've��A�whatC�what�A�'dC�would�A�'veC�have�what'll��A�whatC�what�A�'llC�will�what'll've��A�whatC�what�A�'llC�will�A�'veC�have�what're��A�whatC�what�A�'reC�are�what's��A�whatC�what�A�'sC�'s�what've��A�whatC�what�A�'ve�whatd��A�whatC�what�A�dC�'d�whatdve��A�whatC�what�A�dC�would�A�veC�have�whatll��A�whatC�what�A�llC�will�whatllve��A�whatC�what�A�llC�will�A�veC�have�whatre��A�whatC�what�A�reC�are�whats��A�whatC�what�A�s�whatve��A�what�A�veC�have�what’d��A�whatC�what�A�’dC�'d�what’d’ve��A�whatC�what�A�’dC�would�A�’veC�have�what’ll��A�whatC�what�A�’llC�will�what’ll’ve��A�whatC�what�A�’llC�will�A�’veC�have�what’re��A�whatC�what�A�’reC�are�what’s��A�whatC�what�A�’sC�'s�what’ve��A�whatC�what�A�’ve�when'd��A�whenC�when�A�'dC�'d�when'd've��A�whenC�when�A�'dC�would�A�'veC�have�when'll��A�whenC�when�A�'llC�will�when'll've��A�whenC�when�A�'llC�will�A�'veC�have�when're��A�whenC�when�A�'reC�are�when's��A�whenC�when�A�'sC�'s�when've��A�whenC�when�A�'ve�whend��A�whenC�when�A�dC�'d�whendve��A�whenC�when�A�dC�would�A�veC�have�whenll��A�whenC�when�A�llC�will�whenllve��A�whenC�when�A�llC�will�A�veC�have�whenre��A�whenC�when�A�reC�are�whens��A�whenC�when�A�s�whenve��A�when�A�veC�have�when’d��A�whenC�when�A�’dC�'d�when’d’ve��A�whenC�when�A�’dC�would�A�’veC�have�when’ll��A�whenC�when�A�’llC�will�when’ll’ve��A�whenC�when�A�’llC�will�A�’veC�have�when’re��A�whenC�when�A�’reC�are�when’s��A�whenC�when�A�’sC�'s�when’ve��A�whenC�when�A�’ve�where'd��A�whereC�where�A�'dC�'d�where'd've��A�whereC�where�A�'dC�would�A�'veC�have�where'll��A�whereC�where�A�'llC�will�where'll've��A�whereC�where�A�'llC�will�A�'veC�have�where're��A�whereC�where�A�'reC�are�where's��A�whereC�where�A�'sC�'s�where've��A�whereC�where�A�'ve�whered��A�whereC�where�A�dC�'d�wheredve��A�whereC�where�A�dC�would�A�veC�have�wherell��A�whereC�where�A�llC�will�wherellve��A�whereC�where�A�llC�will�A�veC�have�wherere��A�whereC�where�A�reC�are�wheres��A�whereC�where�A�s�whereve��A�where�A�veC�have�where’d��A�whereC�where�A�’dC�'d�where’d’ve��A�whereC�where�A�’dC�would�A�’veC�have�where’ll��A�whereC�where�A�’llC�will�where’ll’ve��A�whereC�where�A�’llC�will�A�’veC�have�where’re��A�whereC�where�A�’reC�are�where’s��A�whereC�where�A�’sC�'s�where’ve��A�whereC�where�A�’ve�who'd��A�whoC�who�A�'dC�'d�who'd've��A�whoC�who�A�'dC�would�A�'veC�have�who'll��A�whoC�who�A�'llC�will�who'll've��A�whoC�who�A�'llC�will�A�'veC�have�who're��A�whoC�who�A�'reC�are�who's��A�whoC�who�A�'sC�'s�who've��A�whoC�who�A�'ve�whod��A�whoC�who�A�dC�'d�whodve��A�whoC�who�A�dC�would�A�veC�have�wholl��A�whoC�who�A�llC�will�whollve��A�whoC�who�A�llC�will�A�veC�have�whos��A�whoC�who�A�s�whove��A�who�A�veC�have�who’d��A�whoC�who�A�’dC�'d�who’d’ve��A�whoC�who�A�’dC�would�A�’veC�have�who’ll��A�whoC�who�A�’llC�will�who’ll’ve��A�whoC�who�A�’llC�will�A�’veC�have�who’re��A�whoC�who�A�’reC�are�who’s��A�whoC�who�A�’sC�'s�who’ve��A�whoC�who�A�’ve�why'd��A�whyC�why�A�'dC�'d�why'd've��A�whyC�why�A�'dC�would�A�'veC�have�why'll��A�whyC�why�A�'llC�will�why'll've��A�whyC�why�A�'llC�will�A�'veC�have�why're��A�whyC�why�A�'reC�are�why's��A�whyC�why�A�'sC�'s�why've��A�whyC�why�A�'ve�whyd��A�whyC�why�A�dC�'d�whydve��A�whyC�why�A�dC�would�A�veC�have�whyll��A�whyC�why�A�llC�will�whyllve��A�whyC�why�A�llC�will�A�veC�have�whyre��A�whyC�why�A�reC�are�whys��A�whyC�why�A�s�whyve��A�why�A�veC�have�why’d��A�whyC�why�A�’dC�'d�why’d’ve��A�whyC�why�A�’dC�would�A�’veC�have�why’ll��A�whyC�why�A�’llC�will�why’ll’ve��A�whyC�why�A�’llC�will�A�’veC�have�why’re��A�whyC�why�A�’reC�are�why’s��A�whyC�why�A�’sC�'s�why’ve��A�whyC�why�A�’ve�won't��A�woC�will�A�n'tC�not�won't've��A�woC�will�A�n'tC�not�A�'veC�have�wont��A�woC�will�A�ntC�not�wontve��A�woC�will�A�ntC�not�A�veC�have�won’t��A�woC�will�A�n’tC�not�won’t’ve��A�woC�will�A�n’tC�not�A�’veC�have�would've��A�wouldC�would�A�'ve�wouldn't��A�wouldC�would�A�n'tC�not�wouldn't've��A�wouldC�would�A�n'tC�not�A�'veC�have�wouldnt��A�wouldC�would�A�ntC�not�wouldntve��A�wouldC�would�A�ntC�not�A�veC�have�wouldn’t��A�wouldC�would�A�n’tC�not�wouldn’t’ve��A�wouldC�would�A�n’tC�not�A�’veC�have�wouldve��A�wouldC�would�A�ve�would’ve��A�wouldC�would�A�’ve�x.��A�x.�xD��A�xD�xDD��A�xDD�y'all��A�y'C�you�A�all�y.��A�y.�yall��A�yC�you�A�all�you'd��A�youC�you�A�'dC�'d�you'd've��A�youC�you�A�'dC�would�A�'veC�have�you'll��A�youC�you�A�'llC�will�you'll've��A�youC�you�A�'llC�will�A�'veC�have�you're��A�youC�you�A�'reC�are�you've��A�youC�you�A�'veC�have�youd��A�youC�you�A�dC�'d�youdve��A�youC�you�A�dC�would�A�veC�have�youll��A�youC�you�A�llC�will�youllve��A�youC�you�A�llC�will�A�veC�have�youre��A�youC�you�A�reC�are�youve��A�youC�you�A�veC�have�you’d��A�youC�you�A�’dC�'d�you’d’ve��A�youC�you�A�’dC�would�A�’veC�have�you’ll��A�youC�you�A�’llC�will�you’ll’ve��A�youC�you�A�’llC�will�A�’veC�have�you’re��A�youC�you�A�’reC�are�you’ve��A�youC�you�A�’veC�have�y’all��A�y’C�you�A�all�z.��A�z.� ��A� C� �¯\(ツ)/¯��A�¯\(ツ)/¯�°C.��A�°�A�C�A�.�°F.��A�°�A�F�A�.�°K.��A�°�A�K�A�.�°c.��A�°�A�c�A�.�°f.��A�°�A�f�A�.�°k.��A�°�A�k�A�.�ä.��A�ä.�ö.��A�ö.�ü.��A�ü.�ಠ_ಠ��A�ಠ_ಠ�ಠ︵ಠ��A�ಠ︵ಠ�—��A�—�‘S��A�‘SC�'s�‘s��A�‘sC�'s�’��A�’�’Cause��A�’CauseC�because�’Cos��A�’CosC�because�’Coz��A�’CozC�because�’Cuz��A�’CuzC�because�’S��A�’SC�'s�’bout��A�’boutC�about�’cause��A�’causeC�because�’cos��A�’cosC�because�’coz��A�’cozC�because�’cuz��A�’cuzC�because�’d��A�’d�’em��A�’emC�them�’ll��A�’llC�will�’nuff��A�’nuffC�enough�’re��A�’reC�are�’s��A�’sC�'s�’’��A�’’�faster_heuristics�
vocab/key2row ADDED
@@ -0,0 +1 @@
 
 
1
+
vocab/lookups.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:76be8b528d0075f7aae98d6fa57a6d3c83ae480a8469e668d7b0af968995ac71
3
+ size 1
vocab/strings.json ADDED
@@ -0,0 +1,2585 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ "\t",
3
+ "\n",
4
+ " ",
5
+ " ",
6
+ "\"",
7
+ "&CK",
8
+ "&ck",
9
+ "'",
10
+ "''",
11
+ "'-(",
12
+ "'-)",
13
+ "'Cause",
14
+ "'Cos",
15
+ "'Coz",
16
+ "'Cuz",
17
+ "'S",
18
+ "'X",
19
+ "'Xxx",
20
+ "'Xxxxx",
21
+ "'am",
22
+ "'bout",
23
+ "'cause",
24
+ "'cos",
25
+ "'coz",
26
+ "'cuz",
27
+ "'d",
28
+ "'em",
29
+ "'ll",
30
+ "'m",
31
+ "'nuff",
32
+ "'re",
33
+ "'s",
34
+ "'ve",
35
+ "'x",
36
+ "'xx",
37
+ "'xxx",
38
+ "'xxxx",
39
+ "'y",
40
+ "(",
41
+ "(((",
42
+ "(*>",
43
+ "(*_*)",
44
+ "(-8",
45
+ "(-:",
46
+ "(-;",
47
+ "(-_-)",
48
+ "(-d",
49
+ "(._.)",
50
+ "(:",
51
+ "(;",
52
+ "(=",
53
+ "(>_<)",
54
+ "(^_^)",
55
+ "(o:",
56
+ "(x:",
57
+ "(x_x)",
58
+ "(\u00ac_\u00ac)",
59
+ "(\u0ca0_\u0ca0)",
60
+ "(\u256f\u00b0\u25a1\u00b0\uff09\u256f\ufe35\u253b\u2501\u253b",
61
+ ")",
62
+ ")))",
63
+ ")-:",
64
+ ")/\u00af",
65
+ "):",
66
+ "*",
67
+ "+",
68
+ ",",
69
+ "-",
70
+ "-((",
71
+ "-))",
72
+ "-/",
73
+ "-0",
74
+ "-3",
75
+ "-8",
76
+ "-D",
77
+ "-O",
78
+ "-P",
79
+ "-X",
80
+ "-_-",
81
+ "-__-",
82
+ "-d",
83
+ "-o",
84
+ "-p",
85
+ "-x",
86
+ "-|",
87
+ ".",
88
+ ".C.",
89
+ ".D.",
90
+ ".E.",
91
+ ".G.",
92
+ ".H.",
93
+ ".J.",
94
+ ".M.",
95
+ ".Y.",
96
+ "._.",
97
+ ".e.",
98
+ ".g.",
99
+ ".m.",
100
+ ".s.",
101
+ "/",
102
+ "/3",
103
+ "/d",
104
+ "/or",
105
+ "0",
106
+ "0.0",
107
+ "0.o",
108
+ "000",
109
+ "0000",
110
+ "0001",
111
+ "0002",
112
+ "001",
113
+ "002",
114
+ "012",
115
+ "017",
116
+ "018",
117
+ "019",
118
+ "020",
119
+ "021",
120
+ "022",
121
+ "023",
122
+ "024",
123
+ "026",
124
+ "0_0",
125
+ "0_o",
126
+ "1",
127
+ "10",
128
+ "10a.m",
129
+ "10a.m.",
130
+ "10p.m",
131
+ "10p.m.",
132
+ "11",
133
+ "111",
134
+ "1111",
135
+ "11a.m",
136
+ "11a.m.",
137
+ "11p.m",
138
+ "11p.m.",
139
+ "12",
140
+ "1234",
141
+ "12345",
142
+ "12a.m",
143
+ "12a.m.",
144
+ "12p.m",
145
+ "12p.m.",
146
+ "15",
147
+ "171",
148
+ "1a.m",
149
+ "1a.m.",
150
+ "1p.m",
151
+ "1p.m.",
152
+ "2",
153
+ "2019",
154
+ "2026",
155
+ "222",
156
+ "2222",
157
+ "234",
158
+ "27001",
159
+ "27002",
160
+ "27017",
161
+ "27018",
162
+ "2a.m",
163
+ "2a.m.",
164
+ "2p.m",
165
+ "2p.m.",
166
+ "3",
167
+ "321",
168
+ "33",
169
+ "333",
170
+ "3333",
171
+ "345",
172
+ "3a.m",
173
+ "3a.m.",
174
+ "3p.m",
175
+ "3p.m.",
176
+ "4",
177
+ "42",
178
+ "444",
179
+ "4444",
180
+ "4a.m",
181
+ "4a.m.",
182
+ "4p.m",
183
+ "4p.m.",
184
+ "5",
185
+ "500",
186
+ "53",
187
+ "54321",
188
+ "555",
189
+ "5555",
190
+ "5678",
191
+ "5a.m",
192
+ "5a.m.",
193
+ "5p.m",
194
+ "5p.m.",
195
+ "6",
196
+ "666",
197
+ "6666",
198
+ "678",
199
+ "6a.m",
200
+ "6a.m.",
201
+ "6p.m",
202
+ "6p.m.",
203
+ "7",
204
+ "777",
205
+ "7777",
206
+ "7a.m",
207
+ "7a.m.",
208
+ "7p.m",
209
+ "7p.m.",
210
+ "8",
211
+ "8)",
212
+ "8-",
213
+ "8-)",
214
+ "8-D",
215
+ "8-d",
216
+ "800",
217
+ "888",
218
+ "8888",
219
+ "8D",
220
+ "8a.m",
221
+ "8a.m.",
222
+ "8d",
223
+ "8p.m",
224
+ "8p.m.",
225
+ "9",
226
+ "9012",
227
+ "999",
228
+ "9999",
229
+ "99999",
230
+ "9a.m",
231
+ "9a.m.",
232
+ "9p.m",
233
+ "9p.m.",
234
+ ":",
235
+ ":'(",
236
+ ":')",
237
+ ":'-(",
238
+ ":'-)",
239
+ ":(",
240
+ ":((",
241
+ ":(((",
242
+ ":()",
243
+ ":)",
244
+ ":))",
245
+ ":)))",
246
+ ":*",
247
+ ":-(",
248
+ ":-((",
249
+ ":-(((",
250
+ ":-)",
251
+ ":-))",
252
+ ":-)))",
253
+ ":-*",
254
+ ":-/",
255
+ ":-0",
256
+ ":-3",
257
+ ":->",
258
+ ":-D",
259
+ ":-O",
260
+ ":-P",
261
+ ":-X",
262
+ ":-]",
263
+ ":-d",
264
+ ":-o",
265
+ ":-p",
266
+ ":-x",
267
+ ":-|",
268
+ ":-}",
269
+ ":/",
270
+ ":0",
271
+ ":1",
272
+ ":3",
273
+ ":>",
274
+ ":D",
275
+ ":O",
276
+ ":P",
277
+ ":X",
278
+ ":]",
279
+ ":d",
280
+ ":o",
281
+ ":o)",
282
+ ":p",
283
+ ":x",
284
+ ":x)",
285
+ ":|",
286
+ ":}",
287
+ ":\u2019(",
288
+ ":\u2019)",
289
+ ":\u2019-(",
290
+ ":\u2019-)",
291
+ ";",
292
+ ";)",
293
+ ";-)",
294
+ ";-D",
295
+ ";-X",
296
+ ";-d",
297
+ ";D",
298
+ ";X",
299
+ ";_;",
300
+ ";d",
301
+ "<",
302
+ "<.<",
303
+ "</3",
304
+ "</d",
305
+ "<3",
306
+ "<33",
307
+ "<333",
308
+ "<d",
309
+ "<dd",
310
+ "<ddd",
311
+ "<space>",
312
+ "<xxxx>",
313
+ "=",
314
+ "=(",
315
+ "=)",
316
+ "=/",
317
+ "=3",
318
+ "=D",
319
+ "=X",
320
+ "=[",
321
+ "=]",
322
+ "=d",
323
+ "=|",
324
+ ">",
325
+ ">.<",
326
+ ">.>",
327
+ ">:(",
328
+ ">:o",
329
+ ">:x",
330
+ "><(((*>",
331
+ "@",
332
+ "@_@",
333
+ "A",
334
+ "ACRONYM",
335
+ "AIN",
336
+ "API",
337
+ "APT",
338
+ "APT28",
339
+ "APT29",
340
+ "ASB",
341
+ "ASP",
342
+ "ATT&CK",
343
+ "ATTACK_TECHNIQUE",
344
+ "AUDIT_TERM",
345
+ "Access",
346
+ "Accountability",
347
+ "Act",
348
+ "Adm",
349
+ "Adm.",
350
+ "Adopting",
351
+ "Advanced",
352
+ "Ai",
353
+ "Ak",
354
+ "Ak.",
355
+ "Ala",
356
+ "Ala.",
357
+ "Alabama",
358
+ "Alaska",
359
+ "Alto",
360
+ "Analysis",
361
+ "Analyst",
362
+ "Analyzing",
363
+ "Annual",
364
+ "Ansible",
365
+ "Application",
366
+ "Applied",
367
+ "Apr",
368
+ "Apr.",
369
+ "April",
370
+ "Architect",
371
+ "Are",
372
+ "Ariz",
373
+ "Ariz.",
374
+ "Arizona",
375
+ "Ark",
376
+ "Ark.",
377
+ "Arkansas",
378
+ "Assessment",
379
+ "Audit",
380
+ "Aug",
381
+ "Aug.",
382
+ "August",
383
+ "Automation",
384
+ "B",
385
+ "BIT",
386
+ "BSA",
387
+ "Baseline",
388
+ "Benchmarks",
389
+ "Binary",
390
+ "Bliley",
391
+ "Blue",
392
+ "Both",
393
+ "Botnet",
394
+ "Bros",
395
+ "Bros.",
396
+ "Brute",
397
+ "Buffer",
398
+ "Burp",
399
+ "C",
400
+ "C'm",
401
+ "C++",
402
+ "C.",
403
+ "CASB",
404
+ "CCPA",
405
+ "CEH",
406
+ "CERT",
407
+ "CERTIFICATION",
408
+ "CIA",
409
+ "CIH",
410
+ "CIS",
411
+ "CISM",
412
+ "CISO",
413
+ "CISSP",
414
+ "CMMI",
415
+ "COBIT",
416
+ "COPPA",
417
+ "CPA",
418
+ "CSF",
419
+ "CSIRT",
420
+ "CSRF",
421
+ "CVE",
422
+ "CVE-2020",
423
+ "CVE-2021",
424
+ "CVE-2022",
425
+ "CVE-2023",
426
+ "CVE-2024",
427
+ "Ca",
428
+ "Calif",
429
+ "Calif.",
430
+ "California",
431
+ "Can",
432
+ "Card",
433
+ "Cause",
434
+ "Ceh",
435
+ "Certifications",
436
+ "Certified",
437
+ "Check",
438
+ "Chief",
439
+ "Cism",
440
+ "Ciso",
441
+ "Cissp",
442
+ "Cloud",
443
+ "Co",
444
+ "Co.",
445
+ "Code",
446
+ "Colo",
447
+ "Colo.",
448
+ "Colorado",
449
+ "Command",
450
+ "CompTIA",
451
+ "Compliance",
452
+ "Comprehensive",
453
+ "Computer",
454
+ "Conducted",
455
+ "Configuration",
456
+ "Configured",
457
+ "Conn",
458
+ "Conn.",
459
+ "Connecticut",
460
+ "Consultant",
461
+ "Consumer",
462
+ "Control",
463
+ "Controls",
464
+ "Corp",
465
+ "Corp.",
466
+ "Cos",
467
+ "Could",
468
+ "Coz",
469
+ "Critical",
470
+ "Cross",
471
+ "CrowdStrike",
472
+ "Cry",
473
+ "Cryptanalysis",
474
+ "Cuz",
475
+ "Cybersecurity",
476
+ "C\u2019m",
477
+ "D",
478
+ "D.",
479
+ "D.C.",
480
+ "DAP",
481
+ "DDoS",
482
+ "DLP",
483
+ "DPR",
484
+ "DSS",
485
+ "Dare",
486
+ "Data",
487
+ "Dec",
488
+ "Dec.",
489
+ "December",
490
+ "Dedicated",
491
+ "Defender",
492
+ "Defending",
493
+ "Del",
494
+ "Del.",
495
+ "Delaware",
496
+ "Denial",
497
+ "Detected",
498
+ "Development",
499
+ "Did",
500
+ "Digital",
501
+ "Diligence",
502
+ "Directory",
503
+ "Do",
504
+ "DoS",
505
+ "Does",
506
+ "Doin",
507
+ "Doin'",
508
+ "Doin\u2019",
509
+ "Dr",
510
+ "Dr.",
511
+ "Due",
512
+ "E",
513
+ "E.G.",
514
+ "E.g",
515
+ "E.g.",
516
+ "EDR",
517
+ "ERM",
518
+ "ERT",
519
+ "Endpoint",
520
+ "Engineer",
521
+ "Engineering",
522
+ "Ensuring",
523
+ "Essentials",
524
+ "Ethical",
525
+ "Evaluating",
526
+ "Evaluation",
527
+ "Experience",
528
+ "Expert",
529
+ "Exploit",
530
+ "External",
531
+ "F",
532
+ "F.",
533
+ "FERPA",
534
+ "FISMA",
535
+ "FRAMEWORK",
536
+ "Falcon",
537
+ "Feb",
538
+ "Feb.",
539
+ "February",
540
+ "File",
541
+ "Fixed",
542
+ "Fla",
543
+ "Fla.",
544
+ "Florida",
545
+ "Focus",
546
+ "Following",
547
+ "Forensics",
548
+ "Format",
549
+ "FortiGate",
550
+ "Fortinet",
551
+ "Fortune",
552
+ "Framework",
553
+ "G",
554
+ "GAF",
555
+ "GCIA",
556
+ "GCIH",
557
+ "GDPR",
558
+ "GFW",
559
+ "GIAC",
560
+ "GLBA",
561
+ "GPEN",
562
+ "GSEC",
563
+ "Ga",
564
+ "Ga.",
565
+ "Gap",
566
+ "Gen",
567
+ "Gen.",
568
+ "General",
569
+ "Georgia",
570
+ "Goin",
571
+ "Goin'",
572
+ "Goin\u2019",
573
+ "Gon",
574
+ "Got",
575
+ "Gov",
576
+ "Gov.",
577
+ "Gramm",
578
+ "H",
579
+ "HIPAA",
580
+ "Hacker",
581
+ "Hacking",
582
+ "Had",
583
+ "Handler",
584
+ "Handling",
585
+ "Has",
586
+ "Have",
587
+ "Havin",
588
+ "Havin'",
589
+ "Havin\u2019",
590
+ "He",
591
+ "He's",
592
+ "Health",
593
+ "Heap",
594
+ "He\u2019s",
595
+ "High",
596
+ "Hiring",
597
+ "Holds",
598
+ "How",
599
+ "How's",
600
+ "How\u2019s",
601
+ "Hunter",
602
+ "Hunting",
603
+ "I",
604
+ "I.E.",
605
+ "I.e",
606
+ "I.e.",
607
+ "IAC",
608
+ "IAM",
609
+ "IBM",
610
+ "ICS",
611
+ "IDA",
612
+ "IDS",
613
+ "IEC",
614
+ "IEM",
615
+ "II",
616
+ "ILL",
617
+ "ION",
618
+ "IPS",
619
+ "IRT",
620
+ "ISM",
621
+ "ISO",
622
+ "IST",
623
+ "IT",
624
+ "ITIL",
625
+ "ITM",
626
+ "Ia",
627
+ "Ia.",
628
+ "Id",
629
+ "Id.",
630
+ "Idaho",
631
+ "Identify",
632
+ "Identity",
633
+ "Ill",
634
+ "Ill.",
635
+ "Illinois",
636
+ "Implemented",
637
+ "Implementing",
638
+ "Implements",
639
+ "Inc",
640
+ "Inc.",
641
+ "Incident",
642
+ "Ind",
643
+ "Ind.",
644
+ "Independent",
645
+ "Indiana",
646
+ "Industry",
647
+ "Information",
648
+ "Initiated",
649
+ "InsightVM",
650
+ "Insurance",
651
+ "Intelligence",
652
+ "Internal",
653
+ "Intrusion",
654
+ "Investigating",
655
+ "IoT",
656
+ "Iowa",
657
+ "Is",
658
+ "It",
659
+ "It's",
660
+ "It\u2019s",
661
+ "J",
662
+ "Jan",
663
+ "Jan.",
664
+ "January",
665
+ "Jr",
666
+ "Jr.",
667
+ "Jul",
668
+ "Jul.",
669
+ "July",
670
+ "Jun",
671
+ "Jun.",
672
+ "June",
673
+ "K",
674
+ "K.",
675
+ "Kan",
676
+ "Kan.",
677
+ "Kans",
678
+ "Kans.",
679
+ "Kansas",
680
+ "Kentucky",
681
+ "Keystroke",
682
+ "Ky",
683
+ "Ky.",
684
+ "L",
685
+ "LBA",
686
+ "LDAP",
687
+ "La",
688
+ "La.",
689
+ "Leach",
690
+ "Lead",
691
+ "Leading",
692
+ "Led",
693
+ "Let",
694
+ "Let's",
695
+ "Let\u2019s",
696
+ "LogRhythm",
697
+ "Looking",
698
+ "Louisiana",
699
+ "Lovin",
700
+ "Lovin'",
701
+ "Lovin\u2019",
702
+ "Ltd",
703
+ "Ltd.",
704
+ "M",
705
+ "MFA",
706
+ "MITM",
707
+ "MITRE",
708
+ "MMI",
709
+ "Ma'am",
710
+ "Maintaining",
711
+ "Malicious",
712
+ "Malware",
713
+ "Man",
714
+ "Management",
715
+ "Manager",
716
+ "Mapper",
717
+ "Mapping",
718
+ "Mar",
719
+ "Mar.",
720
+ "March",
721
+ "Mass",
722
+ "Mass.",
723
+ "Massachusetts",
724
+ "Maturity",
725
+ "May",
726
+ "Ma\u2019am",
727
+ "Md",
728
+ "Md.",
729
+ "Meeting",
730
+ "Messrs",
731
+ "Messrs.",
732
+ "Metasploit",
733
+ "Mich",
734
+ "Mich.",
735
+ "Michigan",
736
+ "Microsoft",
737
+ "Might",
738
+ "Migrating",
739
+ "Minn",
740
+ "Minn.",
741
+ "Minnesota",
742
+ "Miss",
743
+ "Miss.",
744
+ "Mississippi",
745
+ "Mitigated",
746
+ "Mitigation",
747
+ "Mo",
748
+ "Mo.",
749
+ "Mobile",
750
+ "Mont",
751
+ "Mont.",
752
+ "Mount",
753
+ "Mr",
754
+ "Mr.",
755
+ "Mrs",
756
+ "Mrs.",
757
+ "Ms",
758
+ "Ms.",
759
+ "Mt",
760
+ "Mt.",
761
+ "Must",
762
+ "N",
763
+ "N.C.",
764
+ "N.D.",
765
+ "N.H.",
766
+ "N.J.",
767
+ "N.M.",
768
+ "N.Y.",
769
+ "NGFW",
770
+ "NIST",
771
+ "NYM",
772
+ "Neb",
773
+ "Neb.",
774
+ "Nebr",
775
+ "Nebr.",
776
+ "Nebraska",
777
+ "Need",
778
+ "Nessus",
779
+ "Network",
780
+ "Networks",
781
+ "Nev",
782
+ "Nev.",
783
+ "Nevada",
784
+ "New Hampshire",
785
+ "New Jersey",
786
+ "New Mexico",
787
+ "New York",
788
+ "Nmap",
789
+ "North Carolina",
790
+ "North Dakota",
791
+ "Not",
792
+ "Nothin",
793
+ "Nothin'",
794
+ "Nothin\u2019",
795
+ "Nov",
796
+ "Nov.",
797
+ "November",
798
+ "Nuthin",
799
+ "Nuthin'",
800
+ "Nuthin\u2019",
801
+ "O",
802
+ "O'clock",
803
+ "O.O",
804
+ "O.o",
805
+ "OAR",
806
+ "OLE",
807
+ "OOL",
808
+ "ORK",
809
+ "OSCP",
810
+ "OSSEC",
811
+ "OSWE",
812
+ "OT",
813
+ "OWASP",
814
+ "O_O",
815
+ "O_o",
816
+ "Oct",
817
+ "Oct.",
818
+ "October",
819
+ "Offensive",
820
+ "Officer",
821
+ "Okla",
822
+ "Okla.",
823
+ "Oklahoma",
824
+ "Ol",
825
+ "Ol'",
826
+ "Ol\u2019",
827
+ "One",
828
+ "Operations",
829
+ "Ops",
830
+ "Ore",
831
+ "Ore.",
832
+ "Oregon",
833
+ "Organization",
834
+ "Oscp",
835
+ "Ought",
836
+ "Oxley",
837
+ "O\u2019clock",
838
+ "P",
839
+ "PAA",
840
+ "PAM",
841
+ "PCI",
842
+ "PEN",
843
+ "PPA",
844
+ "Pa",
845
+ "Pa.",
846
+ "Palo",
847
+ "Party",
848
+ "Password",
849
+ "Patched",
850
+ "Path",
851
+ "Payment",
852
+ "Pen",
853
+ "Penetration",
854
+ "Pennsylvania",
855
+ "Pentest",
856
+ "Pentester",
857
+ "Performed",
858
+ "Persistent",
859
+ "Ph",
860
+ "Ph.D.",
861
+ "Phishing",
862
+ "Policy",
863
+ "Portability",
864
+ "Posture",
865
+ "Practitioner",
866
+ "Privacy",
867
+ "Privilege",
868
+ "Pro",
869
+ "Prof",
870
+ "Prof.",
871
+ "Professional",
872
+ "Proficient",
873
+ "Protected",
874
+ "Protection",
875
+ "Purple",
876
+ "Pursuing",
877
+ "Python",
878
+ "Q",
879
+ "Q4",
880
+ "QRadar",
881
+ "QUE",
882
+ "Qualys",
883
+ "R",
884
+ "RCE",
885
+ "REGULATION",
886
+ "ROOT",
887
+ "RPA",
888
+ "Race",
889
+ "Ransomware",
890
+ "Rapid7",
891
+ "Red",
892
+ "Regulation",
893
+ "Regulatory",
894
+ "Remote",
895
+ "Rep",
896
+ "Rep.",
897
+ "Responder",
898
+ "Responding",
899
+ "Response",
900
+ "Rev",
901
+ "Rev.",
902
+ "Reverse",
903
+ "Review",
904
+ "Risk",
905
+ "Rootkit",
906
+ "Ryuk",
907
+ "S",
908
+ "S.C.",
909
+ "SABSA",
910
+ "SCP",
911
+ "SEC",
912
+ "SECURITY_DOMAIN",
913
+ "SECURITY_ROLE",
914
+ "SECURITY_TOOL",
915
+ "SIEM",
916
+ "SMA",
917
+ "SOAR",
918
+ "SOC",
919
+ "SOX",
920
+ "SP",
921
+ "SQL",
922
+ "SRF",
923
+ "SSCP",
924
+ "SSP",
925
+ "SWE",
926
+ "Sarbanes",
927
+ "Scan",
928
+ "Scanning",
929
+ "Scheduled",
930
+ "SecOps",
931
+ "Security",
932
+ "Security+",
933
+ "Seeking",
934
+ "Sen",
935
+ "Sen.",
936
+ "Senior",
937
+ "SentinelOne",
938
+ "Sep",
939
+ "Sep.",
940
+ "Sept",
941
+ "Sept.",
942
+ "September",
943
+ "Service",
944
+ "Session",
945
+ "Sha",
946
+ "She",
947
+ "She's",
948
+ "She\u2019s",
949
+ "Should",
950
+ "Skills",
951
+ "Snort",
952
+ "Somethin",
953
+ "Somethin'",
954
+ "Somethin\u2019",
955
+ "South Carolina",
956
+ "Spear",
957
+ "Specialized",
958
+ "Splunk",
959
+ "Spyware",
960
+ "St",
961
+ "St.",
962
+ "Stack",
963
+ "Standard",
964
+ "Studying",
965
+ "Suite",
966
+ "Suricata",
967
+ "Systems",
968
+ "T",
969
+ "T28",
970
+ "T29",
971
+ "TECHNICAL_SKILL",
972
+ "THREAT_TYPE",
973
+ "TIA",
974
+ "TIL",
975
+ "TOGAF",
976
+ "TRE",
977
+ "Team",
978
+ "Teaming",
979
+ "Tenable",
980
+ "Tenn",
981
+ "Tenn.",
982
+ "Tennessee",
983
+ "Test",
984
+ "Tester",
985
+ "Testing",
986
+ "That",
987
+ "That's",
988
+ "That\u2019s",
989
+ "There",
990
+ "There's",
991
+ "There\u2019s",
992
+ "These",
993
+ "They",
994
+ "Third",
995
+ "This",
996
+ "This's",
997
+ "This\u2019s",
998
+ "Those",
999
+ "Threat",
1000
+ "Tools",
1001
+ "Top",
1002
+ "Tracking",
1003
+ "Trojan",
1004
+ "Type",
1005
+ "U",
1006
+ "UTM",
1007
+ "Using",
1008
+ "V",
1009
+ "V.V",
1010
+ "VPN",
1011
+ "V_V",
1012
+ "Va",
1013
+ "Va.",
1014
+ "Virginia",
1015
+ "Vulnerability",
1016
+ "W",
1017
+ "WAF",
1018
+ "WannaCry",
1019
+ "Was",
1020
+ "Wash",
1021
+ "Wash.",
1022
+ "Washington",
1023
+ "Wazuh",
1024
+ "We",
1025
+ "Web",
1026
+ "Were",
1027
+ "What",
1028
+ "What's",
1029
+ "What\u2019s",
1030
+ "When",
1031
+ "When's",
1032
+ "When\u2019s",
1033
+ "Where",
1034
+ "Where's",
1035
+ "Where\u2019s",
1036
+ "Who",
1037
+ "Who's",
1038
+ "Who\u2019s",
1039
+ "Why",
1040
+ "Why's",
1041
+ "Why\u2019s",
1042
+ "Wireshark",
1043
+ "Wis",
1044
+ "Wis.",
1045
+ "Wisconsin",
1046
+ "Wo",
1047
+ "Would",
1048
+ "X'x",
1049
+ "X'xxxx",
1050
+ "X++",
1051
+ "X.",
1052
+ "X.X",
1053
+ "X.X.",
1054
+ "X.x",
1055
+ "X.x.",
1056
+ "XD",
1057
+ "XDD",
1058
+ "XDR",
1059
+ "XML",
1060
+ "XSS",
1061
+ "XX",
1062
+ "XXX",
1063
+ "XXX&XX",
1064
+ "XXX-dddd",
1065
+ "XXXX",
1066
+ "XXXX_XXXX",
1067
+ "XXXdd",
1068
+ "XXxX",
1069
+ "XXxxxx",
1070
+ "X_X",
1071
+ "X_x",
1072
+ "Xd",
1073
+ "Xx",
1074
+ "Xx'",
1075
+ "Xx'x",
1076
+ "Xx'xx",
1077
+ "Xx.",
1078
+ "Xx.X.",
1079
+ "XxX",
1080
+ "Xxx",
1081
+ "Xxx'x",
1082
+ "Xxx.",
1083
+ "XxxXxx",
1084
+ "XxxXxxxx",
1085
+ "Xxxx",
1086
+ "Xxxx'",
1087
+ "Xxxx'x",
1088
+ "Xxxx.",
1089
+ "XxxxXXX",
1090
+ "Xxxxx",
1091
+ "Xxxxx'",
1092
+ "Xxxxx'x",
1093
+ "Xxxxx+",
1094
+ "Xxxxx.",
1095
+ "XxxxxXX",
1096
+ "XxxxxXxx",
1097
+ "XxxxxXxxx",
1098
+ "XxxxxXxxxx",
1099
+ "Xxxxxd",
1100
+ "Xxxxx\u2019",
1101
+ "Xxxxx\u2019x",
1102
+ "Xxxx\u2019",
1103
+ "Xxxx\u2019x",
1104
+ "Xxx\u2019x",
1105
+ "Xx\u2019",
1106
+ "Xx\u2019x",
1107
+ "Xx\u2019xx",
1108
+ "X\u2019x",
1109
+ "X\u2019xxxx",
1110
+ "Y",
1111
+ "YPE",
1112
+ "You",
1113
+ "Z",
1114
+ "Zachman",
1115
+ "Zero",
1116
+ "[",
1117
+ "[-:",
1118
+ "[:",
1119
+ "[=",
1120
+ "\\",
1121
+ "\\\")",
1122
+ "\\n",
1123
+ "\\t",
1124
+ "\\x",
1125
+ "]",
1126
+ "]=",
1127
+ "^",
1128
+ "^_^",
1129
+ "^__^",
1130
+ "^___^",
1131
+ "_*)",
1132
+ "_-)",
1133
+ "_.)",
1134
+ "_<)",
1135
+ "_^)",
1136
+ "__-",
1137
+ "__^",
1138
+ "_\u00ac)",
1139
+ "_\u0ca0)",
1140
+ "a",
1141
+ "a.",
1142
+ "a.m",
1143
+ "a.m.",
1144
+ "about",
1145
+ "access",
1146
+ "accountability",
1147
+ "accounts",
1148
+ "ace",
1149
+ "ach",
1150
+ "achieved",
1151
+ "ack",
1152
+ "acronym",
1153
+ "across",
1154
+ "act",
1155
+ "action",
1156
+ "activity",
1157
+ "actors",
1158
+ "acy",
1159
+ "ade",
1160
+ "adherence",
1161
+ "adm",
1162
+ "adm.",
1163
+ "adopted",
1164
+ "adopting",
1165
+ "adoption",
1166
+ "advanced",
1167
+ "advisory",
1168
+ "against",
1169
+ "ai",
1170
+ "ail",
1171
+ "ak",
1172
+ "ak.",
1173
+ "ala",
1174
+ "ala.",
1175
+ "all",
1176
+ "alo",
1177
+ "als",
1178
+ "altered",
1179
+ "alto",
1180
+ "am",
1181
+ "amm",
1182
+ "an.",
1183
+ "analysis",
1184
+ "analyst",
1185
+ "analyzed",
1186
+ "analyzing",
1187
+ "and",
1188
+ "and/or",
1189
+ "annual",
1190
+ "anomalies",
1191
+ "ans",
1192
+ "ansible",
1193
+ "ant",
1194
+ "any",
1195
+ "api",
1196
+ "application",
1197
+ "applied",
1198
+ "approved",
1199
+ "apr",
1200
+ "apr.",
1201
+ "aps",
1202
+ "apt",
1203
+ "apt28",
1204
+ "apt29",
1205
+ "ar.",
1206
+ "arbitrary",
1207
+ "architect",
1208
+ "architecture",
1209
+ "ard",
1210
+ "are",
1211
+ "ariz",
1212
+ "ariz.",
1213
+ "ark",
1214
+ "ark.",
1215
+ "ars",
1216
+ "ary",
1217
+ "as",
1218
+ "asb",
1219
+ "ash",
1220
+ "asp",
1221
+ "ass",
1222
+ "assess",
1223
+ "assessment",
1224
+ "assessments",
1225
+ "assessors",
1226
+ "ast",
1227
+ "at",
1228
+ "ata",
1229
+ "ate",
1230
+ "ath",
1231
+ "ats",
1232
+ "att&ck",
1233
+ "attachments",
1234
+ "attack",
1235
+ "attack_technique",
1236
+ "attackers",
1237
+ "attacks",
1238
+ "attempt",
1239
+ "audit",
1240
+ "audit_term",
1241
+ "auditors",
1242
+ "aug",
1243
+ "aug.",
1244
+ "authentication",
1245
+ "automated",
1246
+ "automation",
1247
+ "ave",
1248
+ "avoided",
1249
+ "b",
1250
+ "b.",
1251
+ "bandwidth",
1252
+ "based",
1253
+ "baseline",
1254
+ "baselines",
1255
+ "because",
1256
+ "benchmarked",
1257
+ "benchmarks",
1258
+ "ber",
1259
+ "best",
1260
+ "binaries",
1261
+ "binary",
1262
+ "bit",
1263
+ "ble",
1264
+ "bliley",
1265
+ "blocked",
1266
+ "blue",
1267
+ "board",
1268
+ "both",
1269
+ "botnet",
1270
+ "bout",
1271
+ "bow",
1272
+ "br.",
1273
+ "bros",
1274
+ "bros.",
1275
+ "brute",
1276
+ "bsa",
1277
+ "buffer",
1278
+ "burp",
1279
+ "but",
1280
+ "by",
1281
+ "bypassed",
1282
+ "c",
1283
+ "c'm",
1284
+ "c++",
1285
+ "c.",
1286
+ "ca",
1287
+ "cal",
1288
+ "calif",
1289
+ "calif.",
1290
+ "california",
1291
+ "campaign",
1292
+ "can",
1293
+ "candidates",
1294
+ "capabilities",
1295
+ "card",
1296
+ "casb",
1297
+ "cause",
1298
+ "ccpa",
1299
+ "ce>",
1300
+ "ced",
1301
+ "ceh",
1302
+ "cer",
1303
+ "cert",
1304
+ "certification",
1305
+ "certifications",
1306
+ "certified",
1307
+ "ces",
1308
+ "ch.",
1309
+ "check",
1310
+ "chief",
1311
+ "cia",
1312
+ "cih",
1313
+ "cis",
1314
+ "cism",
1315
+ "ciso",
1316
+ "cissp",
1317
+ "cks",
1318
+ "cle",
1319
+ "clients",
1320
+ "cloud",
1321
+ "cmmi",
1322
+ "co",
1323
+ "co.",
1324
+ "cobit",
1325
+ "code",
1326
+ "coding",
1327
+ "colo",
1328
+ "colo.",
1329
+ "combining",
1330
+ "come",
1331
+ "command",
1332
+ "company",
1333
+ "competency",
1334
+ "competitive",
1335
+ "completed",
1336
+ "compliance",
1337
+ "comprehensive",
1338
+ "compromised",
1339
+ "comptia",
1340
+ "computer",
1341
+ "con",
1342
+ "condition",
1343
+ "conducted",
1344
+ "configuration",
1345
+ "configured",
1346
+ "conn",
1347
+ "conn.",
1348
+ "consultant",
1349
+ "consumer",
1350
+ "containment",
1351
+ "continuing",
1352
+ "control",
1353
+ "controlled",
1354
+ "controls",
1355
+ "coordinated",
1356
+ "coppa",
1357
+ "corp",
1358
+ "corp.",
1359
+ "corruption",
1360
+ "cos",
1361
+ "could",
1362
+ "coz",
1363
+ "cpa",
1364
+ "cracking",
1365
+ "credential",
1366
+ "critical",
1367
+ "cross",
1368
+ "crowdstrike",
1369
+ "cry",
1370
+ "cryptanalysis",
1371
+ "csf",
1372
+ "csirt",
1373
+ "csrf",
1374
+ "ct.",
1375
+ "cus",
1376
+ "cuz",
1377
+ "cve",
1378
+ "cve-2020",
1379
+ "cve-2021",
1380
+ "cve-2022",
1381
+ "cve-2023",
1382
+ "cve-2024",
1383
+ "cybersecurity",
1384
+ "cycle",
1385
+ "c\u2019m",
1386
+ "d",
1387
+ "d)",
1388
+ "d-",
1389
+ "d-)",
1390
+ "d-X",
1391
+ "d.",
1392
+ "d.c.",
1393
+ "d.d",
1394
+ "d.x",
1395
+ "dX",
1396
+ "d_d",
1397
+ "d_x",
1398
+ "daily",
1399
+ "dap",
1400
+ "dar",
1401
+ "dare",
1402
+ "data",
1403
+ "day",
1404
+ "dd",
1405
+ "ddd",
1406
+ "dddd",
1407
+ "ddos",
1408
+ "ddx.x",
1409
+ "ddx.x.",
1410
+ "dec",
1411
+ "dec.",
1412
+ "ded",
1413
+ "dedicated",
1414
+ "deep",
1415
+ "defender",
1416
+ "defending",
1417
+ "defense",
1418
+ "defensive",
1419
+ "deficiencies",
1420
+ "del",
1421
+ "del.",
1422
+ "demonstrated",
1423
+ "demonstrates",
1424
+ "denial",
1425
+ "deployed",
1426
+ "deployment",
1427
+ "der",
1428
+ "des",
1429
+ "detected",
1430
+ "detection",
1431
+ "development",
1432
+ "did",
1433
+ "digital",
1434
+ "diligence",
1435
+ "directory",
1436
+ "disclosed",
1437
+ "discovered",
1438
+ "disrupted",
1439
+ "dit",
1440
+ "dle",
1441
+ "dlp",
1442
+ "dm.",
1443
+ "do",
1444
+ "documented",
1445
+ "does",
1446
+ "doin",
1447
+ "doin'",
1448
+ "doing",
1449
+ "doin\u2019",
1450
+ "dor",
1451
+ "dos",
1452
+ "dpr",
1453
+ "dr",
1454
+ "dr.",
1455
+ "dss",
1456
+ "dth",
1457
+ "due",
1458
+ "during",
1459
+ "dx.x",
1460
+ "dx.x.",
1461
+ "e",
1462
+ "e's",
1463
+ "e.",
1464
+ "e.g",
1465
+ "e.g.",
1466
+ "ead",
1467
+ "eam",
1468
+ "eap",
1469
+ "ear",
1470
+ "eat",
1471
+ "eb.",
1472
+ "ebr",
1473
+ "ec.",
1474
+ "eck",
1475
+ "ect",
1476
+ "edr",
1477
+ "education",
1478
+ "eed",
1479
+ "eek",
1480
+ "eep",
1481
+ "eer",
1482
+ "ees",
1483
+ "effectiveness",
1484
+ "efforts",
1485
+ "ege",
1486
+ "egy",
1487
+ "el.",
1488
+ "em",
1489
+ "email",
1490
+ "ems",
1491
+ "en",
1492
+ "en.",
1493
+ "endpoint",
1494
+ "endpoints",
1495
+ "engineer",
1496
+ "engineering",
1497
+ "enn",
1498
+ "enough",
1499
+ "ensures",
1500
+ "ensuring",
1501
+ "ent",
1502
+ "enterprise",
1503
+ "ep.",
1504
+ "ept",
1505
+ "ere",
1506
+ "ero",
1507
+ "ers",
1508
+ "ert",
1509
+ "ery",
1510
+ "escalation",
1511
+ "ese",
1512
+ "ess",
1513
+ "essentials",
1514
+ "est",
1515
+ "established",
1516
+ "ethical",
1517
+ "ev.",
1518
+ "evaluate",
1519
+ "evaluated",
1520
+ "evaluating",
1521
+ "evaluation",
1522
+ "exam",
1523
+ "execution",
1524
+ "exercises",
1525
+ "experience",
1526
+ "expert",
1527
+ "expertise",
1528
+ "exploit",
1529
+ "exploitation",
1530
+ "exploited",
1531
+ "exposed",
1532
+ "ext",
1533
+ "external",
1534
+ "e\u2019s",
1535
+ "f",
1536
+ "f.",
1537
+ "falcon",
1538
+ "feature",
1539
+ "feb",
1540
+ "feb.",
1541
+ "federal",
1542
+ "fer",
1543
+ "ferpa",
1544
+ "file",
1545
+ "files",
1546
+ "financial",
1547
+ "findings",
1548
+ "fisma",
1549
+ "fixed",
1550
+ "fla",
1551
+ "fla.",
1552
+ "flaw",
1553
+ "flooded",
1554
+ "focus",
1555
+ "followed",
1556
+ "following",
1557
+ "for",
1558
+ "force",
1559
+ "forensics",
1560
+ "forgery",
1561
+ "form",
1562
+ "format",
1563
+ "fortigate",
1564
+ "fortinet",
1565
+ "fortune",
1566
+ "found",
1567
+ "framework",
1568
+ "frameworks",
1569
+ "from",
1570
+ "function",
1571
+ "functionality",
1572
+ "g",
1573
+ "g.",
1574
+ "ga",
1575
+ "ga.",
1576
+ "gaf",
1577
+ "gap",
1578
+ "gaps",
1579
+ "gathering",
1580
+ "gcia",
1581
+ "gcih",
1582
+ "gdpr",
1583
+ "gen",
1584
+ "gen.",
1585
+ "general",
1586
+ "generation",
1587
+ "ger",
1588
+ "ges",
1589
+ "gfw",
1590
+ "ght",
1591
+ "giac",
1592
+ "gic",
1593
+ "gin",
1594
+ "glba",
1595
+ "goin",
1596
+ "goin'",
1597
+ "going",
1598
+ "goin\u2019",
1599
+ "gon",
1600
+ "gonna",
1601
+ "got",
1602
+ "gov",
1603
+ "gov.",
1604
+ "governance",
1605
+ "gpen",
1606
+ "gramm",
1607
+ "group",
1608
+ "gsec",
1609
+ "guidance",
1610
+ "h",
1611
+ "h.",
1612
+ "hacker",
1613
+ "hacking",
1614
+ "had",
1615
+ "handler",
1616
+ "handling",
1617
+ "hardening",
1618
+ "has",
1619
+ "hashes",
1620
+ "hat",
1621
+ "have",
1622
+ "havin",
1623
+ "havin'",
1624
+ "having",
1625
+ "havin\u2019",
1626
+ "he",
1627
+ "he's",
1628
+ "health",
1629
+ "heap",
1630
+ "hed",
1631
+ "hen",
1632
+ "hes",
1633
+ "hey",
1634
+ "he\u2019s",
1635
+ "high",
1636
+ "hijacking",
1637
+ "hin",
1638
+ "hip",
1639
+ "hipaa",
1640
+ "hiring",
1641
+ "his",
1642
+ "holds",
1643
+ "hon",
1644
+ "horse",
1645
+ "how",
1646
+ "how's",
1647
+ "how\u2019s",
1648
+ "hunter",
1649
+ "hunting",
1650
+ "i",
1651
+ "i.",
1652
+ "i.e",
1653
+ "i.e.",
1654
+ "ia",
1655
+ "ia.",
1656
+ "iac",
1657
+ "ial",
1658
+ "iam",
1659
+ "ibm",
1660
+ "ice",
1661
+ "ich",
1662
+ "ics",
1663
+ "icy",
1664
+ "id",
1665
+ "id.",
1666
+ "id7",
1667
+ "ida",
1668
+ "ide",
1669
+ "identified",
1670
+ "identify",
1671
+ "identity",
1672
+ "ids",
1673
+ "iec",
1674
+ "ied",
1675
+ "ief",
1676
+ "iem",
1677
+ "ies",
1678
+ "iew",
1679
+ "if.",
1680
+ "ify",
1681
+ "igh",
1682
+ "ign",
1683
+ "ii",
1684
+ "ike",
1685
+ "ile",
1686
+ "ill",
1687
+ "ill.",
1688
+ "ily",
1689
+ "immediate",
1690
+ "impact",
1691
+ "implementation",
1692
+ "implemented",
1693
+ "implementing",
1694
+ "implements",
1695
+ "improvement",
1696
+ "in",
1697
+ "in'",
1698
+ "inc",
1699
+ "inc.",
1700
+ "incident",
1701
+ "inclusion",
1702
+ "ind",
1703
+ "ind.",
1704
+ "independent",
1705
+ "industry",
1706
+ "ine",
1707
+ "infection",
1708
+ "information",
1709
+ "infrastructure",
1710
+ "ing",
1711
+ "initiated",
1712
+ "injection",
1713
+ "inn",
1714
+ "insecure",
1715
+ "insightvm",
1716
+ "installation",
1717
+ "insurance",
1718
+ "int",
1719
+ "integration",
1720
+ "intelligence",
1721
+ "internal",
1722
+ "intrusion",
1723
+ "investigating",
1724
+ "investigation",
1725
+ "in\u2019",
1726
+ "ion",
1727
+ "ior",
1728
+ "iot",
1729
+ "ips",
1730
+ "ird",
1731
+ "irt",
1732
+ "is",
1733
+ "is.",
1734
+ "ise",
1735
+ "isk",
1736
+ "ism",
1737
+ "iso",
1738
+ "iss",
1739
+ "issues",
1740
+ "ist",
1741
+ "it",
1742
+ "it's",
1743
+ "ite",
1744
+ "ith",
1745
+ "itil",
1746
+ "itm",
1747
+ "ity",
1748
+ "it\u2019s",
1749
+ "ium",
1750
+ "ive",
1751
+ "iz.",
1752
+ "j",
1753
+ "j.",
1754
+ "jan",
1755
+ "jan.",
1756
+ "jr",
1757
+ "jr.",
1758
+ "jul",
1759
+ "jul.",
1760
+ "jun",
1761
+ "jun.",
1762
+ "k",
1763
+ "k.",
1764
+ "kan",
1765
+ "kan.",
1766
+ "kans",
1767
+ "kans.",
1768
+ "ked",
1769
+ "ken",
1770
+ "ker",
1771
+ "keylogger",
1772
+ "keystroke",
1773
+ "kit",
1774
+ "kla",
1775
+ "kly",
1776
+ "ky",
1777
+ "ky.",
1778
+ "l",
1779
+ "l.",
1780
+ "la",
1781
+ "la.",
1782
+ "last",
1783
+ "law",
1784
+ "lba",
1785
+ "ldap",
1786
+ "lds",
1787
+ "leach",
1788
+ "lead",
1789
+ "leadership",
1790
+ "leading",
1791
+ "led",
1792
+ "legacy",
1793
+ "ler",
1794
+ "les",
1795
+ "let",
1796
+ "let's",
1797
+ "let\u2019s",
1798
+ "level",
1799
+ "ley",
1800
+ "license",
1801
+ "lif",
1802
+ "ll",
1803
+ "ll.",
1804
+ "lls",
1805
+ "lly",
1806
+ "lo.",
1807
+ "logger",
1808
+ "logic",
1809
+ "login",
1810
+ "logrhythm",
1811
+ "logs",
1812
+ "looking",
1813
+ "lovin",
1814
+ "lovin'",
1815
+ "loving",
1816
+ "lovin\u2019",
1817
+ "low",
1818
+ "ltd",
1819
+ "ltd.",
1820
+ "lth",
1821
+ "lto",
1822
+ "lue",
1823
+ "lys",
1824
+ "m",
1825
+ "m.",
1826
+ "ma'am",
1827
+ "madam",
1828
+ "maintaining",
1829
+ "malicious",
1830
+ "malware",
1831
+ "man",
1832
+ "management",
1833
+ "manager",
1834
+ "manages",
1835
+ "mandated",
1836
+ "mandatory",
1837
+ "manipulated",
1838
+ "map",
1839
+ "mapper",
1840
+ "mapping",
1841
+ "mar",
1842
+ "mar.",
1843
+ "mass",
1844
+ "mass.",
1845
+ "mat",
1846
+ "maturity",
1847
+ "may",
1848
+ "ma\u2019am",
1849
+ "md",
1850
+ "md.",
1851
+ "med",
1852
+ "medium",
1853
+ "meeting",
1854
+ "member",
1855
+ "memory",
1856
+ "mer",
1857
+ "messrs",
1858
+ "messrs.",
1859
+ "met",
1860
+ "metasploit",
1861
+ "methodologies",
1862
+ "mfa",
1863
+ "mich",
1864
+ "mich.",
1865
+ "microsoft",
1866
+ "middle",
1867
+ "might",
1868
+ "migrating",
1869
+ "minn",
1870
+ "minn.",
1871
+ "miss",
1872
+ "miss.",
1873
+ "missing",
1874
+ "mitigated",
1875
+ "mitigation",
1876
+ "mitm",
1877
+ "mitre",
1878
+ "mmi",
1879
+ "mo",
1880
+ "mo.",
1881
+ "mobile",
1882
+ "model",
1883
+ "modeling",
1884
+ "monitoring",
1885
+ "mont",
1886
+ "mont.",
1887
+ "month",
1888
+ "mpt",
1889
+ "mr",
1890
+ "mr.",
1891
+ "mrs",
1892
+ "mrs.",
1893
+ "ms",
1894
+ "ms.",
1895
+ "mt",
1896
+ "mt.",
1897
+ "multiple",
1898
+ "must",
1899
+ "n",
1900
+ "n's",
1901
+ "n't",
1902
+ "n.",
1903
+ "n.c.",
1904
+ "n.d.",
1905
+ "n.h.",
1906
+ "n.j.",
1907
+ "n.m.",
1908
+ "n.y.",
1909
+ "na",
1910
+ "nal",
1911
+ "nc.",
1912
+ "nce",
1913
+ "ncy",
1914
+ "nd.",
1915
+ "neb",
1916
+ "neb.",
1917
+ "nebr",
1918
+ "nebr.",
1919
+ "need",
1920
+ "ner",
1921
+ "nes",
1922
+ "nessus",
1923
+ "net",
1924
+ "network",
1925
+ "networks",
1926
+ "nev",
1927
+ "nev.",
1928
+ "next",
1929
+ "ngfw",
1930
+ "ngs",
1931
+ "nia",
1932
+ "nist",
1933
+ "nmap",
1934
+ "nn.",
1935
+ "not",
1936
+ "nothin",
1937
+ "nothin'",
1938
+ "nothing",
1939
+ "nothin\u2019",
1940
+ "nov",
1941
+ "nov.",
1942
+ "ns.",
1943
+ "nse",
1944
+ "nst",
1945
+ "nt",
1946
+ "nt.",
1947
+ "nth",
1948
+ "nts",
1949
+ "nuff",
1950
+ "nuthin",
1951
+ "nuthin'",
1952
+ "nuthin\u2019",
1953
+ "n\u2019s",
1954
+ "n\u2019t",
1955
+ "o",
1956
+ "o'clock",
1957
+ "o's",
1958
+ "o.",
1959
+ "o.0",
1960
+ "o.O",
1961
+ "o.o",
1962
+ "o_0",
1963
+ "o_O",
1964
+ "o_o",
1965
+ "oad",
1966
+ "oar",
1967
+ "observations",
1968
+ "ock",
1969
+ "oct",
1970
+ "oct.",
1971
+ "ode",
1972
+ "oes",
1973
+ "of",
1974
+ "of.",
1975
+ "offense",
1976
+ "offensive",
1977
+ "officer",
1978
+ "oft",
1979
+ "ogs",
1980
+ "oin",
1981
+ "oit",
1982
+ "oke",
1983
+ "okla",
1984
+ "okla.",
1985
+ "ol",
1986
+ "ol'",
1987
+ "old",
1988
+ "ole",
1989
+ "olo",
1990
+ "ols",
1991
+ "ol\u2019",
1992
+ "on",
1993
+ "one",
1994
+ "ongoing",
1995
+ "onn",
1996
+ "ons",
1997
+ "ont",
1998
+ "open",
1999
+ "operations",
2000
+ "ops",
2001
+ "optimized",
2002
+ "or",
2003
+ "ord",
2004
+ "ore",
2005
+ "ore.",
2006
+ "organization",
2007
+ "ork",
2008
+ "orm",
2009
+ "orp",
2010
+ "ors",
2011
+ "ort",
2012
+ "ory",
2013
+ "os.",
2014
+ "oscp",
2015
+ "ose",
2016
+ "oss",
2017
+ "ossec",
2018
+ "oswe",
2019
+ "ot",
2020
+ "ote",
2021
+ "oth",
2022
+ "oud",
2023
+ "ought",
2024
+ "oup",
2025
+ "ous",
2026
+ "out",
2027
+ "ov.",
2028
+ "overflow",
2029
+ "oversees",
2030
+ "overwhelmed",
2031
+ "owasp",
2032
+ "oxley",
2033
+ "o\u2019clock",
2034
+ "o\u2019s",
2035
+ "p",
2036
+ "p.",
2037
+ "p.m",
2038
+ "p.m.",
2039
+ "pa",
2040
+ "pa.",
2041
+ "paa",
2042
+ "palo",
2043
+ "pam",
2044
+ "party",
2045
+ "password",
2046
+ "patched",
2047
+ "patches",
2048
+ "path",
2049
+ "patterns",
2050
+ "payment",
2051
+ "pci",
2052
+ "pen",
2053
+ "penalties",
2054
+ "penetration",
2055
+ "pentest",
2056
+ "pentester",
2057
+ "per",
2058
+ "performance",
2059
+ "performed",
2060
+ "persistent",
2061
+ "ph",
2062
+ "ph.d.",
2063
+ "phishing",
2064
+ "platform",
2065
+ "ple",
2066
+ "pm",
2067
+ "policy",
2068
+ "portability",
2069
+ "position",
2070
+ "posture",
2071
+ "ppa",
2072
+ "pr.",
2073
+ "practical",
2074
+ "practices",
2075
+ "practitioner",
2076
+ "preferred",
2077
+ "prevented",
2078
+ "prioritized",
2079
+ "privacy",
2080
+ "privilege",
2081
+ "pro",
2082
+ "procedures",
2083
+ "process",
2084
+ "processing",
2085
+ "procurement",
2086
+ "production",
2087
+ "prof",
2088
+ "prof.",
2089
+ "professional",
2090
+ "proficient",
2091
+ "program",
2092
+ "progress",
2093
+ "protected",
2094
+ "protection",
2095
+ "provided",
2096
+ "provides",
2097
+ "pt.",
2098
+ "purple",
2099
+ "pursuing",
2100
+ "python",
2101
+ "q",
2102
+ "q.",
2103
+ "q4",
2104
+ "qradar",
2105
+ "qualification",
2106
+ "qualys",
2107
+ "quarter",
2108
+ "quarterly",
2109
+ "r",
2110
+ "r.",
2111
+ "race",
2112
+ "rainbow",
2113
+ "ral",
2114
+ "ram",
2115
+ "ransomware",
2116
+ "rapid7",
2117
+ "rce",
2118
+ "rch",
2119
+ "rds",
2120
+ "re",
2121
+ "re.",
2122
+ "recently",
2123
+ "recognized",
2124
+ "recommendations",
2125
+ "red",
2126
+ "regulation",
2127
+ "regulatory",
2128
+ "remediation",
2129
+ "remote",
2130
+ "renewal",
2131
+ "rep",
2132
+ "rep.",
2133
+ "report",
2134
+ "reports",
2135
+ "request",
2136
+ "required",
2137
+ "requirements",
2138
+ "requires",
2139
+ "res",
2140
+ "research",
2141
+ "responder",
2142
+ "responding",
2143
+ "response",
2144
+ "responsibilities",
2145
+ "rev",
2146
+ "rev.",
2147
+ "revealed",
2148
+ "reverse",
2149
+ "review",
2150
+ "risk",
2151
+ "riz",
2152
+ "rk.",
2153
+ "rks",
2154
+ "rly",
2155
+ "rns",
2156
+ "rof",
2157
+ "rol",
2158
+ "role",
2159
+ "rom",
2160
+ "rootkit",
2161
+ "ros",
2162
+ "rp.",
2163
+ "rpa",
2164
+ "rs.",
2165
+ "rse",
2166
+ "rts",
2167
+ "rty",
2168
+ "runs",
2169
+ "ryuk",
2170
+ "s",
2171
+ "s's",
2172
+ "s.",
2173
+ "s.c.",
2174
+ "sabsa",
2175
+ "sal",
2176
+ "salary",
2177
+ "sarbanes",
2178
+ "scan",
2179
+ "scanning",
2180
+ "scheduled",
2181
+ "scored",
2182
+ "scp",
2183
+ "scripting",
2184
+ "search",
2185
+ "sec",
2186
+ "secops",
2187
+ "sector",
2188
+ "security",
2189
+ "security+",
2190
+ "security_domain",
2191
+ "security_role",
2192
+ "security_tool",
2193
+ "sed",
2194
+ "seeking",
2195
+ "selection",
2196
+ "sen",
2197
+ "sen.",
2198
+ "senior",
2199
+ "sentinelone",
2200
+ "sep",
2201
+ "sep.",
2202
+ "sept",
2203
+ "sept.",
2204
+ "ser",
2205
+ "server",
2206
+ "servers",
2207
+ "service",
2208
+ "ses",
2209
+ "session",
2210
+ "severity",
2211
+ "sh.",
2212
+ "sha",
2213
+ "shall",
2214
+ "she",
2215
+ "she's",
2216
+ "she\u2019s",
2217
+ "should",
2218
+ "siem",
2219
+ "sis",
2220
+ "site",
2221
+ "skills",
2222
+ "sma",
2223
+ "snort",
2224
+ "soar",
2225
+ "soc",
2226
+ "software",
2227
+ "solution",
2228
+ "solutions",
2229
+ "somethin",
2230
+ "somethin'",
2231
+ "something",
2232
+ "somethin\u2019",
2233
+ "sources",
2234
+ "sox",
2235
+ "sp",
2236
+ "space",
2237
+ "spear",
2238
+ "specialist",
2239
+ "specialized",
2240
+ "splunk",
2241
+ "spreading",
2242
+ "spyware",
2243
+ "sql",
2244
+ "srf",
2245
+ "srs",
2246
+ "ss.",
2247
+ "sscp",
2248
+ "ssp",
2249
+ "st",
2250
+ "st.",
2251
+ "stack",
2252
+ "standard",
2253
+ "standards",
2254
+ "status",
2255
+ "strategies",
2256
+ "strategy",
2257
+ "string",
2258
+ "structure",
2259
+ "studying",
2260
+ "submitted",
2261
+ "successfully",
2262
+ "suite",
2263
+ "suricata",
2264
+ "sus",
2265
+ "swe",
2266
+ "system",
2267
+ "systems",
2268
+ "s\u2019s",
2269
+ "t",
2270
+ "t's",
2271
+ "t.",
2272
+ "t28",
2273
+ "t29",
2274
+ "tVM",
2275
+ "ta",
2276
+ "tables",
2277
+ "tactics",
2278
+ "tal",
2279
+ "targeted",
2280
+ "targeting",
2281
+ "tcpdump",
2282
+ "td.",
2283
+ "team",
2284
+ "teaming",
2285
+ "technical_skill",
2286
+ "techniques",
2287
+ "ted",
2288
+ "tem",
2289
+ "tenable",
2290
+ "tenn",
2291
+ "tenn.",
2292
+ "ter",
2293
+ "tes",
2294
+ "test",
2295
+ "tested",
2296
+ "tester",
2297
+ "testing",
2298
+ "that",
2299
+ "that's",
2300
+ "that\u2019s",
2301
+ "the",
2302
+ "them",
2303
+ "there",
2304
+ "there's",
2305
+ "there\u2019s",
2306
+ "these",
2307
+ "they",
2308
+ "third",
2309
+ "this",
2310
+ "this's",
2311
+ "this\u2019s",
2312
+ "thm",
2313
+ "those",
2314
+ "threat",
2315
+ "threat_type",
2316
+ "threats",
2317
+ "through",
2318
+ "tia",
2319
+ "til",
2320
+ "tly",
2321
+ "to",
2322
+ "togaf",
2323
+ "token",
2324
+ "tools",
2325
+ "top",
2326
+ "tor",
2327
+ "tracked",
2328
+ "tracking",
2329
+ "training",
2330
+ "transformation",
2331
+ "traversal",
2332
+ "tre",
2333
+ "triggered",
2334
+ "trojan",
2335
+ "try",
2336
+ "tuning",
2337
+ "tus",
2338
+ "tvm",
2339
+ "ty+",
2340
+ "type",
2341
+ "t\u2019s",
2342
+ "u",
2343
+ "u.",
2344
+ "ual",
2345
+ "ues",
2346
+ "uff",
2347
+ "ug.",
2348
+ "ugh",
2349
+ "ul.",
2350
+ "uld",
2351
+ "ump",
2352
+ "un.",
2353
+ "unclassified",
2354
+ "uncovered",
2355
+ "und",
2356
+ "une",
2357
+ "unk",
2358
+ "unpatched",
2359
+ "uns",
2360
+ "updated",
2361
+ "upgrade",
2362
+ "upload",
2363
+ "ure",
2364
+ "urp",
2365
+ "us",
2366
+ "use",
2367
+ "used",
2368
+ "user",
2369
+ "using",
2370
+ "ust",
2371
+ "ute",
2372
+ "utm",
2373
+ "v",
2374
+ "v.",
2375
+ "v.s",
2376
+ "v.s.",
2377
+ "v.v",
2378
+ "v3",
2379
+ "v4",
2380
+ "v_v",
2381
+ "va",
2382
+ "va.",
2383
+ "validated",
2384
+ "validates",
2385
+ "validation",
2386
+ "ve",
2387
+ "vector",
2388
+ "ved",
2389
+ "vel",
2390
+ "vendor",
2391
+ "vendors",
2392
+ "ver",
2393
+ "verified",
2394
+ "vin",
2395
+ "violation",
2396
+ "violations",
2397
+ "vpn",
2398
+ "vs",
2399
+ "vs.",
2400
+ "vulnerabilities",
2401
+ "vulnerability",
2402
+ "w",
2403
+ "w's",
2404
+ "w.",
2405
+ "w/o",
2406
+ "waf",
2407
+ "wal",
2408
+ "wannacry",
2409
+ "was",
2410
+ "wash",
2411
+ "wash.",
2412
+ "wazuh",
2413
+ "we",
2414
+ "web",
2415
+ "wed",
2416
+ "week",
2417
+ "weekly",
2418
+ "were",
2419
+ "what",
2420
+ "what's",
2421
+ "what\u2019s",
2422
+ "when",
2423
+ "when's",
2424
+ "when\u2019s",
2425
+ "where",
2426
+ "where's",
2427
+ "where\u2019s",
2428
+ "who",
2429
+ "who's",
2430
+ "who\u2019s",
2431
+ "why",
2432
+ "why's",
2433
+ "why\u2019s",
2434
+ "wide",
2435
+ "will",
2436
+ "wireshark",
2437
+ "wis",
2438
+ "wis.",
2439
+ "with",
2440
+ "without",
2441
+ "wo",
2442
+ "worm",
2443
+ "would",
2444
+ "w\u2019s",
2445
+ "x",
2446
+ "x'",
2447
+ "x'x",
2448
+ "x'xxxx",
2449
+ "x.",
2450
+ "x.X",
2451
+ "x.d",
2452
+ "x.x",
2453
+ "x.x.",
2454
+ "x/x",
2455
+ "xD",
2456
+ "xDD",
2457
+ "xX",
2458
+ "xXX",
2459
+ "x_X",
2460
+ "x_d",
2461
+ "x_x",
2462
+ "xam",
2463
+ "xd",
2464
+ "xdd",
2465
+ "xdr",
2466
+ "xed",
2467
+ "xml",
2468
+ "xss",
2469
+ "xx",
2470
+ "xx'",
2471
+ "xx'x",
2472
+ "xx'xx",
2473
+ "xx.",
2474
+ "xxx",
2475
+ "xxx&xx",
2476
+ "xxx'x",
2477
+ "xxx-dddd",
2478
+ "xxx/xx",
2479
+ "xxxdd",
2480
+ "xxxx",
2481
+ "xxxx'",
2482
+ "xxxx'x",
2483
+ "xxxx+",
2484
+ "xxxxd",
2485
+ "xxxx\u2019",
2486
+ "xxxx\u2019x",
2487
+ "xxx\u2019x",
2488
+ "xx\u2019",
2489
+ "xx\u2019x",
2490
+ "xx\u2019xx",
2491
+ "x\u2019",
2492
+ "x\u2019x",
2493
+ "x\u2019xxxx",
2494
+ "x\ufe35x",
2495
+ "y",
2496
+ "y'",
2497
+ "y's",
2498
+ "y.",
2499
+ "year",
2500
+ "years",
2501
+ "yed",
2502
+ "yesterday",
2503
+ "you",
2504
+ "ype",
2505
+ "yst",
2506
+ "yuk",
2507
+ "y\u2019",
2508
+ "y\u2019s",
2509
+ "z",
2510
+ "z.",
2511
+ "zachman",
2512
+ "zed",
2513
+ "zero",
2514
+ "zuh",
2515
+ "|",
2516
+ "}",
2517
+ "\u00a0",
2518
+ "\u00ac",
2519
+ "\u00ac_\u00ac",
2520
+ "\u00af",
2521
+ "\u00af\\(x)/\u00af",
2522
+ "\u00af\\(\u30c4)/\u00af",
2523
+ "\u00b0",
2524
+ "\u00b0C.",
2525
+ "\u00b0F.",
2526
+ "\u00b0K.",
2527
+ "\u00b0X.",
2528
+ "\u00b0c.",
2529
+ "\u00b0f.",
2530
+ "\u00b0k.",
2531
+ "\u00b0x.",
2532
+ "\u00e4",
2533
+ "\u00e4.",
2534
+ "\u00f6",
2535
+ "\u00f6.",
2536
+ "\u00fc",
2537
+ "\u00fc.",
2538
+ "\u0ca0",
2539
+ "\u0ca0_\u0ca0",
2540
+ "\u0ca0\ufe35\u0ca0",
2541
+ "\u2014",
2542
+ "\u2018",
2543
+ "\u2018S",
2544
+ "\u2018X",
2545
+ "\u2018s",
2546
+ "\u2018x",
2547
+ "\u2019",
2548
+ "\u2019-(",
2549
+ "\u2019-)",
2550
+ "\u2019Cause",
2551
+ "\u2019Cos",
2552
+ "\u2019Coz",
2553
+ "\u2019Cuz",
2554
+ "\u2019S",
2555
+ "\u2019X",
2556
+ "\u2019Xxx",
2557
+ "\u2019Xxxxx",
2558
+ "\u2019am",
2559
+ "\u2019bout",
2560
+ "\u2019cause",
2561
+ "\u2019cos",
2562
+ "\u2019coz",
2563
+ "\u2019cuz",
2564
+ "\u2019d",
2565
+ "\u2019em",
2566
+ "\u2019ll",
2567
+ "\u2019m",
2568
+ "\u2019nuff",
2569
+ "\u2019re",
2570
+ "\u2019s",
2571
+ "\u2019ve",
2572
+ "\u2019x",
2573
+ "\u2019xx",
2574
+ "\u2019xxx",
2575
+ "\u2019xxxx",
2576
+ "\u2019y",
2577
+ "\u2019\u2019",
2578
+ "\u2501",
2579
+ "\u253b",
2580
+ "\u253b\u2501\u253b",
2581
+ "\u256f",
2582
+ "\u25a1",
2583
+ "\ufe35",
2584
+ "\uff09"
2585
+ ]
vocab/vectors ADDED
Binary file (128 Bytes). View file
 
vocab/vectors.cfg ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+ "mode":"default"
3
+ }