hussnainahmedsaqib commited on
Commit
a8f44f8
1 Parent(s): 4fa8bb5

Update spaCy pipeline

Browse files
.gitattributes CHANGED
@@ -33,3 +33,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ en_roberta_re_pipeline-any-py3-none-any.whl filter=lfs diff=lfs merge=lfs -text
37
+ transformer/model filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - spacy
4
+ language:
5
+ - en
6
+ model-index:
7
+ - name: en_roberta_re_pipeline
8
+ results: []
9
+ ---
10
+ | Feature | Description |
11
+ | --- | --- |
12
+ | **Name** | `en_roberta_re_pipeline` |
13
+ | **Version** | `0.0.0` |
14
+ | **spaCy** | `>=3.5.1,<3.6.0` |
15
+ | **Default Pipeline** | `transformer`, `relation_extractor` |
16
+ | **Components** | `transformer`, `relation_extractor` |
17
+ | **Vectors** | 0 keys, 0 unique vectors (0 dimensions) |
18
+ | **Sources** | n/a |
19
+ | **License** | n/a |
20
+ | **Author** | [n/a]() |
21
+
22
+ ### Label Scheme
23
+
24
+ <details>
25
+
26
+ <summary>View label scheme (2 labels for 1 components)</summary>
27
+
28
+ | Component | Labels |
29
+ | --- | --- |
30
+ | **`relation_extractor`** | `DEGREE_IN`, `EXPERIENCE_IN` |
31
+
32
+ </details>
33
+
34
+ ### Accuracy
35
+
36
+ | Type | Score |
37
+ | --- | --- |
38
+ | `REL_MICRO_P` | 83.56 |
39
+ | `REL_MICRO_R` | 64.21 |
40
+ | `REL_MICRO_F` | 72.62 |
41
+ | `TRANSFORMER_LOSS` | 0.22 |
42
+ | `RELATION_EXTRACTOR_LOSS` | 158.63 |
config.cfg ADDED
@@ -0,0 +1,142 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [paths]
2
+ train = "data/relations_training.spacy"
3
+ dev = "data/relations_dev.spacy"
4
+ raw = null
5
+ init_tok2vec = null
6
+ vectors = null
7
+
8
+ [system]
9
+ seed = 342
10
+ gpu_allocator = "pytorch"
11
+
12
+ [nlp]
13
+ lang = "en"
14
+ pipeline = ["transformer","relation_extractor"]
15
+ disabled = []
16
+ before_creation = null
17
+ after_creation = null
18
+ after_pipeline_creation = null
19
+ tokenizer = {"@tokenizers":"spacy.Tokenizer.v1"}
20
+ batch_size = 1000
21
+
22
+ [components]
23
+
24
+ [components.relation_extractor]
25
+ factory = "relation_extractor"
26
+ threshold = 0.5
27
+
28
+ [components.relation_extractor.model]
29
+ @architectures = "rel_model.v1"
30
+
31
+ [components.relation_extractor.model.classification_layer]
32
+ @architectures = "rel_classification_layer.v1"
33
+ nI = null
34
+ nO = null
35
+
36
+ [components.relation_extractor.model.create_instance_tensor]
37
+ @architectures = "rel_instance_tensor.v1"
38
+ pooling = {"@layers":"reduce_mean.v1"}
39
+
40
+ [components.relation_extractor.model.create_instance_tensor.get_instances]
41
+ @misc = "rel_instance_generator.v1"
42
+ max_length = 100
43
+
44
+ [components.relation_extractor.model.create_instance_tensor.tok2vec]
45
+ @architectures = "spacy-transformers.TransformerListener.v1"
46
+ grad_factor = 1.0
47
+ pooling = {"@layers":"reduce_mean.v1"}
48
+ upstream = "*"
49
+
50
+ [components.transformer]
51
+ factory = "transformer"
52
+ max_batch_items = 4096
53
+ set_extra_annotations = {"@annotation_setters":"spacy-transformers.null_annotation_setter.v1"}
54
+
55
+ [components.transformer.model]
56
+ @architectures = "spacy-transformers.TransformerModel.v3"
57
+ name = "roberta-base"
58
+ mixed_precision = false
59
+
60
+ [components.transformer.model.get_spans]
61
+ @span_getters = "spacy-transformers.strided_spans.v1"
62
+ window = 64
63
+ stride = 48
64
+
65
+ [components.transformer.model.grad_scaler_config]
66
+
67
+ [components.transformer.model.tokenizer_config]
68
+ use_fast = true
69
+
70
+ [components.transformer.model.transformer_config]
71
+
72
+ [corpora]
73
+
74
+ [corpora.dev]
75
+ @readers = "Gold_ents_Corpus.v1"
76
+ file = ${paths.dev}
77
+
78
+ [corpora.train]
79
+ @readers = "Gold_ents_Corpus.v1"
80
+ file = ${paths.train}
81
+
82
+ [training]
83
+ seed = ${system.seed}
84
+ gpu_allocator = ${system.gpu_allocator}
85
+ dropout = 0.1
86
+ accumulate_gradient = 1
87
+ patience = 1600000
88
+ max_epochs = 0
89
+ max_steps = 1000
90
+ eval_frequency = 100
91
+ frozen_components = []
92
+ dev_corpus = "corpora.dev"
93
+ train_corpus = "corpora.train"
94
+ before_to_disk = null
95
+ annotating_components = []
96
+ before_update = null
97
+
98
+ [training.batcher]
99
+ @batchers = "spacy.batch_by_padded.v1"
100
+ discard_oversize = true
101
+ size = 2000
102
+ buffer = 256
103
+ get_length = null
104
+
105
+ [training.logger]
106
+ @loggers = "spacy.ConsoleLogger.v1"
107
+ progress_bar = false
108
+
109
+ [training.optimizer]
110
+ @optimizers = "Adam.v1"
111
+ beta1 = 0.9
112
+ beta2 = 0.999
113
+ L2_is_weight_decay = true
114
+ L2 = 0.01
115
+ grad_clip = 1.0
116
+ use_averages = false
117
+ eps = 0.00000001
118
+
119
+ [training.optimizer.learn_rate]
120
+ @schedules = "warmup_linear.v1"
121
+ warmup_steps = 250
122
+ total_steps = 20000
123
+ initial_rate = 0.00005
124
+
125
+ [training.score_weights]
126
+ rel_micro_p = 0.0
127
+ rel_micro_r = 0.0
128
+ rel_micro_f = 1.0
129
+
130
+ [pretraining]
131
+
132
+ [initialize]
133
+ vectors = ${paths.vectors}
134
+ init_tok2vec = ${paths.init_tok2vec}
135
+ vocab_data = null
136
+ lookups = null
137
+ before_init = null
138
+ after_init = null
139
+
140
+ [initialize.components]
141
+
142
+ [initialize.tokenizer]
en_roberta_re_pipeline-any-py3-none-any.whl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3d68ee64344dfaeb867f4c65c4ad758f6b9ff172f2c1329d11467f01a414ccbe
3
+ size 425525969
meta.json ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lang":"en",
3
+ "name":"roberta_re_pipeline",
4
+ "version":"0.0.0",
5
+ "description":"",
6
+ "author":"",
7
+ "email":"",
8
+ "url":"",
9
+ "license":"",
10
+ "spacy_version":">=3.5.1,<3.6.0",
11
+ "spacy_git_version":"Unknown",
12
+ "vectors":{
13
+ "width":0,
14
+ "vectors":0,
15
+ "keys":0,
16
+ "name":null
17
+ },
18
+ "labels":{
19
+ "transformer":[
20
+
21
+ ],
22
+ "relation_extractor":[
23
+ "DEGREE_IN",
24
+ "EXPERIENCE_IN"
25
+ ]
26
+ },
27
+ "pipeline":[
28
+ "transformer",
29
+ "relation_extractor"
30
+ ],
31
+ "components":[
32
+ "transformer",
33
+ "relation_extractor"
34
+ ],
35
+ "disabled":[
36
+
37
+ ],
38
+ "performance":{
39
+ "rel_micro_p":0.8356164384,
40
+ "rel_micro_r":0.6421052632,
41
+ "rel_micro_f":0.7261904762,
42
+ "transformer_loss":0.0021927262,
43
+ "relation_extractor_loss":1.5863276524
44
+ },
45
+ "requirements":[
46
+ "spacy-transformers>=1.2.2,<1.3.0"
47
+ ]
48
+ }
rel_model.py ADDED
@@ -0,0 +1,110 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from typing import List, Tuple, Callable
2
+
3
+ import spacy
4
+ from spacy.tokens import Doc, Span
5
+ from thinc.types import Floats2d, Ints1d, Ragged, cast
6
+ from thinc.api import Model, Linear, chain, Logistic
7
+
8
+
9
+ @spacy.registry.architectures("rel_model.v1")
10
+ def create_relation_model(
11
+ create_instance_tensor: Model[List[Doc], Floats2d],
12
+ classification_layer: Model[Floats2d, Floats2d],
13
+ ) -> Model[List[Doc], Floats2d]:
14
+ with Model.define_operators({">>": chain}):
15
+ model = create_instance_tensor >> classification_layer
16
+ model.attrs["get_instances"] = create_instance_tensor.attrs["get_instances"]
17
+ return model
18
+
19
+
20
+ @spacy.registry.architectures("rel_classification_layer.v1")
21
+ def create_classification_layer(
22
+ nO: int = None, nI: int = None
23
+ ) -> Model[Floats2d, Floats2d]:
24
+ with Model.define_operators({">>": chain}):
25
+ return Linear(nO=nO, nI=nI) >> Logistic()
26
+
27
+
28
+ @spacy.registry.misc("rel_instance_generator.v1")
29
+ def create_instances(max_length: int) -> Callable[[Doc], List[Tuple[Span, Span]]]:
30
+ def get_instances(doc: Doc) -> List[Tuple[Span, Span]]:
31
+ instances = []
32
+ for ent1 in doc.ents:
33
+ for ent2 in doc.ents:
34
+ if ent1 != ent2:
35
+ if max_length and abs(ent2.start - ent1.start) <= max_length:
36
+ instances.append((ent1, ent2))
37
+ return instances
38
+
39
+ return get_instances
40
+
41
+
42
+ @spacy.registry.architectures("rel_instance_tensor.v1")
43
+ def create_tensors(
44
+ tok2vec: Model[List[Doc], List[Floats2d]],
45
+ pooling: Model[Ragged, Floats2d],
46
+ get_instances: Callable[[Doc], List[Tuple[Span, Span]]],
47
+ ) -> Model[List[Doc], Floats2d]:
48
+
49
+ return Model(
50
+ "instance_tensors",
51
+ instance_forward,
52
+ layers=[tok2vec, pooling],
53
+ refs={"tok2vec": tok2vec, "pooling": pooling},
54
+ attrs={"get_instances": get_instances},
55
+ init=instance_init,
56
+ )
57
+
58
+
59
+ def instance_forward(model: Model[List[Doc], Floats2d], docs: List[Doc], is_train: bool) -> Tuple[Floats2d, Callable]:
60
+ pooling = model.get_ref("pooling")
61
+ tok2vec = model.get_ref("tok2vec")
62
+ get_instances = model.attrs["get_instances"]
63
+ all_instances = [get_instances(doc) for doc in docs]
64
+ tokvecs, bp_tokvecs = tok2vec(docs, is_train)
65
+
66
+ ents = []
67
+ lengths = []
68
+
69
+ for doc_nr, (instances, tokvec) in enumerate(zip(all_instances, tokvecs)):
70
+ token_indices = []
71
+ for instance in instances:
72
+ for ent in instance:
73
+ token_indices.extend([i for i in range(ent.start, ent.end)])
74
+ lengths.append(ent.end - ent.start)
75
+ ents.append(tokvec[token_indices])
76
+ lengths = cast(Ints1d, model.ops.asarray(lengths, dtype="int32"))
77
+ entities = Ragged(model.ops.flatten(ents), lengths)
78
+ pooled, bp_pooled = pooling(entities, is_train)
79
+
80
+ # Reshape so that pairs of rows are concatenated
81
+ relations = model.ops.reshape2f(pooled, -1, pooled.shape[1] * 2)
82
+
83
+ def backprop(d_relations: Floats2d) -> List[Doc]:
84
+ d_pooled = model.ops.reshape2f(d_relations, d_relations.shape[0] * 2, -1)
85
+ d_ents = bp_pooled(d_pooled).data
86
+ d_tokvecs = []
87
+ ent_index = 0
88
+ for doc_nr, instances in enumerate(all_instances):
89
+ shape = tokvecs[doc_nr].shape
90
+ d_tokvec = model.ops.alloc2f(*shape)
91
+ count_occ = model.ops.alloc2f(*shape)
92
+ for instance in instances:
93
+ for ent in instance:
94
+ d_tokvec[ent.start : ent.end] += d_ents[ent_index]
95
+ count_occ[ent.start : ent.end] += 1
96
+ ent_index += ent.end - ent.start
97
+ d_tokvec /= count_occ + 0.00000000001
98
+ d_tokvecs.append(d_tokvec)
99
+
100
+ d_docs = bp_tokvecs(d_tokvecs)
101
+ return d_docs
102
+
103
+ return relations, backprop
104
+
105
+
106
+ def instance_init(model: Model, X: List[Doc] = None, Y: Floats2d = None) -> Model:
107
+ tok2vec = model.get_ref("tok2vec")
108
+ if X is not None:
109
+ tok2vec.initialize(X)
110
+ return model
rel_pipe.py ADDED
@@ -0,0 +1,225 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from itertools import islice
2
+ from typing import Tuple, List, Iterable, Optional, Dict, Callable, Any
3
+
4
+ from spacy.scorer import PRFScore
5
+ from thinc.types import Floats2d
6
+ import numpy
7
+ from spacy.training.example import Example
8
+ from thinc.api import Model, Optimizer
9
+ from spacy.tokens.doc import Doc
10
+ from spacy.pipeline.trainable_pipe import TrainablePipe
11
+ from spacy.vocab import Vocab
12
+ from spacy import Language
13
+ from thinc.model import set_dropout_rate
14
+ from wasabi import Printer
15
+
16
+
17
+ Doc.set_extension("rel", default={}, force=True)
18
+ msg = Printer()
19
+
20
+
21
+ @Language.factory(
22
+ "relation_extractor",
23
+ requires=["doc.ents", "token.ent_iob", "token.ent_type"],
24
+ assigns=["doc._.rel"],
25
+ default_score_weights={
26
+ "rel_micro_p": None,
27
+ "rel_micro_r": None,
28
+ "rel_micro_f": None,
29
+ },
30
+ )
31
+ def make_relation_extractor(
32
+ nlp: Language, name: str, model: Model, *, threshold: float
33
+ ):
34
+ """Construct a RelationExtractor component."""
35
+ return RelationExtractor(nlp.vocab, model, name, threshold=threshold)
36
+
37
+
38
+ class RelationExtractor(TrainablePipe):
39
+ def __init__(
40
+ self,
41
+ vocab: Vocab,
42
+ model: Model,
43
+ name: str = "rel",
44
+ *,
45
+ threshold: float,
46
+ ) -> None:
47
+ """Initialize a relation extractor."""
48
+ self.vocab = vocab
49
+ self.model = model
50
+ self.name = name
51
+ self.cfg = {"labels": [], "threshold": threshold}
52
+
53
+ @property
54
+ def labels(self) -> Tuple[str]:
55
+ """Returns the labels currently added to the component."""
56
+ return tuple(self.cfg["labels"])
57
+
58
+ @property
59
+ def threshold(self) -> float:
60
+ """Returns the threshold above which a prediction is seen as 'True'."""
61
+ return self.cfg["threshold"]
62
+
63
+ def add_label(self, label: str) -> int:
64
+ """Add a new label to the pipe."""
65
+ if not isinstance(label, str):
66
+ raise ValueError("Only strings can be added as labels to the RelationExtractor")
67
+ if label in self.labels:
68
+ return 0
69
+ self.cfg["labels"] = list(self.labels) + [label]
70
+ return 1
71
+
72
+ def __call__(self, doc: Doc) -> Doc:
73
+ """Apply the pipe to a Doc."""
74
+ # check that there are actually any candidate instances in this batch of examples
75
+ total_instances = len(self.model.attrs["get_instances"](doc))
76
+ if total_instances == 0:
77
+ msg.info("Could not determine any instances in doc - returning doc as is.")
78
+ return doc
79
+
80
+ predictions = self.predict([doc])
81
+ self.set_annotations([doc], predictions)
82
+ return doc
83
+
84
+ def predict(self, docs: Iterable[Doc]) -> Floats2d:
85
+ """Apply the pipeline's model to a batch of docs, without modifying them."""
86
+ get_instances = self.model.attrs["get_instances"]
87
+ total_instances = sum([len(get_instances(doc)) for doc in docs])
88
+ if total_instances == 0:
89
+ msg.info("Could not determine any instances in any docs - can not make any predictions.")
90
+ scores = self.model.predict(docs)
91
+ return self.model.ops.asarray(scores)
92
+
93
+ def set_annotations(self, docs: Iterable[Doc], scores: Floats2d) -> None:
94
+ """Modify a batch of `Doc` objects, using pre-computed scores."""
95
+ c = 0
96
+ get_instances = self.model.attrs["get_instances"]
97
+ for doc in docs:
98
+ for (e1, e2) in get_instances(doc):
99
+ offset = (e1.start, e2.start)
100
+ if offset not in doc._.rel:
101
+ doc._.rel[offset] = {}
102
+ for j, label in enumerate(self.labels):
103
+ doc._.rel[offset][label] = scores[c, j]
104
+ c += 1
105
+
106
+ def update(
107
+ self,
108
+ examples: Iterable[Example],
109
+ *,
110
+ drop: float = 0.0,
111
+ set_annotations: bool = False,
112
+ sgd: Optional[Optimizer] = None,
113
+ losses: Optional[Dict[str, float]] = None,
114
+ ) -> Dict[str, float]:
115
+ """Learn from a batch of documents and gold-standard information,
116
+ updating the pipe's model. Delegates to predict and get_loss."""
117
+ if losses is None:
118
+ losses = {}
119
+ losses.setdefault(self.name, 0.0)
120
+ set_dropout_rate(self.model, drop)
121
+
122
+ # check that there are actually any candidate instances in this batch of examples
123
+ total_instances = 0
124
+ for eg in examples:
125
+ total_instances += len(self.model.attrs["get_instances"](eg.predicted))
126
+ if total_instances == 0:
127
+ msg.info("Could not determine any instances in doc.")
128
+ return losses
129
+
130
+ # run the model
131
+ docs = [eg.predicted for eg in examples]
132
+ predictions, backprop = self.model.begin_update(docs)
133
+ loss, gradient = self.get_loss(examples, predictions)
134
+ backprop(gradient)
135
+ if sgd is not None:
136
+ self.model.finish_update(sgd)
137
+ losses[self.name] += loss
138
+ if set_annotations:
139
+ self.set_annotations(docs, predictions)
140
+ return losses
141
+
142
+ def get_loss(self, examples: Iterable[Example], scores) -> Tuple[float, float]:
143
+ """Find the loss and gradient of loss for the batch of documents and
144
+ their predicted scores."""
145
+ truths = self._examples_to_truth(examples)
146
+ gradient = scores - truths
147
+ mean_square_error = (gradient ** 2).sum(axis=1).mean()
148
+ return float(mean_square_error), gradient
149
+
150
+ def initialize(
151
+ self,
152
+ get_examples: Callable[[], Iterable[Example]],
153
+ *,
154
+ nlp: Language = None,
155
+ labels: Optional[List[str]] = None,
156
+ ):
157
+ """Initialize the pipe for training, using a representative set
158
+ of data examples.
159
+ """
160
+ if labels is not None:
161
+ for label in labels:
162
+ self.add_label(label)
163
+ else:
164
+ for example in get_examples():
165
+ relations = example.reference._.rel
166
+ for indices, label_dict in relations.items():
167
+ for label in label_dict.keys():
168
+ self.add_label(label)
169
+ self._require_labels()
170
+
171
+ subbatch = list(islice(get_examples(), 10))
172
+ doc_sample = [eg.reference for eg in subbatch]
173
+ label_sample = self._examples_to_truth(subbatch)
174
+ if label_sample is None:
175
+ raise ValueError("Call begin_training with relevant entities and relations annotated in "
176
+ "at least a few reference examples!")
177
+ self.model.initialize(X=doc_sample, Y=label_sample)
178
+
179
+ def _examples_to_truth(self, examples: List[Example]) -> Optional[numpy.ndarray]:
180
+ # check that there are actually any candidate instances in this batch of examples
181
+ nr_instances = 0
182
+ for eg in examples:
183
+ nr_instances += len(self.model.attrs["get_instances"](eg.reference))
184
+ if nr_instances == 0:
185
+ return None
186
+
187
+ truths = numpy.zeros((nr_instances, len(self.labels)), dtype="f")
188
+ c = 0
189
+ for i, eg in enumerate(examples):
190
+ for (e1, e2) in self.model.attrs["get_instances"](eg.reference):
191
+ gold_label_dict = eg.reference._.rel.get((e1.start, e2.start), {})
192
+ for j, label in enumerate(self.labels):
193
+ truths[c, j] = gold_label_dict.get(label, 0)
194
+ c += 1
195
+
196
+ truths = self.model.ops.asarray(truths)
197
+ return truths
198
+
199
+ def score(self, examples: Iterable[Example], **kwargs) -> Dict[str, Any]:
200
+ """Score a batch of examples."""
201
+ return score_relations(examples, self.threshold)
202
+
203
+
204
+ def score_relations(examples: Iterable[Example], threshold: float) -> Dict[str, Any]:
205
+ """Score a batch of examples."""
206
+ micro_prf = PRFScore()
207
+ for example in examples:
208
+ gold = example.reference._.rel
209
+ pred = example.predicted._.rel
210
+ for key, pred_dict in pred.items():
211
+ gold_labels = [k for (k, v) in gold[key].items() if v == 1.0]
212
+ for k, v in pred_dict.items():
213
+ if v >= threshold:
214
+ if k in gold_labels:
215
+ micro_prf.tp += 1
216
+ else:
217
+ micro_prf.fp += 1
218
+ else:
219
+ if k in gold_labels:
220
+ micro_prf.fn += 1
221
+ return {
222
+ "rel_micro_p": micro_prf.precision,
223
+ "rel_micro_r": micro_prf.recall,
224
+ "rel_micro_f": micro_prf.fscore,
225
+ }
relation_extractor/cfg ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "labels":[
3
+ "DEGREE_IN",
4
+ "EXPERIENCE_IN"
5
+ ],
6
+ "threshold":0.5
7
+ }
relation_extractor/model ADDED
Binary file (13 kB). View file
 
tokenizer ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ ��prefix_search� �^§|^%|^=|^—|^–|^\+(?![0-9])|^…|^……|^,|^:|^;|^\!|^\?|^¿|^؟|^¡|^\(|^\)|^\[|^\]|^\{|^\}|^<|^>|^_|^#|^\*|^&|^。|^?|^!|^,|^、|^;|^:|^~|^·|^।|^،|^۔|^؛|^٪|^\.\.+|^…|^\'|^"|^”|^“|^`|^‘|^´|^’|^‚|^,|^„|^»|^«|^「|^」|^『|^』|^(|^)|^〔|^〕|^【|^】|^《|^》|^〈|^〉|^〈|^〉|^⟦|^⟧|^\$|^£|^€|^¥|^฿|^US\$|^C\$|^A\$|^₽|^﷼|^₴|^₠|^₡|^₢|^₣|^₤|^₥|^₦|^₧|^₨|^₩|^₪|^₫|^€|^₭|^₮|^₯|^₰|^₱|^₲|^₳|^₴|^₵|^₶|^₷|^₸|^₹|^₺|^₻|^₼|^₽|^₾|^₿|^[\u00A6\u00A9\u00AE\u00B0\u0482\u058D\u058E\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u09FA\u0B70\u0BF3-\u0BF8\u0BFA\u0C7F\u0D4F\u0D79\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116\u2117\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u214A\u214C\u214D\u214F\u218A\u218B\u2195-\u2199\u219C-\u219F\u21A1\u21A2\u21A4\u21A5\u21A7-\u21AD\u21AF-\u21CD\u21D0\u21D1\u21D3\u21D5-\u21F3\u2300-\u2307\u230C-\u231F\u2322-\u2328\u232B-\u237B\u237D-\u239A\u23B4-\u23DB\u23E2-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u25B6\u25B8-\u25C0\u25C2-\u25F7\u2600-\u266E\u2670-\u2767\u2794-\u27BF\u2800-\u28FF\u2B00-\u2B2F\u2B45\u2B46\u2B4D-\u2B73\u2B76-\u2B95\u2B98-\u2BC8\u2BCA-\u2BFE\u2CE5-\u2CEA\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u32FE\u3300-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA828-\uA82B\uA836\uA837\uA839\uAA77-\uAA79\uFDFD\uFFE4\uFFE8\uFFED\uFFEE\uFFFC\uFFFD\U00010137-\U0001013F\U00010179-\U00010189\U0001018C-\U0001018E\U00010190-\U0001019B\U000101A0\U000101D0-\U000101FC\U00010877\U00010878\U00010AC8\U0001173F\U00016B3C-\U00016B3F\U00016B45\U0001BC9C\U0001D000-\U0001D0F5\U0001D100-\U0001D126\U0001D129-\U0001D164\U0001D16A-\U0001D16C\U0001D183\U0001D184\U0001D18C-\U0001D1A9\U0001D1AE-\U0001D1E8\U0001D200-\U0001D241\U0001D245\U0001D300-\U0001D356\U0001D800-\U0001D9FF\U0001DA37-\U0001DA3A\U0001DA6D-\U0001DA74\U0001DA76-\U0001DA83\U0001DA85\U0001DA86\U0001ECAC\U0001F000-\U0001F02B\U0001F030-\U0001F093\U0001F0A0-\U0001F0AE\U0001F0B1-\U0001F0BF\U0001F0C1-\U0001F0CF\U0001F0D1-\U0001F0F5\U0001F110-\U0001F16B\U0001F170-\U0001F1AC\U0001F1E6-\U0001F202\U0001F210-\U0001F23B\U0001F240-\U0001F248\U0001F250\U0001F251\U0001F260-\U0001F265\U0001F300-\U0001F3FA\U0001F400-\U0001F6D4\U0001F6E0-\U0001F6EC\U0001F6F0-\U0001F6F9\U0001F700-\U0001F773\U0001F780-\U0001F7D8\U0001F800-\U0001F80B\U0001F810-\U0001F847\U0001F850-\U0001F859\U0001F860-\U0001F887\U0001F890-\U0001F8AD\U0001F900-\U0001F90B\U0001F910-\U0001F93E\U0001F940-\U0001F970\U0001F973-\U0001F976\U0001F97A\U0001F97C-\U0001F9A2\U0001F9B0-\U0001F9B9\U0001F9C0-\U0001F9C2\U0001F9D0-\U0001F9FF\U0001FA60-\U0001FA6D]�suffix_search�2�…$|……$|,$|:$|;$|\!$|\?$|¿$|؟$|¡$|\($|\)$|\[$|\]$|\{$|\}$|<$|>$|_$|#$|\*$|&$|。$|?$|!$|,$|、$|;$|:$|~$|·$|।$|،$|۔$|؛$|٪$|\.\.+$|…$|\'$|"$|”$|“$|`$|‘$|´$|’$|‚$|,$|„$|»$|«$|「$|」$|『$|』$|($|)$|〔$|〕$|【$|】$|《$|》$|〈$|〉$|〈$|〉$|⟦$|⟧$|[\u00A6\u00A9\u00AE\u00B0\u0482\u058D\u058E\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u09FA\u0B70\u0BF3-\u0BF8\u0BFA\u0C7F\u0D4F\u0D79\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116\u2117\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u214A\u214C\u214D\u214F\u218A\u218B\u2195-\u2199\u219C-\u219F\u21A1\u21A2\u21A4\u21A5\u21A7-\u21AD\u21AF-\u21CD\u21D0\u21D1\u21D3\u21D5-\u21F3\u2300-\u2307\u230C-\u231F\u2322-\u2328\u232B-\u237B\u237D-\u239A\u23B4-\u23DB\u23E2-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u25B6\u25B8-\u25C0\u25C2-\u25F7\u2600-\u266E\u2670-\u2767\u2794-\u27BF\u2800-\u28FF\u2B00-\u2B2F\u2B45\u2B46\u2B4D-\u2B73\u2B76-\u2B95\u2B98-\u2BC8\u2BCA-\u2BFE\u2CE5-\u2CEA\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u32FE\u3300-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA828-\uA82B\uA836\uA837\uA839\uAA77-\uAA79\uFDFD\uFFE4\uFFE8\uFFED\uFFEE\uFFFC\uFFFD\U00010137-\U0001013F\U00010179-\U00010189\U0001018C-\U0001018E\U00010190-\U0001019B\U000101A0\U000101D0-\U000101FC\U00010877\U00010878\U00010AC8\U0001173F\U00016B3C-\U00016B3F\U00016B45\U0001BC9C\U0001D000-\U0001D0F5\U0001D100-\U0001D126\U0001D129-\U0001D164\U0001D16A-\U0001D16C\U0001D183\U0001D184\U0001D18C-\U0001D1A9\U0001D1AE-\U0001D1E8\U0001D200-\U0001D241\U0001D245\U0001D300-\U0001D356\U0001D800-\U0001D9FF\U0001DA37-\U0001DA3A\U0001DA6D-\U0001DA74\U0001DA76-\U0001DA83\U0001DA85\U0001DA86\U0001ECAC\U0001F000-\U0001F02B\U0001F030-\U0001F093\U0001F0A0-\U0001F0AE\U0001F0B1-\U0001F0BF\U0001F0C1-\U0001F0CF\U0001F0D1-\U0001F0F5\U0001F110-\U0001F16B\U0001F170-\U0001F1AC\U0001F1E6-\U0001F202\U0001F210-\U0001F23B\U0001F240-\U0001F248\U0001F250\U0001F251\U0001F260-\U0001F265\U0001F300-\U0001F3FA\U0001F400-\U0001F6D4\U0001F6E0-\U0001F6EC\U0001F6F0-\U0001F6F9\U0001F700-\U0001F773\U0001F780-\U0001F7D8\U0001F800-\U0001F80B\U0001F810-\U0001F847\U0001F850-\U0001F859\U0001F860-\U0001F887\U0001F890-\U0001F8AD\U0001F900-\U0001F90B\U0001F910-\U0001F93E\U0001F940-\U0001F970\U0001F973-\U0001F976\U0001F97A\U0001F97C-\U0001F9A2\U0001F9B0-\U0001F9B9\U0001F9C0-\U0001F9C2\U0001F9D0-\U0001F9FF\U0001FA60-\U0001FA6D]$|'s$|'S$|’s$|’S$|—$|–$|(?<=[0-9])\+$|(?<=°[FfCcKk])\.$|(?<=[0-9])(?:\$|£|€|¥|฿|US\$|C\$|A\$|₽|﷼|₴|₠|₡|₢|₣|₤|₥|₦|₧|₨|₩|₪|₫|€|₭|₮|₯|₰|₱|₲|₳|₴|₵|₶|₷|₸|₹|₺|₻|₼|₽|₾|₿)$|(?<=[0-9])(?:km|km²|km³|m|m²|m³|dm|dm²|dm³|cm|cm²|cm³|mm|mm²|mm³|ha|µm|nm|yd|in|ft|kg|g|mg|µg|t|lb|oz|m/s|km/h|kmh|mph|hPa|Pa|mbar|mb|MB|kb|KB|gb|GB|tb|TB|T|G|M|K|%|км|км²|км³|м|м²|м³|дм|дм²|дм³|см|см²|см³|мм|мм²|мм³|нм|кг|г|мг|м/с|км/ч|кПа|Па|мбар|Кб|КБ|кб|Мб|МБ|мб|Гб|ГБ|гб|Тб|ТБ|тбكم|كم²|كم³|م|م²|م³|سم|سم²|سم³|مم|مم²|مم³|كم|غرام|جرام|جم|كغ|ملغ|كوب|اكواب)$|(?<=[0-9a-z\uFF41-\uFF5A\u00DF-\u00F6\u00F8-\u00FF\u0101\u0103\u0105\u0107\u0109\u010B\u010D\u010F\u0111\u0113\u0115\u0117\u0119\u011B\u011D\u011F\u0121\u0123\u0125\u0127\u0129\u012B\u012D\u012F\u0131\u0133\u0135\u0137\u0138\u013A\u013C\u013E\u0140\u0142\u0144\u0146\u0148\u0149\u014B\u014D\u014F\u0151\u0153\u0155\u0157\u0159\u015B\u015D\u015F\u0161\u0163\u0165\u0167\u0169\u016B\u016D\u016F\u0171\u0173\u0175\u0177\u017A\u017C\u017E\u017F\u0180\u0183\u0185\u0188\u018C\u018D\u0192\u0195\u0199-\u019B\u019E\u01A1\u01A3\u01A5\u01A8\u01AA\u01AB\u01AD\u01B0\u01B4\u01B6\u01B9\u01BA\u01BD-\u01BF\u01C6\u01C9\u01CC\u01CE\u01D0\u01D2\u01D4\u01D6\u01D8\u01DA\u01DC\u01DD\u01DF\u01E1\u01E3\u01E5\u01E7\u01E9\u01EB\u01ED\u01EF\u01F0\u01F3\u01F5\u01F9\u01FB\u01FD\u01FF\u0201\u0203\u0205\u0207\u0209\u020B\u020D\u020F\u0211\u0213\u0215\u0217\u0219\u021B\u021D\u021F\u0221\u0223\u0225\u0227\u0229\u022B\u022D\u022F\u0231\u0233-\u0239\u023C\u023F\u0240\u0242\u0247\u0249\u024B\u024D\u024F\u2C61\u2C65\u2C66\u2C68\u2C6A\u2C6C\u2C71\u2C73\u2C74\u2C76-\u2C7B\uA723\uA725\uA727\uA729\uA72B\uA72D\uA72F-\uA731\uA733\uA735\uA737\uA739\uA73B\uA73D\uA73F\uA741\uA743\uA745\uA747\uA749\uA74B\uA74D\uA74F\uA751\uA753\uA755\uA757\uA759\uA75B\uA75D\uA75F\uA761\uA763\uA765\uA767\uA769\uA76B\uA76D\uA76F\uA771-\uA778\uA77A\uA77C\uA77F\uA781\uA783\uA785\uA787\uA78C\uA78E\uA791\uA793-\uA795\uA797\uA799\uA79B\uA79D\uA79F\uA7A1\uA7A3\uA7A5\uA7A7\uA7A9\uA7AF\uA7B5\uA7B7\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E01\u1E03\u1E05\u1E07\u1E09\u1E0B\u1E0D\u1E0F\u1E11\u1E13\u1E15\u1E17\u1E19\u1E1B\u1E1D\u1E1F\u1E21\u1E23\u1E25\u1E27\u1E29\u1E2B\u1E2D\u1E2F\u1E31\u1E33\u1E35\u1E37\u1E39\u1E3B\u1E3D\u1E3F\u1E41\u1E43\u1E45\u1E47\u1E49\u1E4B\u1E4D\u1E4F\u1E51\u1E53\u1E55\u1E57\u1E59\u1E5B\u1E5D\u1E5F\u1E61\u1E63\u1E65\u1E67\u1E69\u1E6B\u1E6D\u1E6F\u1E71\u1E73\u1E75\u1E77\u1E79\u1E7B\u1E7D\u1E7F\u1E81\u1E83\u1E85\u1E87\u1E89\u1E8B\u1E8D\u1E8F\u1E91\u1E93\u1E95-\u1E9D\u1E9F\u1EA1\u1EA3\u1EA5\u1EA7\u1EA9\u1EAB\u1EAD\u1EAF\u1EB1\u1EB3\u1EB5\u1EB7\u1EB9\u1EBB\u1EBD\u1EBF\u1EC1\u1EC3\u1EC5\u1EC7\u1EC9\u1ECB\u1ECD\u1ECF\u1ED1\u1ED3\u1ED5\u1ED7\u1ED9\u1EDB\u1EDD\u1EDF\u1EE1\u1EE3\u1EE5\u1EE7\u1EE9\u1EEB\u1EED\u1EEF\u1EF1\u1EF3\u1EF5\u1EF7\u1EF9\u1EFB\u1EFD\u1EFFёа-яәөүҗңһα-ωάέίόώήύа-щюяіїєґѓѕјљњќѐѝ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F%²\-\+…|……|,|:|;|\!|\?|¿|؟|¡|\(|\)|\[|\]|\{|\}|<|>|_|#|\*|&|。|?|!|,|、|;|:|~|·|।|،|۔|؛|٪(?:\'"”“`‘´’‚,„»«「」『』()〔〕【】《》〈〉〈〉⟦⟧)])\.$|(?<=[A-Z\uFF21-\uFF3A\u00C0-\u00D6\u00D8-\u00DE\u0100\u0102\u0104\u0106\u0108\u010A\u010C\u010E\u0110\u0112\u0114\u0116\u0118\u011A\u011C\u011E\u0120\u0122\u0124\u0126\u0128\u012A\u012C\u012E\u0130\u0132\u0134\u0136\u0139\u013B\u013D\u013F\u0141\u0143\u0145\u0147\u014A\u014C\u014E\u0150\u0152\u0154\u0156\u0158\u015A\u015C\u015E\u0160\u0162\u0164\u0166\u0168\u016A\u016C\u016E\u0170\u0172\u0174\u0176\u0178\u0179\u017B\u017D\u0181\u0182\u0184\u0186\u0187\u0189-\u018B\u018E-\u0191\u0193\u0194\u0196-\u0198\u019C\u019D\u019F\u01A0\u01A2\u01A4\u01A6\u01A7\u01A9\u01AC\u01AE\u01AF\u01B1-\u01B3\u01B5\u01B7\u01B8\u01BC\u01C4\u01C7\u01CA\u01CD\u01CF\u01D1\u01D3\u01D5\u01D7\u01D9\u01DB\u01DE\u01E0\u01E2\u01E4\u01E6\u01E8\u01EA\u01EC\u01EE\u01F1\u01F4\u01F6-\u01F8\u01FA\u01FC\u01FE\u0200\u0202\u0204\u0206\u0208\u020A\u020C\u020E\u0210\u0212\u0214\u0216\u0218\u021A\u021C\u021E\u0220\u0222\u0224\u0226\u0228\u022A\u022C\u022E\u0230\u0232\u023A\u023B\u023D\u023E\u0241\u0243-\u0246\u0248\u024A\u024C\u024E\u2C60\u2C62-\u2C64\u2C67\u2C69\u2C6B\u2C6D-\u2C70\u2C72\u2C75\u2C7E\u2C7F\uA722\uA724\uA726\uA728\uA72A\uA72C\uA72E\uA732\uA734\uA736\uA738\uA73A\uA73C\uA73E\uA740\uA742\uA744\uA746\uA748\uA74A\uA74C\uA74E\uA750\uA752\uA754\uA756\uA758\uA75A\uA75C\uA75E\uA760\uA762\uA764\uA766\uA768\uA76A\uA76C\uA76E\uA779\uA77B\uA77D\uA77E\uA780\uA782\uA784\uA786\uA78B\uA78D\uA790\uA792\uA796\uA798\uA79A\uA79C\uA79E\uA7A0\uA7A2\uA7A4\uA7A6\uA7A8\uA7AA-\uA7AE\uA7B0-\uA7B4\uA7B6\uA7B8\u1E00\u1E02\u1E04\u1E06\u1E08\u1E0A\u1E0C\u1E0E\u1E10\u1E12\u1E14\u1E16\u1E18\u1E1A\u1E1C\u1E1E\u1E20\u1E22\u1E24\u1E26\u1E28\u1E2A\u1E2C\u1E2E\u1E30\u1E32\u1E34\u1E36\u1E38\u1E3A\u1E3C\u1E3E\u1E40\u1E42\u1E44\u1E46\u1E48\u1E4A\u1E4C\u1E4E\u1E50\u1E52\u1E54\u1E56\u1E58\u1E5A\u1E5C\u1E5E\u1E60\u1E62\u1E64\u1E66\u1E68\u1E6A\u1E6C\u1E6E\u1E70\u1E72\u1E74\u1E76\u1E78\u1E7A\u1E7C\u1E7E\u1E80\u1E82\u1E84\u1E86\u1E88\u1E8A\u1E8C\u1E8E\u1E90\u1E92\u1E94\u1E9E\u1EA0\u1EA2\u1EA4\u1EA6\u1EA8\u1EAA\u1EAC\u1EAE\u1EB0\u1EB2\u1EB4\u1EB6\u1EB8\u1EBA\u1EBC\u1EBE\u1EC0\u1EC2\u1EC4\u1EC6\u1EC8\u1ECA\u1ECC\u1ECE\u1ED0\u1ED2\u1ED4\u1ED6\u1ED8\u1EDA\u1EDC\u1EDE\u1EE0\u1EE2\u1EE4\u1EE6\u1EE8\u1EEA\u1EEC\u1EEE\u1EF0\u1EF2\u1EF4\u1EF6\u1EF8\u1EFA\u1EFC\u1EFEЁА-ЯӘӨҮҖҢҺΑ-ΩΆΈΊΌΏΉΎА-ЩЮЯІЇЄҐЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F][A-Z\uFF21-\uFF3A\u00C0-\u00D6\u00D8-\u00DE\u0100\u0102\u0104\u0106\u0108\u010A\u010C\u010E\u0110\u0112\u0114\u0116\u0118\u011A\u011C\u011E\u0120\u0122\u0124\u0126\u0128\u012A\u012C\u012E\u0130\u0132\u0134\u0136\u0139\u013B\u013D\u013F\u0141\u0143\u0145\u0147\u014A\u014C\u014E\u0150\u0152\u0154\u0156\u0158\u015A\u015C\u015E\u0160\u0162\u0164\u0166\u0168\u016A\u016C\u016E\u0170\u0172\u0174\u0176\u0178\u0179\u017B\u017D\u0181\u0182\u0184\u0186\u0187\u0189-\u018B\u018E-\u0191\u0193\u0194\u0196-\u0198\u019C\u019D\u019F\u01A0\u01A2\u01A4\u01A6\u01A7\u01A9\u01AC\u01AE\u01AF\u01B1-\u01B3\u01B5\u01B7\u01B8\u01BC\u01C4\u01C7\u01CA\u01CD\u01CF\u01D1\u01D3\u01D5\u01D7\u01D9\u01DB\u01DE\u01E0\u01E2\u01E4\u01E6\u01E8\u01EA\u01EC\u01EE\u01F1\u01F4\u01F6-\u01F8\u01FA\u01FC\u01FE\u0200\u0202\u0204\u0206\u0208\u020A\u020C\u020E\u0210\u0212\u0214\u0216\u0218\u021A\u021C\u021E\u0220\u0222\u0224\u0226\u0228\u022A\u022C\u022E\u0230\u0232\u023A\u023B\u023D\u023E\u0241\u0243-\u0246\u0248\u024A\u024C\u024E\u2C60\u2C62-\u2C64\u2C67\u2C69\u2C6B\u2C6D-\u2C70\u2C72\u2C75\u2C7E\u2C7F\uA722\uA724\uA726\uA728\uA72A\uA72C\uA72E\uA732\uA734\uA736\uA738\uA73A\uA73C\uA73E\uA740\uA742\uA744\uA746\uA748\uA74A\uA74C\uA74E\uA750\uA752\uA754\uA756\uA758\uA75A\uA75C\uA75E\uA760\uA762\uA764\uA766\uA768\uA76A\uA76C\uA76E\uA779\uA77B\uA77D\uA77E\uA780\uA782\uA784\uA786\uA78B\uA78D\uA790\uA792\uA796\uA798\uA79A\uA79C\uA79E\uA7A0\uA7A2\uA7A4\uA7A6\uA7A8\uA7AA-\uA7AE\uA7B0-\uA7B4\uA7B6\uA7B8\u1E00\u1E02\u1E04\u1E06\u1E08\u1E0A\u1E0C\u1E0E\u1E10\u1E12\u1E14\u1E16\u1E18\u1E1A\u1E1C\u1E1E\u1E20\u1E22\u1E24\u1E26\u1E28\u1E2A\u1E2C\u1E2E\u1E30\u1E32\u1E34\u1E36\u1E38\u1E3A\u1E3C\u1E3E\u1E40\u1E42\u1E44\u1E46\u1E48\u1E4A\u1E4C\u1E4E\u1E50\u1E52\u1E54\u1E56\u1E58\u1E5A\u1E5C\u1E5E\u1E60\u1E62\u1E64\u1E66\u1E68\u1E6A\u1E6C\u1E6E\u1E70\u1E72\u1E74\u1E76\u1E78\u1E7A\u1E7C\u1E7E\u1E80\u1E82\u1E84\u1E86\u1E88\u1E8A\u1E8C\u1E8E\u1E90\u1E92\u1E94\u1E9E\u1EA0\u1EA2\u1EA4\u1EA6\u1EA8\u1EAA\u1EAC\u1EAE\u1EB0\u1EB2\u1EB4\u1EB6\u1EB8\u1EBA\u1EBC\u1EBE\u1EC0\u1EC2\u1EC4\u1EC6\u1EC8\u1ECA\u1ECC\u1ECE\u1ED0\u1ED2\u1ED4\u1ED6\u1ED8\u1EDA\u1EDC\u1EDE\u1EE0\u1EE2\u1EE4\u1EE6\u1EE8\u1EEA\u1EEC\u1EEE\u1EF0\u1EF2\u1EF4\u1EF6\u1EF8\u1EFA\u1EFC\u1EFEЁА-ЯӘӨҮҖҢҺΑ-ΩΆΈΊΌΏΉΎА-ЩЮЯІЇЄҐЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])\.$�infix_finditer�>�\.\.+|…|[\u00A6\u00A9\u00AE\u00B0\u0482\u058D\u058E\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u09FA\u0B70\u0BF3-\u0BF8\u0BFA\u0C7F\u0D4F\u0D79\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116\u2117\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u214A\u214C\u214D\u214F\u218A\u218B\u2195-\u2199\u219C-\u219F\u21A1\u21A2\u21A4\u21A5\u21A7-\u21AD\u21AF-\u21CD\u21D0\u21D1\u21D3\u21D5-\u21F3\u2300-\u2307\u230C-\u231F\u2322-\u2328\u232B-\u237B\u237D-\u239A\u23B4-\u23DB\u23E2-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u25B6\u25B8-\u25C0\u25C2-\u25F7\u2600-\u266E\u2670-\u2767\u2794-\u27BF\u2800-\u28FF\u2B00-\u2B2F\u2B45\u2B46\u2B4D-\u2B73\u2B76-\u2B95\u2B98-\u2BC8\u2BCA-\u2BFE\u2CE5-\u2CEA\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u32FE\u3300-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA828-\uA82B\uA836\uA837\uA839\uAA77-\uAA79\uFDFD\uFFE4\uFFE8\uFFED\uFFEE\uFFFC\uFFFD\U00010137-\U0001013F\U00010179-\U00010189\U0001018C-\U0001018E\U00010190-\U0001019B\U000101A0\U000101D0-\U000101FC\U00010877\U00010878\U00010AC8\U0001173F\U00016B3C-\U00016B3F\U00016B45\U0001BC9C\U0001D000-\U0001D0F5\U0001D100-\U0001D126\U0001D129-\U0001D164\U0001D16A-\U0001D16C\U0001D183\U0001D184\U0001D18C-\U0001D1A9\U0001D1AE-\U0001D1E8\U0001D200-\U0001D241\U0001D245\U0001D300-\U0001D356\U0001D800-\U0001D9FF\U0001DA37-\U0001DA3A\U0001DA6D-\U0001DA74\U0001DA76-\U0001DA83\U0001DA85\U0001DA86\U0001ECAC\U0001F000-\U0001F02B\U0001F030-\U0001F093\U0001F0A0-\U0001F0AE\U0001F0B1-\U0001F0BF\U0001F0C1-\U0001F0CF\U0001F0D1-\U0001F0F5\U0001F110-\U0001F16B\U0001F170-\U0001F1AC\U0001F1E6-\U0001F202\U0001F210-\U0001F23B\U0001F240-\U0001F248\U0001F250\U0001F251\U0001F260-\U0001F265\U0001F300-\U0001F3FA\U0001F400-\U0001F6D4\U0001F6E0-\U0001F6EC\U0001F6F0-\U0001F6F9\U0001F700-\U0001F773\U0001F780-\U0001F7D8\U0001F800-\U0001F80B\U0001F810-\U0001F847\U0001F850-\U0001F859\U0001F860-\U0001F887\U0001F890-\U0001F8AD\U0001F900-\U0001F90B\U0001F910-\U0001F93E\U0001F940-\U0001F970\U0001F973-\U0001F976\U0001F97A\U0001F97C-\U0001F9A2\U0001F9B0-\U0001F9B9\U0001F9C0-\U0001F9C2\U0001F9D0-\U0001F9FF\U0001FA60-\U0001FA6D]|(?<=[0-9])[+\-\*^](?=[0-9-])|(?<=[a-z\uFF41-\uFF5A\u00DF-\u00F6\u00F8-\u00FF\u0101\u0103\u0105\u0107\u0109\u010B\u010D\u010F\u0111\u0113\u0115\u0117\u0119\u011B\u011D\u011F\u0121\u0123\u0125\u0127\u0129\u012B\u012D\u012F\u0131\u0133\u0135\u0137\u0138\u013A\u013C\u013E\u0140\u0142\u0144\u0146\u0148\u0149\u014B\u014D\u014F\u0151\u0153\u0155\u0157\u0159\u015B\u015D\u015F\u0161\u0163\u0165\u0167\u0169\u016B\u016D\u016F\u0171\u0173\u0175\u0177\u017A\u017C\u017E\u017F\u0180\u0183\u0185\u0188\u018C\u018D\u0192\u0195\u0199-\u019B\u019E\u01A1\u01A3\u01A5\u01A8\u01AA\u01AB\u01AD\u01B0\u01B4\u01B6\u01B9\u01BA\u01BD-\u01BF\u01C6\u01C9\u01CC\u01CE\u01D0\u01D2\u01D4\u01D6\u01D8\u01DA\u01DC\u01DD\u01DF\u01E1\u01E3\u01E5\u01E7\u01E9\u01EB\u01ED\u01EF\u01F0\u01F3\u01F5\u01F9\u01FB\u01FD\u01FF\u0201\u0203\u0205\u0207\u0209\u020B\u020D\u020F\u0211\u0213\u0215\u0217\u0219\u021B\u021D\u021F\u0221\u0223\u0225\u0227\u0229\u022B\u022D\u022F\u0231\u0233-\u0239\u023C\u023F\u0240\u0242\u0247\u0249\u024B\u024D\u024F\u2C61\u2C65\u2C66\u2C68\u2C6A\u2C6C\u2C71\u2C73\u2C74\u2C76-\u2C7B\uA723\uA725\uA727\uA729\uA72B\uA72D\uA72F-\uA731\uA733\uA735\uA737\uA739\uA73B\uA73D\uA73F\uA741\uA743\uA745\uA747\uA749\uA74B\uA74D\uA74F\uA751\uA753\uA755\uA757\uA759\uA75B\uA75D\uA75F\uA761\uA763\uA765\uA767\uA769\uA76B\uA76D\uA76F\uA771-\uA778\uA77A\uA77C\uA77F\uA781\uA783\uA785\uA787\uA78C\uA78E\uA791\uA793-\uA795\uA797\uA799\uA79B\uA79D\uA79F\uA7A1\uA7A3\uA7A5\uA7A7\uA7A9\uA7AF\uA7B5\uA7B7\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E01\u1E03\u1E05\u1E07\u1E09\u1E0B\u1E0D\u1E0F\u1E11\u1E13\u1E15\u1E17\u1E19\u1E1B\u1E1D\u1E1F\u1E21\u1E23\u1E25\u1E27\u1E29\u1E2B\u1E2D\u1E2F\u1E31\u1E33\u1E35\u1E37\u1E39\u1E3B\u1E3D\u1E3F\u1E41\u1E43\u1E45\u1E47\u1E49\u1E4B\u1E4D\u1E4F\u1E51\u1E53\u1E55\u1E57\u1E59\u1E5B\u1E5D\u1E5F\u1E61\u1E63\u1E65\u1E67\u1E69\u1E6B\u1E6D\u1E6F\u1E71\u1E73\u1E75\u1E77\u1E79\u1E7B\u1E7D\u1E7F\u1E81\u1E83\u1E85\u1E87\u1E89\u1E8B\u1E8D\u1E8F\u1E91\u1E93\u1E95-\u1E9D\u1E9F\u1EA1\u1EA3\u1EA5\u1EA7\u1EA9\u1EAB\u1EAD\u1EAF\u1EB1\u1EB3\u1EB5\u1EB7\u1EB9\u1EBB\u1EBD\u1EBF\u1EC1\u1EC3\u1EC5\u1EC7\u1EC9\u1ECB\u1ECD\u1ECF\u1ED1\u1ED3\u1ED5\u1ED7\u1ED9\u1EDB\u1EDD\u1EDF\u1EE1\u1EE3\u1EE5\u1EE7\u1EE9\u1EEB\u1EED\u1EEF\u1EF1\u1EF3\u1EF5\u1EF7\u1EF9\u1EFB\u1EFD\u1EFFёа-яәөүҗңһα-ωάέίόώήύа-щюяіїєґѓѕјљњќѐѝ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F\'"”“`‘´’‚,„»«「」『』()〔〕【】《》〈〉〈〉⟦⟧])\.(?=[A-Z\uFF21-\uFF3A\u00C0-\u00D6\u00D8-\u00DE\u0100\u0102\u0104\u0106\u0108\u010A\u010C\u010E\u0110\u0112\u0114\u0116\u0118\u011A\u011C\u011E\u0120\u0122\u0124\u0126\u0128\u012A\u012C\u012E\u0130\u0132\u0134\u0136\u0139\u013B\u013D\u013F\u0141\u0143\u0145\u0147\u014A\u014C\u014E\u0150\u0152\u0154\u0156\u0158\u015A\u015C\u015E\u0160\u0162\u0164\u0166\u0168\u016A\u016C\u016E\u0170\u0172\u0174\u0176\u0178\u0179\u017B\u017D\u0181\u0182\u0184\u0186\u0187\u0189-\u018B\u018E-\u0191\u0193\u0194\u0196-\u0198\u019C\u019D\u019F\u01A0\u01A2\u01A4\u01A6\u01A7\u01A9\u01AC\u01AE\u01AF\u01B1-\u01B3\u01B5\u01B7\u01B8\u01BC\u01C4\u01C7\u01CA\u01CD\u01CF\u01D1\u01D3\u01D5\u01D7\u01D9\u01DB\u01DE\u01E0\u01E2\u01E4\u01E6\u01E8\u01EA\u01EC\u01EE\u01F1\u01F4\u01F6-\u01F8\u01FA\u01FC\u01FE\u0200\u0202\u0204\u0206\u0208\u020A\u020C\u020E\u0210\u0212\u0214\u0216\u0218\u021A\u021C\u021E\u0220\u0222\u0224\u0226\u0228\u022A\u022C\u022E\u0230\u0232\u023A\u023B\u023D\u023E\u0241\u0243-\u0246\u0248\u024A\u024C\u024E\u2C60\u2C62-\u2C64\u2C67\u2C69\u2C6B\u2C6D-\u2C70\u2C72\u2C75\u2C7E\u2C7F\uA722\uA724\uA726\uA728\uA72A\uA72C\uA72E\uA732\uA734\uA736\uA738\uA73A\uA73C\uA73E\uA740\uA742\uA744\uA746\uA748\uA74A\uA74C\uA74E\uA750\uA752\uA754\uA756\uA758\uA75A\uA75C\uA75E\uA760\uA762\uA764\uA766\uA768\uA76A\uA76C\uA76E\uA779\uA77B\uA77D\uA77E\uA780\uA782\uA784\uA786\uA78B\uA78D\uA790\uA792\uA796\uA798\uA79A\uA79C\uA79E\uA7A0\uA7A2\uA7A4\uA7A6\uA7A8\uA7AA-\uA7AE\uA7B0-\uA7B4\uA7B6\uA7B8\u1E00\u1E02\u1E04\u1E06\u1E08\u1E0A\u1E0C\u1E0E\u1E10\u1E12\u1E14\u1E16\u1E18\u1E1A\u1E1C\u1E1E\u1E20\u1E22\u1E24\u1E26\u1E28\u1E2A\u1E2C\u1E2E\u1E30\u1E32\u1E34\u1E36\u1E38\u1E3A\u1E3C\u1E3E\u1E40\u1E42\u1E44\u1E46\u1E48\u1E4A\u1E4C\u1E4E\u1E50\u1E52\u1E54\u1E56\u1E58\u1E5A\u1E5C\u1E5E\u1E60\u1E62\u1E64\u1E66\u1E68\u1E6A\u1E6C\u1E6E\u1E70\u1E72\u1E74\u1E76\u1E78\u1E7A\u1E7C\u1E7E\u1E80\u1E82\u1E84\u1E86\u1E88\u1E8A\u1E8C\u1E8E\u1E90\u1E92\u1E94\u1E9E\u1EA0\u1EA2\u1EA4\u1EA6\u1EA8\u1EAA\u1EAC\u1EAE\u1EB0\u1EB2\u1EB4\u1EB6\u1EB8\u1EBA\u1EBC\u1EBE\u1EC0\u1EC2\u1EC4\u1EC6\u1EC8\u1ECA\u1ECC\u1ECE\u1ED0\u1ED2\u1ED4\u1ED6\u1ED8\u1EDA\u1EDC\u1EDE\u1EE0\u1EE2\u1EE4\u1EE6\u1EE8\u1EEA\u1EEC\u1EEE\u1EF0\u1EF2\u1EF4\u1EF6\u1EF8\u1EFA\u1EFC\u1EFEЁА-ЯӘӨҮҖҢҺΑ-ΩΆΈΊΌΏΉΎА-ЩЮЯІЇЄҐЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F\'"”“`‘´’‚,„»«「」『』()〔〕【】《》〈〉〈〉⟦⟧])|(?<=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F]),(?=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])|(?<=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F0-9])(?:-|–|—|--|---|——|~)(?=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])|(?<=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F0-9])[:<>=/](?=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])�token_match��url_match�
2
+ ��A�
3
+ � ��A� �'��A�'�''��A�''�'Cause��A�'CauseC�because�'Cos��A�'CosC�because�'Coz��A�'CozC�because�'Cuz��A�'CuzC�because�'S��A�'SC�'s�'bout��A�'boutC�about�'cause��A�'causeC�because�'cos��A�'cosC�because�'coz��A�'cozC�because�'cuz��A�'cuzC�because�'d��A�'d�'em��A�'emC�them�'ll��A�'llC�will�'nuff��A�'nuffC�enough�'re��A�'reC�are�'s��A�'sC�'s�(*_*)��A�(*_*)�(-8��A�(-8�(-:��A�(-:�(-;��A�(-;�(-_-)��A�(-_-)�(._.)��A�(._.)�(:��A�(:�(;��A�(;�(=��A�(=�(>_<)��A�(>_<)�(^_^)��A�(^_^)�(o:��A�(o:�(¬_¬)��A�(¬_¬)�(ಠ_ಠ)��A�(ಠ_ಠ)�(╯°□°)╯︵┻━┻��A�(╯°□°)╯︵┻━┻�)-:��A�)-:�):��A�):�-_-��A�-_-�-__-��A�-__-�._.��A�._.�0.0��A�0.0�0.o��A�0.o�0_0��A�0_0�0_o��A�0_o�10a.m.��A�10�A�a.m.C�a.m.�10am��A�10�A�amC�a.m.�10p.m.��A�10�A�p.m.C�p.m.�10pm��A�10�A�pmC�p.m.�11a.m.��A�11�A�a.m.C�a.m.�11am��A�11�A�amC�a.m.�11p.m.��A�11�A�p.m.C�p.m.�11pm��A�11�A�pmC�p.m.�12a.m.��A�12�A�a.m.C�a.m.�12am��A�12�A�amC�a.m.�12p.m.��A�12�A�p.m.C�p.m.�12pm��A�12�A�pmC�p.m.�1a.m.��A�1�A�a.m.C�a.m.�1am��A�1�A�amC�a.m.�1p.m.��A�1�A�p.m.C�p.m.�1pm��A�1�A�pmC�p.m.�2a.m.��A�2�A�a.m.C�a.m.�2am��A�2�A�amC�a.m.�2p.m.��A�2�A�p.m.C�p.m.�2pm��A�2�A�pmC�p.m.�3a.m.��A�3�A�a.m.C�a.m.�3am��A�3�A�amC�a.m.�3p.m.��A�3�A�p.m.C�p.m.�3pm��A�3�A�pmC�p.m.�4a.m.��A�4�A�a.m.C�a.m.�4am��A�4�A�amC�a.m.�4p.m.��A�4�A�p.m.C�p.m.�4pm��A�4�A�pmC�p.m.�5a.m.��A�5�A�a.m.C�a.m.�5am��A�5�A�amC�a.m.�5p.m.��A�5�A�p.m.C�p.m.�5pm��A�5�A�pmC�p.m.�6a.m.��A�6�A�a.m.C�a.m.�6am��A�6�A�amC�a.m.�6p.m.��A�6�A�p.m.C�p.m.�6pm��A�6�A�pmC�p.m.�7a.m.��A�7�A�a.m.C�a.m.�7am��A�7�A�amC�a.m.�7p.m.��A�7�A�p.m.C�p.m.�7pm��A�7�A�pmC�p.m.�8)��A�8)�8-)��A�8-)�8-D��A�8-D�8D��A�8D�8a.m.��A�8�A�a.m.C�a.m.�8am��A�8�A�amC�a.m.�8p.m.��A�8�A�p.m.C�p.m.�8pm��A�8�A�pmC�p.m.�9a.m.��A�9�A�a.m.C�a.m.�9am��A�9�A�amC�a.m.�9p.m.��A�9�A�p.m.C�p.m.�9pm��A�9�A�pmC�p.m.�:'(��A�:'(�:')��A�:')�:'-(��A�:'-(�:'-)��A�:'-)�:(��A�:(�:((��A�:((�:(((��A�:(((�:()��A�:()�:)��A�:)�:))��A�:))�:)))��A�:)))�:*��A�:*�:-(��A�:-(�:-((��A�:-((�:-(((��A�:-(((�:-)��A�:-)�:-))��A�:-))�:-)))��A�:-)))�:-*��A�:-*�:-/��A�:-/�:-0��A�:-0�:-3��A�:-3�:->��A�:->�:-D��A�:-D�:-O��A�:-O�:-P��A�:-P�:-X��A�:-X�:-]��A�:-]�:-o��A�:-o�:-p��A�:-p�:-x��A�:-x�:-|��A�:-|�:-}��A�:-}�:/��A�:/�:0��A�:0�:1��A�:1�:3��A�:3�:>��A�:>�:D��A�:D�:O��A�:O�:P��A�:P�:X��A�:X�:]��A�:]�:o��A�:o�:o)��A�:o)�:p��A�:p�:x��A�:x�:|��A�:|�:}��A�:}�:’(��A�:’(�:’)��A�:’)�:’-(��A�:’-(�:’-)��A�:’-)�;)��A�;)�;-)��A�;-)�;-D��A�;-D�;D��A�;D�;_;��A�;_;�<.<��A�<.<�</3��A�</3�<3��A�<3�<33��A�<33�<333��A�<333�<space>��A�<space>�=(��A�=(�=)��A�=)�=/��A�=/�=3��A�=3�=D��A�=D�=[��A�=[�=]��A�=]�=|��A�=|�>.<��A�>.<�>.>��A�>.>�>:(��A�>:(�>:o��A�>:o�><(((*>��A�><(((*>�@_@��A�@_@�Adm.��A�Adm.�Ain't��A�Ai�A�n'tC�not�Aint��A�Ai�A�ntC�not�Ain’t��A�Ai�A�n’tC�not�Ak.��A�Ak.C�Alaska�Ala.��A�Ala.C�Alabama�Apr.��A�Apr.C�April�Aren't��A�AreC�are�A�n'tC�not�Arent��A�AreC�are�A�ntC�not�Aren’t��A�AreC�are�A�n’tC�not�Ariz.��A�Ariz.C�Arizona�Ark.��A�Ark.C�Arkansas�Aug.��A�Aug.C�August�Bros.��A�Bros.�C'mon��A�C'mC�come�A�on�C++��A�C++�Calif.��A�Calif.C�California�Can't��A�CaC�can�A�n'tC�not�Can't've��A�CaC�can�A�n'tC�not�A�'veC�have�Cannot��A�CanC�can�A�not�Cant��A�CaC�can�A�ntC�not�Cantve��A�CaC�can�A�ntC�not�A�veC�have�Can’t��A�CaC�can�A�n’tC�not�Can’t’ve��A�CaC�can�A�n’tC�not�A�’veC�have�Co.��A�Co.�Colo.��A�Colo.C�Colorado�Conn.��A�Conn.C�Connecticut�Corp.��A�Corp.�Could've��A�CouldC�could�A�'ve�Couldn't��A�CouldC�could�A�n'tC�not�Couldn't've��A�CouldC�could�A�n'tC�not�A�'veC�have�Couldnt��A�CouldC�could�A�ntC�not�Couldntve��A�CouldC�could�A�ntC�not�A�veC�have�Couldn’t��A�CouldC�could�A�n’tC�not�Couldn’t’ve��A�CouldC�could�A�n’tC�not�A�’veC�have�Couldve��A�CouldC�could�A�ve�Could’ve��A�CouldC�could�A�’ve�C’mon��A�C’mC�come�A�on�D.C.��A�D.C.�Daren't��A�DareC�dare�A�n'tC�not�Darent��A�DareC�dare�A�ntC�not�Daren’t��A�DareC�dare�A�n’tC�not�Dec.��A�Dec.C�December�Del.��A�Del.C�Delaware�Didn't��A�DidC�do�A�n'tC�not�Didn't've��A�DidC�do�A�n'tC�not�A�'veC�have�Didnt��A�DidC�do�A�ntC�not�Didntve��A�DidC�do�A�ntC�not�A�veC�have�Didn’t��A�DidC�do�A�n’tC�not�Didn’t’ve��A�DidC�do�A�n’tC�not�A�’veC�have�Doesn't��A�DoesC�does�A�n'tC�not�Doesn't've��A�DoesC�does�A�n'tC�not�A�'veC�have�Doesnt��A�DoesC�does�A�ntC�not�Doesntve��A�DoesC�does�A�ntC�not�A�veC�have�Doesn’t��A�DoesC�does�A�n’tC�not�Doesn’t’ve��A�DoesC�does�A�n’tC�not�A�’veC�have�Doin��A�DoinC�doing�Doin'��A�Doin'C�doing�Doin’��A�Doin’C�doing�Don't��A�DoC�do�A�n'tC�not�Don't've��A�DoC�do�A�n'tC�not�A�'veC�have�Dont��A�DoC�do�A�ntC�not�Dontve��A�DoC�do�A�ntC�not�A�veC�have�Don’t��A�DoC�do�A�n’tC�not�Don’t’ve��A�DoC�do�A�n’tC�not�A�’veC�have�Dr.��A�Dr.�E.G.��A�E.G.�E.g.��A�E.g.�Feb.��A�Feb.C�February�Fla.��A�Fla.C�Florida�Ga.��A�Ga.C�Georgia�Gen.��A�Gen.�Goin��A�GoinC�going�Goin'��A�Goin'C�going�Goin’��A�Goin’C�going�Gonna��A�GonC�going�A�naC�to�Gotta��A�GotC�got�A�taC�to�Gov.��A�Gov.�Hadn't��A�HadC�have�A�n'tC�not�Hadn't've��A�HadC�have�A�n'tC�not�A�'veC�have�Hadnt��A�HadC�have�A�ntC�not�Hadntve��A�HadC�have�A�ntC�not�A�veC�have�Hadn’t��A�HadC�have�A�n’tC�not�Hadn’t’ve��A�HadC�have�A�n’tC�not�A�’veC�have�Hasn't��A�HasC�has�A�n'tC�not�Hasnt��A�HasC�has�A�ntC�not�Hasn’t��A�HasC�has�A�n’tC�not�Haven't��A�HaveC�have�A�n'tC�not�Havent��A�HaveC�have�A�ntC�not�Haven’t��A�HaveC�have�A�n’tC�not�Havin��A�HavinC�having�Havin'��A�Havin'C�having�Havin’��A�Havin’C�having�He'd��A�HeC�he�A�'dC�'d�He'd've��A�HeC�he�A�'dC�would�A�'veC�have�He'll��A�HeC�he�A�'llC�will�He'll've��A�HeC�he�A�'llC�will�A�'veC�have�He's��A�HeC�he�A�'sC�'s�Hed��A�HeC�he�A�dC�'d�Hedve��A�HeC�he�A�dC�would�A�veC�have�Hellve��A�HeC�he�A�llC�will�A�veC�have�Hes��A�HeC�he�A�s�He’d��A�HeC�he�A�’dC�'d�He’d’ve��A�HeC�he�A�’dC�would�A�’veC�have�He’ll��A�HeC�he�A�’llC�will�He’ll’ve��A�HeC�he�A�’llC�will�A�’veC�have�He’s��A�HeC�he�A�’sC�'s�How'd��A�HowC�how�A�'dC�'d�How'd've��A�HowC�how�A�'dC�would�A�'veC�have�How'd'y��A�HowC�how�A�'d�A�'yC�you�How'll��A�HowC�how�A�'llC�will�How'll've��A�HowC�how�A�'llC�will�A�'veC�have�How're��A�HowC�how�A�'reC�are�How's��A�HowC�how�A�'sC�'s�How've��A�HowC�how�A�'ve�Howd��A�HowC�how�A�dC�'d�Howdve��A�HowC�how�A�dC�would�A�veC�have�Howll��A�HowC�how�A�llC�will�Howllve��A�HowC�how�A�llC�will�A�veC�have�Howre��A�HowC�how�A�reC�are�Hows��A�HowC�how�A�s�Howve��A�How�A�veC�have�How’d��A�HowC�how�A�’dC�'d�How’d’ve��A�HowC�how�A�’dC�would�A�’veC�have�How’d’y��A�HowC�how�A�’d�A�’yC�you�How’ll��A�HowC�how�A�’llC�will�How’ll’ve��A�HowC�how�A�’llC�will�A�’veC�have�How’re��A�HowC�how�A�’reC�are�How’s��A�HowC�how�A�’sC�'s�How’ve��A�HowC�how�A�’ve�I'd��A�IC�i�A�'dC�'d�I'd've��A�IC�i�A�'dC�would�A�'veC�have�I'll��A�IC�i�A�'llC�will�I'll've��A�IC�i�A�'llC�will�A�'veC�have�I'm��A�IC�i�A�'mC�am�I'ma��A�IC�i�A�'mC�am�A�aC�gonna�I've��A�IC�i�A�'veC�have�I.E.��A�I.E.�I.e.��A�I.e.�Ia.��A�Ia.C�Iowa�Id��A�IC�i�A�dC�'d�Id.��A�Id.C�Idaho�Idve��A�IC�i�A�dC�would�A�veC�have�Ill.��A�Ill.C�Illinois�Illve��A�IC�i�A�llC�will�A�veC�have�Im��A�IC�i�A�m�Ima��A�IC�i�A�mC�am�A�aC�gonna�Inc.��A�Inc.�Ind.��A�Ind.C�Indiana�Isn't��A�IsC�is�A�n'tC�not�Isnt��A�IsC�is�A�ntC�not�Isn’t��A�IsC�is�A�n’tC�not�It'd��A�ItC�it�A�'dC�'d�It'd've��A�ItC�it�A�'dC�would�A�'veC�have�It'll��A�ItC�it�A�'llC�will�It'll've��A�ItC�it�A�'llC�will�A�'veC�have�It's��A�ItC�it�A�'sC�'s�Itd��A�ItC�it�A�dC�'d�Itdve��A�ItC�it�A�dC�would�A�veC�have�Itll��A�ItC�it�A�llC�will�Itllve��A�ItC�it�A�llC�will�A�veC�have�It’d��A�ItC�it�A�’dC�'d�It’d’ve��A�ItC�it�A�’dC�would�A�’veC�have�It’ll��A�ItC�it�A�’llC�will�It’ll’ve��A�ItC�it�A�’llC�will�A�’veC�have�It’s��A�ItC�it�A�’sC�'s�Ive��A�IC�i�A�veC�have�I’d��A�IC�i�A�’dC�'d�I’d’ve��A�IC�i�A�’dC�would�A�’veC�have�I’ll��A�IC�i�A�’llC�will�I’ll’ve��A�IC�i�A�’llC�will�A�’veC�have�I’m��A�IC�i�A�’mC�am�I’ma��A�IC�i�A�’mC�am�A�aC�gonna�I’ve��A�IC�i�A�’veC�have�Jan.��A�Jan.C�January�Jr.��A�Jr.�Jul.��A�Jul.C�July�Jun.��A�Jun.C�June�Kan.��A�Kan.C�Kansas�Kans.��A�Kans.C�Kansas�Ky.��A�Ky.C�Kentucky�La.��A�La.C�Louisiana�Let's��A�LetC�let�A�'sC�us�Let’s��A�LetC�let�A�’sC�us�Lovin��A�LovinC�loving�Lovin'��A�Lovin'C�loving�Lovin’��A�Lovin’C�loving�Ltd.��A�Ltd.�Ma'am��A�Ma'amC�madam�Mar.��A�Mar.C�March�Mass.��A�Mass.C�Massachusetts�Mayn't��A�MayC�may�A�n'tC�not�Mayn't've��A�MayC�may�A�n'tC�not�A�'veC�have�Maynt��A�MayC�may�A�ntC�not�Mayntve��A�MayC�may�A�ntC�not�A�veC�have�Mayn’t��A�MayC�may�A�n’tC�not�Mayn’t’ve��A�MayC�may�A�n’tC�not�A�’veC�have�Ma’am��A�Ma’amC�madam�Md.��A�Md.�Messrs.��A�Messrs.�Mich.��A�Mich.C�Michigan�Might've��A�MightC�might�A�'ve�Mightn't��A�MightC�might�A�n'tC�not�Mightn't've��A�MightC�might�A�n'tC�not�A�'veC�have�Mightnt��A�MightC�might�A�ntC�not�Mightntve��A�MightC�might�A�ntC�not�A�veC�have�Mightn’t��A�MightC�might�A�n’tC�not�Mightn’t’ve��A�MightC�might�A�n’tC�not�A�’veC�have�Mightve��A�MightC�might�A�ve�Might’ve��A�MightC�might�A�’ve�Minn.��A�Minn.C�Minnesota�Miss.��A�Miss.C�Mississippi�Mo.��A�Mo.�Mont.��A�Mont.�Mr.��A�Mr.�Mrs.��A�Mrs.�Ms.��A�Ms.�Mt.��A�Mt.C�Mount�Must've��A�MustC�must�A�'ve�Mustn't��A�MustC�must�A�n'tC�not�Mustn't've��A�MustC�must�A�n'tC�not�A�'veC�have�Mustnt��A�MustC�must�A�ntC�not�Mustntve��A�MustC�must�A�ntC�not�A�veC�have�Mustn’t��A�MustC�must�A�n’tC�not�Mustn’t’ve��A�MustC�must�A�n’tC�not�A�’veC�have�Mustve��A�MustC�must�A�ve�Must’ve��A�MustC�must�A�’ve�N.C.��A�N.C.C�North Carolina�N.D.��A�N.D.C�North Dakota�N.H.��A�N.H.C�New Hampshire�N.J.��A�N.J.C�New Jersey�N.M.��A�N.M.C�New Mexico�N.Y.��A�N.Y.C�New York�Neb.��A�Neb.C�Nebraska�Nebr.��A�Nebr.C�Nebraska�Needn't��A�NeedC�need�A�n'tC�not�Needn't've��A�NeedC�need�A�n'tC�not�A�'veC�have�Neednt��A�NeedC�need�A�ntC�not�Needntve��A�NeedC�need�A�ntC�not�A�veC�have�Needn’t��A�NeedC�need�A�n’tC�not�Needn’t’ve��A�NeedC�need�A�n’tC�not�A�’veC�have�Nev.��A�Nev.C�Nevada�Not've��A�NotC�not�A�'veC�have�Nothin��A�NothinC�nothing�Nothin'��A�Nothin'C�nothing�Nothin’��A�Nothin’C�nothing�Notve��A�NotC�not�A�veC�have�Not’ve��A�NotC�not�A�’veC�have�Nov.��A�Nov.C�November�Nuthin��A�NuthinC�nothing�Nuthin'��A�Nuthin'C�nothing�Nuthin’��A�Nuthin’C�nothing�O'clock��A�O'clockC�o'clock�O.O��A�O.O�O.o��A�O.o�O_O��A�O_O�O_o��A�O_o�Oct.��A�Oct.C�October�Okla.��A�Okla.C�Oklahoma�Ol��A�OlC�old�Ol'��A�Ol'C�old�Ol’��A�Ol’C�old�Ore.��A�Ore.C�Oregon�Oughtn't��A�OughtC�ought�A�n'tC�not�Oughtn't've��A�OughtC�ought�A�n'tC�not�A�'veC�have�Oughtnt��A�OughtC�ought�A�ntC�not�Oughtntve��A�OughtC�ought�A�ntC�not�A�veC�have�Oughtn’t��A�OughtC�ought�A�n’tC�not�Oughtn’t’ve��A�OughtC�ought�A�n’tC�not�A�’veC�have�O’clock��A�O’clockC�o'clock�Pa.��A�Pa.C�Pennsylvania�Ph.D.��A�Ph.D.�Prof.��A�Prof.�Rep.��A�Rep.�Rev.��A�Rev.�S.C.��A�S.C.C�South Carolina�Sen.��A�Sen.�Sep.��A�Sep.C�September�Sept.��A�Sept.C�September�Shan't��A�ShaC�shall�A�n'tC�not�Shan't've��A�ShaC�shall�A�n'tC�not�A�'veC�have�Shant��A�ShaC�shall�A�ntC�not�Shantve��A�ShaC�shall�A�ntC�not�A�veC�have�Shan’t��A�ShaC�shall�A�n’tC�not�Shan’t’ve��A�ShaC�shall�A�n’tC�not�A�’veC�have�She'd��A�SheC�she�A�'dC�'d�She'd've��A�SheC�she�A�'dC�would�A�'veC�have�She'll��A�SheC�she�A�'llC�will�She'll've��A�SheC�she�A�'llC�will�A�'veC�have�She's��A�SheC�she�A�'sC�'s�Shedve��A�SheC�she�A�dC�would�A�veC�have�Shellve��A�SheC�she�A�llC�will�A�veC�have�Shes��A�SheC�she�A�s�She’d��A�SheC�she�A�’dC�'d�She’d’ve��A�SheC�she�A�’dC�would�A�’veC�have�She’ll��A�SheC�she�A�’llC�will�She’ll’ve��A�SheC�she�A�’llC�will�A�’veC�have�She’s��A�SheC�she�A�’sC�'s�Should've��A�ShouldC�should�A�'ve�Shouldn't��A�ShouldC�should�A�n'tC�not�Shouldn't've��A�ShouldC�should�A�n'tC�not�A�'veC�have�Shouldnt��A�ShouldC�should�A�ntC�not�Shouldntve��A�ShouldC�should�A�ntC�not�A�veC�have�Shouldn’t��A�ShouldC�should�A�n’tC�not�Shouldn’t’ve��A�ShouldC�should�A�n’tC�not�A�’veC�have�Shouldve��A�ShouldC�should�A�ve�Should’ve��A�ShouldC�should�A�’ve�Somethin��A�SomethinC�something�Somethin'��A�Somethin'C�something�Somethin’��A�Somethin’C�something�St.��A�St.�Tenn.��A�Tenn.C�Tennessee�That'd��A�ThatC�that�A�'dC�'d�That'd've��A�ThatC�that�A�'dC�would�A�'veC�have�That'll��A�ThatC�that�A�'llC�will�That'll've��A�ThatC�that�A�'llC�will�A�'veC�have�That's��A�ThatC�that�A�'sC�'s�Thatd��A�ThatC�that�A�dC�'d�Thatdve��A�ThatC�that�A�dC�would�A�veC�have�Thatll��A�ThatC�that�A�llC�will�Thatllve��A�ThatC�that�A�llC�will�A�veC�have�Thats��A�ThatC�that�A�s�That’d��A�ThatC�that�A�’dC�'d�That’d’ve��A�ThatC�that�A�’dC�would�A�’veC�have�That’ll��A�ThatC�that�A�’llC�will�That’ll’ve��A�ThatC�that�A�’llC�will�A�’veC�have�That’s��A�ThatC�that�A�’sC�'s�There'd��A�ThereC�there�A�'dC�'d�There'd've��A�ThereC�there�A�'dC�would�A�'veC�have�There'll��A�ThereC�there�A�'llC�will�There'll've��A�ThereC�there�A�'llC�will�A�'veC�have�There're��A�ThereC�there�A�'reC�are�There's��A�ThereC�there�A�'sC�'s�There've��A�ThereC�there�A�'ve�Thered��A�ThereC�there�A�dC�'d�Theredve��A�ThereC�there�A�dC�would�A�veC�have�Therell��A�ThereC�there�A�llC�will�Therellve��A�ThereC�there�A�llC�will�A�veC�have�Therere��A�ThereC�there�A�reC�are�Theres��A�ThereC�there�A�s�Thereve��A�There�A�veC�have�There’d��A�ThereC�there�A�’dC�'d�There’d’ve��A�ThereC�there�A�’dC�would�A�’veC�have�There’ll��A�ThereC�there�A�’llC�will�There’ll’ve��A�ThereC�there�A�’llC�will�A�’veC�have�There’re��A�ThereC�there�A�’reC�are�There’s��A�ThereC�there�A�’sC�'s�There’ve��A�ThereC�there�A�’ve�These'd��A�TheseC�these�A�'dC�'d�These'd've��A�TheseC�these�A�'dC�would�A�'veC�have�These'll��A�TheseC�these�A�'llC�will�These'll've��A�TheseC�these�A�'llC�will�A�'veC�have�These're��A�TheseC�these�A�'reC�are�These've��A�TheseC�these�A�'ve�Thesed��A�TheseC�these�A�dC�'d�Thesedve��A�TheseC�these�A�dC�would�A�veC�have�Thesell��A�TheseC�these�A�llC�will�Thesellve��A�TheseC�these�A�llC�will�A�veC�have�Thesere��A�TheseC�these�A�reC�are�Theseve��A�These�A�veC�have�These’d��A�TheseC�these�A�’dC�'d�These’d’ve��A�TheseC�these�A�’dC�would�A�’veC�have�These’ll��A�TheseC�these�A�’llC�will�These’ll’ve��A�TheseC�these�A�’llC�will�A�’veC�have�These’re��A�TheseC�these�A�’reC�are�These’ve��A�TheseC�these�A�’ve�They'd��A�TheyC�they�A�'dC�'d�They'd've��A�TheyC�they�A�'dC�would�A�'veC�have�They'll��A�TheyC�they�A�'llC�will�They'll've��A�TheyC�they�A�'llC�will�A�'veC�have�They're��A�TheyC�they�A�'reC�are�They've��A�TheyC�they�A�'veC�have�Theyd��A�TheyC�they�A�dC�'d�Theydve��A�TheyC�they�A�dC�would�A�veC�have�Theyll��A�TheyC�they�A�llC�will�Theyllve��A�TheyC�they�A�llC�will�A�veC�have�Theyre��A�TheyC�they�A�reC�are�Theyve��A�TheyC�they�A�veC�have�They’d��A�TheyC�they�A�’dC�'d�They’d’ve��A�TheyC�they�A�’dC�would�A�’veC�have�They’ll��A�TheyC�they�A�’llC�will�They’ll’ve��A�TheyC�they�A�’llC�will�A�’veC�have�They’re��A�TheyC�they�A�’reC�are�They’ve��A�TheyC�they�A�’veC�have�This'd��A�ThisC�this�A�'dC�'d�This'd've��A�ThisC�this�A�'dC�would�A�'veC�have�This'll��A�ThisC�this�A�'llC�will�This'll've��A�ThisC�this�A�'llC�will�A�'veC�have�This's��A�ThisC�this�A�'sC�'s�Thisd��A�ThisC�this�A�dC�'d�Thisdve��A�ThisC�this�A�dC�would�A�veC�have�Thisll��A�ThisC�this�A�llC�will�Thisllve��A�ThisC�this�A�llC�will�A�veC�have�Thiss��A�ThisC�this�A�s�This’d��A�ThisC�this�A�’dC�'d�This’d’ve��A�ThisC�this�A�’dC�would�A�’veC�have�This’ll��A�ThisC�this�A�’llC�will�This’ll’ve��A�ThisC�this�A�’llC�will�A�’veC�have�This’s��A�ThisC�this�A�’sC�'s�Those'd��A�ThoseC�those�A�'dC�'d�Those'd've��A�ThoseC�those�A�'dC�would�A�'veC�have�Those'll��A�ThoseC�those�A�'llC�will�Those'll've��A�ThoseC�those�A�'llC�will�A�'veC�have�Those're��A�ThoseC�those�A�'reC�are�Those've��A�ThoseC�those�A�'ve�Thosed��A�ThoseC�those�A�dC�'d�Thosedve��A�ThoseC�those�A�dC�would�A�veC�have�Thosell��A�ThoseC�those�A�llC�will�Thosellve��A�ThoseC�those�A�llC�will�A�veC�have�Thosere��A�ThoseC�those�A�reC�are�Thoseve��A�Those�A�veC�have�Those’d��A�ThoseC�those�A�’dC�'d�Those’d’ve��A�ThoseC�those�A�’dC�would�A�’veC�have�Those’ll��A�ThoseC�those�A�’llC�will�Those’ll’ve��A�ThoseC�those�A�’llC�will�A�’veC�have�Those’re��A�ThoseC�those�A�’reC�are�Those’ve��A�ThoseC�those�A�’ve�V.V��A�V.V�V_V��A�V_V�Va.��A�Va.C�Virginia�Wash.��A�Wash.C�Washington�Wasn't��A�WasC�was�A�n'tC�not�Wasnt��A�WasC�was�A�ntC�not�Wasn’t��A�WasC�was�A�n’tC�not�We'd��A�WeC�we�A�'dC�'d�We'd've��A�WeC�we�A�'dC�would�A�'veC�have�We'll��A�WeC�we�A�'llC�will�We'll've��A�WeC�we�A�'llC�will�A�'veC�have�We're��A�WeC�we�A�'reC�are�We've��A�WeC�we�A�'veC�have�Wed��A�WeC�we�A�dC�'d�Wedve��A�WeC�we�A�dC�would�A�veC�have�Wellve��A�WeC�we�A�llC�will�A�veC�have�Weren't��A�WereC�were�A�n'tC�not�Werent��A�WereC�were�A�ntC�not�Weren’t��A�WereC�were�A�n’tC�not�Weve��A�WeC�we�A�veC�have�We’d��A�WeC�we�A�’dC�'d�We’d’ve��A�WeC�we�A�’dC�would�A�’veC�have�We’ll��A�WeC�we�A�’llC�will�We’ll’ve��A�WeC�we�A�’llC�will�A�’veC�have�We’re��A�WeC�we�A�’reC�are�We’ve��A�WeC�we�A�’veC�have�What'd��A�WhatC�what�A�'dC�'d�What'd've��A�WhatC�what�A�'dC�would�A�'veC�have�What'll��A�WhatC�what�A�'llC�will�What'll've��A�WhatC�what�A�'llC�will�A�'veC�have�What're��A�WhatC�what�A�'reC�are�What's��A�WhatC�what�A�'sC�'s�What've��A�WhatC�what�A�'ve�Whatd��A�WhatC�what�A�dC�'d�Whatdve��A�WhatC�what�A�dC�would�A�veC�have�Whatll��A�WhatC�what�A�llC�will�Whatllve��A�WhatC�what�A�llC�will�A�veC�have�Whatre��A�WhatC�what�A�reC�are�Whats��A�WhatC�what�A�s�Whatve��A�What�A�veC�have�What’d��A�WhatC�what�A�’dC�'d�What’d’ve��A�WhatC�what�A�’dC�would�A�’veC�have�What’ll��A�WhatC�what�A�’llC�will�What’ll’ve��A�WhatC�what�A�’llC�will�A�’veC�have�What’re��A�WhatC�what�A�’reC�are�What’s��A�WhatC�what�A�’sC�'s�What’ve��A�WhatC�what�A�’ve�When'd��A�WhenC�when�A�'dC�'d�When'd've��A�WhenC�when�A�'dC�would�A�'veC�have�When'll��A�WhenC�when�A�'llC�will�When'll've��A�WhenC�when�A�'llC�will�A�'veC�have�When're��A�WhenC�when�A�'reC�are�When's��A�WhenC�when�A�'sC�'s�When've��A�WhenC�when�A�'ve�Whend��A�WhenC�when�A�dC�'d�Whendve��A�WhenC�when�A�dC�would�A�veC�have�Whenll��A�WhenC�when�A�llC�will�Whenllve��A�WhenC�when�A�llC�will�A�veC�have�Whenre��A�WhenC�when�A�reC�are�Whens��A�WhenC�when�A�s�Whenve��A�When�A�veC�have�When’d��A�WhenC�when�A�’dC�'d�When’d’ve��A�WhenC�when�A�’dC�would�A�’veC�have�When’ll��A�WhenC�when�A�’llC�will�When’ll’ve��A�WhenC�when�A�’llC�will�A�’veC�have�When’re��A�WhenC�when�A�’reC�are�When’s��A�WhenC�when�A�’sC�'s�When’ve��A�WhenC�when�A�’ve�Where'd��A�WhereC�where�A�'dC�'d�Where'd've��A�WhereC�where�A�'dC�would�A�'veC�have�Where'll��A�WhereC�where�A�'llC�will�Where'll've��A�WhereC�where�A�'llC�will�A�'veC�have�Where're��A�WhereC�where�A�'reC�are�Where's��A�WhereC�where�A�'sC�'s�Where've��A�WhereC�where�A�'ve�Whered��A�WhereC�where�A�dC�'d�Wheredve��A�WhereC�where�A�dC�would�A�veC�have�Wherell��A�WhereC�where�A�llC�will�Wherellve��A�WhereC�where�A�llC�will�A�veC�have�Wherere��A�WhereC�where�A�reC�are�Wheres��A�WhereC�where�A�s�Whereve��A�Where�A�veC�have�Where’d��A�WhereC�where�A�’dC�'d�Where’d’ve��A�WhereC�where�A�’dC�would�A�’veC�have�Where’ll��A�WhereC�where�A�’llC�will�Where’ll’ve��A�WhereC�where�A�’llC�will�A�’veC�have�Where’re��A�WhereC�where�A�’reC�are�Where’s��A�WhereC�where�A�’sC�'s�Where’ve��A�WhereC�where�A�’ve�Who'd��A�WhoC�who�A�'dC�'d�Who'd've��A�WhoC�who�A�'dC�would�A�'veC�have�Who'll��A�WhoC�who�A�'llC�will�Who'll've��A�WhoC�who�A�'llC�will�A�'veC�have�Who're��A�WhoC�who�A�'reC�are�Who's��A�WhoC�who�A�'sC�'s�Who've��A�WhoC�who�A�'ve�Whod��A�WhoC�who�A�dC�'d�Whodve��A�WhoC�who�A�dC�would�A�veC�have�Wholl��A�WhoC�who�A�llC�will�Whollve��A�WhoC�who�A�llC�will�A�veC�have�Whos��A�WhoC�who�A�s�Whove��A�Who�A�veC�have�Who’d��A�WhoC�who�A�’dC�'d�Who’d’ve��A�WhoC�who�A�’dC�would�A�’veC�have�Who’ll��A�WhoC�who�A�’llC�will�Who’ll’ve��A�WhoC�who�A�’llC�will�A�’veC�have�Who’re��A�WhoC�who�A�’reC�are�Who’s��A�WhoC�who�A�’sC�'s�Who’ve��A�WhoC�who�A�’ve�Why'd��A�WhyC�why�A�'dC�'d�Why'd've��A�WhyC�why�A�'dC�would�A�'veC�have�Why'll��A�WhyC�why�A�'llC�will�Why'll've��A�WhyC�why�A�'llC�will�A�'veC�have�Why're��A�WhyC�why�A�'reC�are�Why's��A�WhyC�why�A�'sC�'s�Why've��A�WhyC�why�A�'ve�Whyd��A�WhyC�why�A�dC�'d�Whydve��A�WhyC�why�A�dC�would�A�veC�have�Whyll��A�WhyC�why�A�llC�will�Whyllve��A�WhyC�why�A�llC�will�A�veC�have�Whyre��A�WhyC�why�A�reC�are�Whys��A�WhyC�why�A�s�Whyve��A�Why�A�veC�have�Why’d��A�WhyC�why�A�’dC�'d�Why’d’ve��A�WhyC�why�A�’dC�would�A�’veC�have�Why’ll��A�WhyC�why�A�’llC�will�Why’ll’ve��A�WhyC�why�A�’llC�will�A�’veC�have�Why’re��A�WhyC�why�A�’reC�are�Why’s��A�WhyC�why�A�’sC�'s�Why’ve��A�WhyC�why�A�’ve�Wis.��A�Wis.C�Wisconsin�Won't��A�WoC�will�A�n'tC�not�Won't've��A�WoC�will�A�n'tC�not�A�'veC�have�Wont��A�WoC�will�A�ntC�not�Wontve��A�WoC�will�A�ntC�not�A�veC�have�Won’t��A�WoC�will�A�n’tC�not�Won’t’ve��A�WoC�will�A�n’tC�not�A�’veC�have�Would've��A�WouldC�would�A�'ve�Wouldn't��A�WouldC�would�A�n'tC�not�Wouldn't've��A�WouldC�would�A�n'tC�not�A�'veC�have�Wouldnt��A�WouldC�would�A�ntC�not�Wouldntve��A�WouldC�would�A�ntC�not�A�veC�have�Wouldn’t��A�WouldC�would�A�n’tC�not�Wouldn’t’ve��A�WouldC�would�A�n’tC�not�A�’veC�have�Wouldve��A�WouldC�would�A�ve�Would’ve��A�WouldC�would�A�’ve�XD��A�XD�XDD��A�XDD�You'd��A�YouC�you�A�'dC�'d�You'd've��A�YouC�you�A�'dC�would�A�'veC�have�You'll��A�YouC�you�A�'llC�will�You'll've��A�YouC�you�A�'llC�will�A�'veC�have�You're��A�YouC�you�A�'reC�are�You've��A�YouC�you�A�'veC�have�Youd��A�YouC�you�A�dC�'d�Youdve��A�YouC�you�A�dC�would�A�veC�have�Youll��A�YouC�you�A�llC�will�Youllve��A�YouC�you�A�llC�will�A�veC�have�Youre��A�YouC�you�A�reC�are�Youve��A�YouC�you�A�veC�have�You’d��A�YouC�you�A�’dC�'d�You’d’ve��A�YouC�you�A�’dC�would�A�’veC�have�You’ll��A�YouC�you�A�’llC�will�You’ll’ve��A�YouC�you�A�’llC�will�A�’veC�have�You’re��A�YouC�you�A�’reC�are�You’ve��A�YouC�you�A�’veC�have�[-:��A�[-:�[:��A�[:�[=��A�[=�\")��A�\")�\n��A�\n�\t��A�\t�]=��A�]=�^_^��A�^_^�^__^��A�^__^�^___^��A�^___^�a.��A�a.�a.m.��A�a.m.�ain't��A�ai�A�n'tC�not�aint��A�ai�A�ntC�not�ain’t��A�ai�A�n’tC�not�and/or��A�and/orC�and/or�aren't��A�areC�are�A�n'tC�not�arent��A�areC�are�A�ntC�not�aren’t��A�areC�are�A�n’tC�not�b.��A�b.�c'mon��A�c'mC�come�A�on�c.��A�c.�can't��A�caC�can�A�n'tC�not�can't've��A�caC�can�A�n'tC�not�A�'veC�have�cannot��A�can�A�not�cant��A�caC�can�A�ntC�not�cantve��A�caC�can�A�ntC�not�A�veC�have�can’t��A�caC�can�A�n’tC�not�can’t’ve��A�caC�can�A�n’tC�not�A�’veC�have�co.��A�co.�could've��A�couldC�could�A�'ve�couldn't��A�couldC�could�A�n'tC�not�couldn't've��A�couldC�could�A�n'tC�not�A�'veC�have�couldnt��A�couldC�could�A�ntC�not�couldntve��A�couldC�could�A�ntC�not�A�veC�have�couldn’t��A�couldC�could�A�n’tC�not�couldn’t’ve��A�couldC�could�A�n’tC�not�A�’veC�have�couldve��A�couldC�could�A�ve�could’ve��A�couldC�could�A�’ve�c’mon��A�c’mC�come�A�on�d.��A�d.�daren't��A�dareC�dare�A�n'tC�not�darent��A�dareC�dare�A�ntC�not�daren’t��A�dareC�dare�A�n’tC�not�didn't��A�didC�do�A�n'tC�not�didn't've��A�didC�do�A�n'tC�not�A�'veC�have�didnt��A�didC�do�A�ntC�not�didntve��A�didC�do�A�ntC�not�A�veC�have�didn’t��A�didC�do�A�n’tC�not�didn’t’ve��A�didC�do�A�n’tC�not�A�’veC�have�doesn't��A�doesC�does�A�n'tC�not�doesn't've��A�doesC�does�A�n'tC�not�A�'veC�have�doesnt��A�doesC�does�A�ntC�not�doesntve��A�doesC�does�A�ntC�not�A�veC�have�doesn’t��A�doesC�does�A�n’tC�not�doesn’t’ve��A�doesC�does�A�n’tC�not�A�’veC�have�doin��A�doinC�doing�doin'��A�doin'C�doing�doin’��A�doin’C�doing�don't��A�doC�do�A�n'tC�not�don't've��A�doC�do�A�n'tC�not�A�'veC�have�dont��A�doC�do�A�ntC�not�dontve��A�doC�do�A�ntC�not�A�veC�have�don’t��A�doC�do�A�n’tC�not�don’t’ve��A�doC�do�A�n’tC�not�A�’veC�have�e.��A�e.�e.g.��A�e.g.�em��A�emC�them�f.��A�f.�g.��A�g.�goin��A�goinC�going�goin'��A�goin'C�going�goin’��A�goin’C�going�gonna��A�gonC�going�A�naC�to�gotta��A�got�A�taC�to�h.��A�h.�hadn't��A�hadC�have�A�n'tC�not�hadn't've��A�hadC�have�A�n'tC�not�A�'veC�have�hadnt��A�hadC�have�A�ntC�not�hadntve��A�hadC�have�A�ntC�not�A�veC�have�hadn’t��A�hadC�have�A�n’tC�not�hadn’t’ve��A�hadC�have�A�n’tC�not�A�’veC�have�hasn't��A�hasC�has�A�n'tC�not�hasnt��A�hasC�has�A�ntC�not�hasn’t��A�hasC�has�A�n’tC�not�haven't��A�haveC�have�A�n'tC�not�havent��A�haveC�have�A�ntC�not�haven’t��A�haveC�have�A�n’tC�not�havin��A�havinC�having�havin'��A�havin'C�having�havin’��A�havin’C�having�he'd��A�heC�he�A�'dC�'d�he'd've��A�heC�he�A�'dC�would�A�'veC�have�he'll��A�heC�he�A�'llC�will�he'll've��A�heC�he�A�'llC�will�A�'veC�have�he's��A�heC�he�A�'sC�'s�hed��A�heC�he�A�dC�'d�hedve��A�heC�he�A�dC�would�A�veC�have�hellve��A�heC�he�A�llC�will�A�veC�have�hes��A�heC�he�A�s�he’d��A�heC�he�A�’dC�'d�he’d’ve��A�heC�he�A�’dC�would�A�’veC�have�he’ll��A�heC�he�A�’llC�will�he’ll’ve��A�heC�he�A�’llC�will�A�’veC�have�he’s��A�heC�he�A�’sC�'s�how'd��A�howC�how�A�'dC�'d�how'd've��A�howC�how�A�'dC�would�A�'veC�have�how'd'y��A�how�A�'d�A�'yC�you�how'll��A�howC�how�A�'llC�will�how'll've��A�howC�how�A�'llC�will�A�'veC�have�how're��A�howC�how�A�'reC�are�how's��A�howC�how�A�'sC�'s�how've��A�howC�how�A�'ve�howd��A�howC�how�A�dC�'d�howdve��A�howC�how�A�dC�would�A�veC�have�howll��A�howC�how�A�llC�will�howllve��A�howC�how�A�llC�will�A�veC�have�howre��A�howC�how�A�reC�are�hows��A�howC�how�A�s�howve��A�how�A�veC�have�how’d��A�howC�how�A�’dC�'d�how’d’ve��A�howC�how�A���dC�would�A�’veC�have�how’d’y��A�how�A�’d�A�’yC�you�how’ll��A�howC�how�A�’llC�will�how’ll’ve��A�howC�how�A�’llC�will�A�’veC�have�how’re��A�howC�how�A�’reC�are�how’s��A�howC�how�A�’sC�'s�how’ve��A�howC�how�A�’ve�i'd��A�iC�i�A�'dC�'d�i'd've��A�iC�i�A�'dC�would�A�'veC�have�i'll��A�iC�i�A�'llC�will�i'll've��A�iC�i�A�'llC�will�A�'veC�have�i'm��A�iC�i�A�'mC�am�i'ma��A�iC�i�A�'mC�am�A�aC�gonna�i've��A�iC�i�A�'veC�have�i.��A�i.�i.e.��A�i.e.�id��A�iC�i�A�dC�'d�idve��A�iC�i�A�dC�would�A�veC�have�illve��A�iC�i�A�llC�will�A�veC�have�im��A�iC�i�A�m�ima��A�iC�i�A�mC�am�A�aC�gonna�isn't��A�isC�is�A�n'tC�not�isnt��A�isC�is�A�ntC�not�isn’t��A�isC�is�A�n’tC�not�it'd��A�itC�it�A�'dC�'d�it'd've��A�itC�it�A�'dC�would�A�'veC�have�it'll��A�itC�it�A�'llC�will�it'll've��A�itC�it�A�'llC�will�A�'veC�have�it's��A�itC�it�A�'sC�'s�itd��A�itC�it�A�dC�'d�itdve��A�itC�it�A�dC�would�A�veC�have�itll��A�itC�it�A�llC�will�itllve��A�itC�it�A�llC�will�A�veC�have�it’d��A�itC�it�A�’dC�'d�it’d’ve��A�itC�it�A�’dC�would�A�’veC�have�it’ll��A�itC�it�A�’llC�will�it’ll’ve��A�itC�it�A�’llC�will�A�’veC�have�it’s��A�itC�it�A�’sC�'s�ive��A�iC�i�A�veC�have�i’d��A�iC�i�A�’dC�'d�i’d’ve��A�iC�i�A�’dC�would�A�’veC�have�i’ll��A�iC�i�A�’llC�will�i’ll’ve��A�iC�i�A�’llC�will�A�’veC�have�i’m��A�iC�i�A�’mC�am�i’ma��A�iC�i�A�’mC�am�A�aC�gonna�i’ve��A�iC�i�A�’veC�have�j.��A�j.�k.��A�k.�l.��A�l.�let's��A�let�A�'sC�us�let’s��A�let�A�’sC�us�ll��A�llC�will�lovin��A�lovinC�loving�lovin'��A�lovin'C�loving�lovin’��A�lovin’C�loving�m.��A�m.�ma'am��A�ma'amC�madam�mayn't��A�mayC�may�A�n'tC�not�mayn't've��A�mayC�may�A�n'tC�not�A�'veC�have�maynt��A�mayC�may�A�ntC�not�mayntve��A�mayC�may�A�ntC�not�A�veC�have�mayn’t��A�mayC�may�A�n’tC�not�mayn’t’ve��A�mayC�may�A�n’tC�not�A�’veC�have�ma’am��A�ma’amC�madam�might've��A�mightC�might�A�'ve�mightn't��A�mightC�might�A�n'tC�not�mightn't've��A�mightC�might�A�n'tC�not�A�'veC�have�mightnt��A�mightC�might�A�ntC�not�mightntve��A�mightC�might�A�ntC�not�A�veC�have�mightn’t��A�mightC�might�A�n’tC�not�mightn’t’ve��A�mightC�might�A�n’tC�not�A�’veC�have�mightve��A�mightC�might�A�ve�might’ve��A�mightC�might�A�’ve�must've��A�mustC�must�A�'ve�mustn't��A�mustC�must�A�n'tC�not�mustn't've��A�mustC�must�A�n'tC�not�A�'veC�have�mustnt��A�mustC�must�A�ntC�not�mustntve��A�mustC�must�A�ntC�not�A�veC�have�mustn’t��A�mustC�must�A�n’tC�not�mustn’t’ve��A�mustC�must�A�n’tC�not�A�’veC�have�mustve��A�mustC�must�A�ve�must’ve��A�mustC�must�A�’ve�n.��A�n.�needn't��A�needC�need�A�n'tC�not�needn't've��A�needC�need�A�n'tC�not�A�'veC�have�neednt��A�needC�need�A�ntC�not�needntve��A�needC�need�A�ntC�not�A�veC�have�needn’t��A�needC�need�A�n’tC�not�needn’t’ve��A�needC�need�A�n’tC�not�A�’veC�have�not've��A�not�A�'veC�have�nothin��A�nothinC�nothing�nothin'��A�nothin'C�nothing�nothin’��A�nothin’C�nothing�notve��A�not�A�veC�have�not’ve��A�not�A�’veC�have�nuff��A�nuffC�enough�nuthin��A�nuthinC�nothing�nuthin'��A�nuthin'C�nothing�nuthin’��A�nuthin’C�nothing�o'clock��A�o'clockC�o'clock�o.��A�o.�o.0��A�o.0�o.O��A�o.O�o.o��A�o.o�o_0��A�o_0�o_O��A�o_O�o_o��A�o_o�ol��A�olC�old�ol'��A�ol'C�old�ol’��A�ol’C�old�oughtn't��A�oughtC�ought�A�n'tC�not�oughtn't've��A�oughtC�ought�A�n'tC�not�A�'veC�have�oughtnt��A�oughtC�ought�A�ntC�not�oughtntve��A�oughtC�ought�A�ntC�not�A�veC�have�oughtn’t��A�oughtC�ought�A�n’tC�not�oughtn’t’ve��A�oughtC�ought�A�n’tC�not�A�’veC�have�o’clock��A�o’clockC�o'clock�p.��A�p.�p.m.��A�p.m.�q.��A�q.�r.��A�r.�s.��A�s.�shan't��A�shaC�shall�A�n'tC�not�shan't've��A�shaC�shall�A�n'tC�not�A�'veC�have�shant��A�shaC�shall�A�ntC�not�shantve��A�shaC�shall�A�ntC�not�A�veC�have�shan’t��A�shaC�shall�A�n’tC�not�shan’t’ve��A�shaC�shall�A�n’tC�not�A�’veC�have�she'd��A�sheC�she�A�'dC�'d�she'd've��A�sheC�she�A�'dC�would�A�'veC�have�she'll��A�sheC�she�A�'llC�will�she'll've��A�sheC�she�A�'llC�will�A�'veC�have�she's��A�sheC�she�A�'sC�'s�shedve��A�sheC�she�A�dC�would�A�veC�have�shellve��A�sheC�she�A�llC�will�A�veC�have�shes��A�sheC�she�A�s�she’d��A�sheC�she�A�’dC�'d�she’d’ve��A�sheC�she�A�’dC�would�A�’veC�have�she’ll��A�sheC�she�A�’llC�will�she’ll’ve��A�sheC�she�A�’llC�will�A�’veC�have�she’s��A�sheC�she�A�’sC�'s�should've��A�shouldC�should�A�'ve�shouldn't��A�shouldC�should�A�n'tC�not�shouldn't've��A�shouldC�should�A�n'tC�not�A�'veC�have�shouldnt��A�shouldC�should�A�ntC�not�shouldntve��A�shouldC�should�A�ntC�not�A�veC�have�shouldn’t��A�shouldC�should�A�n’tC�not�shouldn’t’ve��A�shouldC�should�A�n’tC�not�A�’veC�have�shouldve��A�shouldC�should�A�ve�should’ve��A�shouldC�should�A�’ve�somethin��A�somethinC�something�somethin'��A�somethin'C�something�somethin’��A�somethin’C�something�t.��A�t.�that'd��A�thatC�that�A�'dC�'d�that'd've��A�thatC�that�A�'dC�would�A�'veC�have�that'll��A�thatC�that�A�'llC�will�that'll've��A�thatC�that�A�'llC�will�A�'veC�have�that's��A�thatC�that�A�'sC�'s�thatd��A�thatC�that�A�dC�'d�thatdve��A�thatC�that�A�dC�would�A�veC�have�thatll��A�thatC�that�A�llC�will�thatllve��A�thatC�that�A�llC�will�A�veC�have�thats��A�thatC�that�A�s�that’d��A�thatC�that�A�’dC�'d�that’d’ve��A�thatC�that�A�’dC�would�A�’veC�have�that’ll��A�thatC�that�A�’llC�will�that’ll’ve��A�thatC�that�A�’llC�will�A�’veC�have�that’s��A�thatC�that�A�’sC�'s�there'd��A�thereC�there�A�'dC�'d�there'd've��A�thereC�there�A�'dC�would�A�'veC�have�there'll��A�thereC�there�A�'llC�will�there'll've��A�thereC�there�A�'llC�will�A�'veC�have�there're��A�thereC�there�A�'reC�are�there's��A�thereC�there�A�'sC�'s�there've��A�thereC�there�A�'ve�thered��A�thereC�there�A�dC�'d�theredve��A�thereC�there�A�dC�would�A�veC�have�therell��A�thereC�there�A�llC�will�therellve��A�thereC�there�A�llC�will�A�veC�have�therere��A�thereC�there�A�reC�are�theres��A�thereC�there�A�s�thereve��A�there�A�veC�have�there’d��A�thereC�there�A�’dC�'d�there’d’ve��A�thereC�there�A�’dC�would�A�’veC�have�there’ll��A�thereC�there�A�’llC�will�there’ll’ve��A�thereC�there�A�’llC�will�A�’veC�have�there’re��A�thereC�there�A�’reC�are�there’s��A�thereC�there�A�’sC�'s�there’ve��A�thereC�there�A�’ve�these'd��A�theseC�these�A�'dC�'d�these'd've��A�theseC�these�A�'dC�would�A�'veC�have�these'll��A�theseC�these�A�'llC�will�these'll've��A�theseC�these�A�'llC�will�A�'veC�have�these're��A�theseC�these�A�'reC�are�these've��A�theseC�these�A�'ve�thesed��A�theseC�these�A�dC�'d�thesedve��A�theseC�these�A�dC�would�A�veC�have�thesell��A�theseC�these�A�llC�will�thesellve��A�theseC�these�A�llC�will�A�veC�have�thesere��A�theseC�these�A�reC�are�theseve��A�these�A�veC�have�these’d��A�theseC�these�A�’dC�'d�these’d’ve��A�theseC�these�A�’dC�would�A�’veC�have�these’ll��A�theseC�these�A�’llC�will�these’ll’ve��A�theseC�these�A�’llC�will�A�’veC�have�these’re��A�theseC�these�A�’reC�are�these’ve��A�theseC�these�A�’ve�they'd��A�theyC�they�A�'dC�'d�they'd've��A�theyC�they�A�'dC�would�A�'veC�have�they'll��A�theyC�they�A�'llC�will�they'll've��A�theyC�they�A�'llC�will�A�'veC�have�they're��A�theyC�they�A�'reC�are�they've��A�theyC�they�A�'veC�have�theyd��A�theyC�they�A�dC�'d�theydve��A�theyC�they�A�dC�would�A�veC�have�theyll��A�theyC�they�A�llC�will�theyllve��A�theyC�they�A�llC�will�A�veC�have�theyre��A�theyC�they�A�reC�are�theyve��A�theyC�they�A�veC�have�they’d��A�theyC�they�A�’dC�'d�they’d’ve��A�theyC�they�A�’dC�would�A�’veC�have�they’ll��A�theyC�they�A�’llC�will�they’ll’ve��A�theyC�they�A�’llC�will�A�’veC�have�they’re��A�theyC�they�A�’reC�are�they’ve��A�theyC�they�A�’veC�have�this'd��A�thisC�this�A�'dC�'d�this'd've��A�thisC�this�A�'dC�would�A�'veC�have�this'll��A�thisC�this�A�'llC�will�this'll've��A�thisC�this�A�'llC�will�A�'veC�have�this's��A�thisC�this�A�'sC�'s�thisd��A�thisC�this�A�dC�'d�thisdve��A�thisC�this�A�dC�would�A�veC�have�thisll��A�thisC�this�A�llC�will�thisllve��A�thisC�this�A�llC�will�A�veC�have�thiss��A�thisC�this�A�s�this’d��A�thisC�this�A�’dC�'d�this’d’ve��A�thisC�this�A�’dC�would�A�’veC�have�this’ll��A�thisC�this�A�’llC�will�this’ll’ve��A�thisC�this�A�’llC�will�A�’veC�have�this’s��A�thisC�this�A�’sC�'s�those'd��A�thoseC�those�A�'dC�'d�those'd've��A�thoseC�those�A�'dC�would�A�'veC�have�those'll��A�thoseC�those�A�'llC�will�those'll've��A�thoseC�those�A�'llC�will�A�'veC�have�those're��A�thoseC�those�A�'reC�are�those've��A�thoseC�those�A�'ve�thosed��A�thoseC�those�A�dC�'d�thosedve��A�thoseC�those�A�dC�would�A�veC�have�thosell��A�thoseC�those�A�llC�will�thosellve��A�thoseC�those�A�llC�will�A�veC�have�thosere��A�thoseC�those�A�reC�are�thoseve��A�those�A�veC�have�those’d��A�thoseC�those�A�’dC�'d�those’d’ve��A�thoseC�those�A�’dC�would�A�’veC�have�those’ll��A�thoseC�those�A�’llC�will�those’ll’ve��A�thoseC�those�A�’llC�will�A�’veC�have�those’re��A�thoseC�those�A�’reC�are�those’ve��A�thoseC�those�A�’ve�u.��A�u.�v.��A�v.�v.s.��A�v.s.�v.v��A�v.v�v_v��A�v_v�vs.��A�vs.�w.��A�w.�w/o��A�w/oC�without�wasn't��A�wasC�was�A�n'tC�not�wasnt��A�wasC�was�A�ntC�not�wasn’t��A�wasC�was�A�n’tC�not�we'd��A�weC�we�A�'dC�'d�we'd've��A�weC�we�A�'dC�would�A�'veC�have�we'll��A�weC�we�A�'llC�will�we'll've��A�weC�we�A�'llC�will�A�'veC�have�we're��A�weC�we�A�'reC�are�we've��A�weC�we�A�'veC�have�wed��A�weC�we�A�dC�'d�wedve��A�weC�we�A�dC�would�A�veC�have�wellve��A�weC�we�A�llC�will�A�veC�have�weren't��A�wereC�were�A�n'tC�not�werent��A�wereC�were�A�ntC�not�weren’t��A�wereC�were�A�n’tC�not�weve��A�weC�we�A�veC�have�we’d��A�weC�we�A�’dC�'d�we’d’ve��A�weC�we�A�’dC�would�A�’veC�have�we’ll��A�weC�we�A�’llC�will�we’ll’ve��A�weC�we�A�’llC�will�A�’veC�have�we’re��A�weC�we�A�’reC�are�we’ve��A�weC�we�A�’veC�have�what'd��A�whatC�what�A�'dC�'d�what'd've��A�whatC�what�A�'dC�would�A�'veC�have�what'll��A�whatC�what�A�'llC�will�what'll've��A�whatC�what�A�'llC�will�A�'veC�have�what're��A�whatC�what�A�'reC�are�what's��A�whatC�what�A�'sC�'s�what've��A�whatC�what�A�'ve�whatd��A�whatC�what�A�dC�'d�whatdve��A�whatC�what�A�dC�would�A�veC�have�whatll��A�whatC�what�A�llC�will�whatllve��A�whatC�what�A�llC�will�A�veC�have�whatre��A�whatC�what�A�reC�are�whats��A�whatC�what�A�s�whatve��A�what�A�veC�have�what’d��A�whatC�what�A�’dC�'d�what’d’ve��A�whatC�what�A�’dC�would�A�’veC�have�what’ll��A�whatC�what�A�’llC�will�what’ll’ve��A�whatC�what�A�’llC�will�A�’veC�have�what’re��A�whatC�what�A�’reC�are�what’s��A�whatC�what�A�’sC�'s�what’ve��A�whatC�what�A�’ve�when'd��A�whenC�when�A�'dC�'d�when'd've��A�whenC�when�A�'dC�would�A�'veC�have�when'll��A�whenC�when�A�'llC�will�when'll've��A�whenC�when�A�'llC�will�A�'veC�have�when're��A�whenC�when�A�'reC�are�when's��A�whenC�when�A�'sC�'s�when've��A�whenC�when�A�'ve�whend��A�whenC�when�A�dC�'d�whendve��A�whenC�when�A�dC�would�A�veC�have�whenll��A�whenC�when�A�llC�will�whenllve��A�whenC�when�A�llC�will�A�veC�have�whenre��A�whenC�when�A�reC�are�whens��A�whenC�when�A�s�whenve��A�when�A�veC�have�when’d��A�whenC�when�A�’dC�'d�when’d’ve��A�whenC�when�A�’dC�would�A�’veC�have�when’ll��A�whenC�when�A�’llC�will�when’ll’ve��A�whenC�when�A�’llC�will�A�’veC�have�when’re��A�whenC�when�A�’reC�are�when’s��A�whenC�when�A�’sC�'s�when’ve��A�whenC�when�A�’ve�where'd��A�whereC�where�A�'dC�'d�where'd've��A�whereC�where�A�'dC�would�A�'veC�have�where'll��A�whereC�where�A�'llC�will�where'll've��A�whereC�where�A�'llC�will�A�'veC�have�where're��A�whereC�where�A�'reC�are�where's��A�whereC�where�A�'sC�'s�where've��A�whereC�where�A�'ve�whered��A�whereC�where�A�dC�'d�wheredve��A�whereC�where�A�dC�would�A�veC�have�wherell��A�whereC�where�A�llC�will�wherellve��A�whereC�where�A�llC�will�A�veC�have�wherere��A�whereC�where�A�reC�are�wheres��A�whereC�where�A�s�whereve��A�where�A�veC�have�where’d��A�whereC�where�A�’dC�'d�where’d’ve��A�whereC�where�A�’dC�would�A�’veC�have�where’ll��A�whereC�where�A�’llC�will�where’ll’ve��A�whereC�where�A�’llC�will�A�’veC�have�where’re��A�whereC�where�A�’reC�are�where’s��A�whereC�where�A�’sC�'s�where’ve��A�whereC�where�A�’ve�who'd��A�whoC�who�A�'dC�'d�who'd've��A�whoC�who�A�'dC�would�A�'veC�have�who'll��A�whoC�who�A�'llC�will�who'll've��A�whoC�who�A�'llC�will�A�'veC�have�who're��A�whoC�who�A�'reC�are�who's��A�whoC�who�A�'sC�'s�who've��A�whoC�who�A�'ve�whod��A�whoC�who�A�dC�'d�whodve��A�whoC�who�A�dC�would�A�veC�have�wholl��A�whoC�who�A�llC�will�whollve��A�whoC�who�A�llC�will�A�veC�have�whos��A�whoC�who�A�s�whove��A�who�A�veC�have�who’d��A�whoC�who�A�’dC�'d�who’d’ve��A�whoC�who�A�’dC�would�A�’veC�have�who’ll��A�whoC�who�A�’llC�will�who’ll’ve��A�whoC�who�A�’llC�will�A�’veC�have�who’re��A�whoC�who�A�’reC�are�who’s��A�whoC�who�A�’sC�'s�who’ve��A�whoC�who�A�’ve�why'd��A�whyC�why�A�'dC�'d�why'd've��A�whyC�why�A�'dC�would�A�'veC�have�why'll��A�whyC�why�A�'llC�will�why'll've��A�whyC�why�A�'llC�will�A�'veC�have�why're��A�whyC�why�A�'reC�are�why's��A�whyC�why�A�'sC�'s�why've��A�whyC�why�A�'ve�whyd��A�whyC�why�A�dC�'d�whydve��A�whyC�why�A�dC�would�A�veC�have�whyll��A�whyC�why�A�llC�will�whyllve��A�whyC�why�A�llC�will�A�veC�have�whyre��A�whyC�why�A�reC�are�whys��A�whyC�why�A�s�whyve��A�why�A�veC�have�why’d��A�whyC�why�A�’dC�'d�why’d’ve��A�whyC�why�A�’dC�would�A�’veC�have�why’ll��A�whyC�why�A�’llC�will�why’ll’ve��A�whyC�why�A�’llC�will�A�’veC�have�why’re��A�whyC�why�A�’reC�are�why’s��A�whyC�why�A�’sC�'s�why’ve��A�whyC�why�A�’ve�won't��A�woC�will�A�n'tC�not�won't've��A�woC�will�A�n'tC�not�A�'veC�have�wont��A�woC�will�A�ntC�not�wontve��A�woC�will�A�ntC�not�A�veC�have�won’t��A�woC�will�A�n’tC�not�won’t’ve��A�woC�will�A�n’tC�not�A�’veC�have�would've��A�wouldC�would�A�'ve�wouldn't��A�wouldC�would�A�n'tC�not�wouldn't've��A�wouldC�would�A�n'tC�not�A�'veC�have�wouldnt��A�wouldC�would�A�ntC�not�wouldntve��A�wouldC�would�A�ntC�not�A�veC�have�wouldn’t��A�wouldC�would�A�n’tC�not�wouldn’t’ve��A�wouldC�would�A�n’tC�not�A�’veC�have�wouldve��A�wouldC�would�A�ve�would’ve��A�wouldC�would�A�’ve�x.��A�x.�xD��A�xD�xDD��A�xDD�y'all��A�y'C�you�A�all�y.��A�y.�yall��A�yC�you�A�all�you'd��A�youC�you�A�'dC�'d�you'd've��A�youC�you�A�'dC�would�A�'veC�have�you'll��A�youC�you�A�'llC�will�you'll've��A�youC�you�A�'llC�will�A�'veC�have�you're��A�youC�you�A�'reC�are�you've��A�youC�you�A�'veC�have�youd��A�youC�you�A�dC�'d�youdve��A�youC�you�A�dC�would�A�veC�have�youll��A�youC�you�A�llC�will�youllve��A�youC�you�A�llC�will�A�veC�have�youre��A�youC�you�A�reC�are�youve��A�youC�you�A�veC�have�you’d��A�youC�you�A�’dC�'d�you’d’ve��A�youC�you�A�’dC�would�A�’veC�have�you’ll��A�youC�you�A�’llC�will�you’ll’ve��A�youC�you�A�’llC�will�A�’veC�have�you’re��A�youC�you�A�’reC�are�you’ve��A�youC�you�A�’veC�have�y’all��A�y’C�you�A�all�z.��A�z.� ��A� C� �¯\(ツ)/¯��A�¯\(ツ)/¯�°C.��A�°�A�C�A�.�°F.��A�°�A�F�A�.�°K.��A�°�A�K�A�.�°c.��A�°�A�c�A�.�°f.��A�°�A�f�A�.�°k.��A�°�A�k�A�.�ä.��A�ä.�ö.��A�ö.�ü.��A�ü.�ಠ_ಠ��A�ಠ_ಠ�ಠ︵ಠ��A�ಠ︵ಠ�—��A�—�‘S��A�‘SC�'s�‘s��A�‘sC�'s�’��A�’�’Cause��A�’CauseC�because�’Cos��A�’CosC�because�’Coz��A�’CozC�because�’Cuz��A�’CuzC�because�’S��A�’SC�'s�’bout��A�’boutC�about�’cause��A�’causeC�because�’cos��A�’cosC�because�’coz��A�’cozC�because�’cuz��A�’cuzC�because�’d��A�’d�’em��A�’emC�them�’ll��A�’llC�will�’nuff��A�’nuffC�enough�’re��A�’reC�are�’s��A�’sC�'s�’’��A�’’�faster_heuristics�
transformer/cfg ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+ "max_batch_items":4096
3
+ }
transformer/model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:908026d79c22f13ced91b9373fa4c6d25b548e5ff74d2b3711bcc6573bb6f526
3
+ size 502031113
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,4178 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ "\t",
3
+ "\n",
4
+ " ",
5
+ " ",
6
+ "!",
7
+ "\"",
8
+ "#",
9
+ "%",
10
+ "&",
11
+ "'",
12
+ "''",
13
+ "'-(",
14
+ "'-)",
15
+ "'Cause",
16
+ "'Cos",
17
+ "'Coz",
18
+ "'Cuz",
19
+ "'S",
20
+ "'X",
21
+ "'Xxx",
22
+ "'Xxxxx",
23
+ "'am",
24
+ "'bout",
25
+ "'cause",
26
+ "'cos",
27
+ "'coz",
28
+ "'cuz",
29
+ "'d",
30
+ "'em",
31
+ "'ll",
32
+ "'m",
33
+ "'nuff",
34
+ "'re",
35
+ "'s",
36
+ "'ve",
37
+ "'x",
38
+ "'xx",
39
+ "'xxx",
40
+ "'xxxx",
41
+ "'y",
42
+ "(",
43
+ "(((",
44
+ "(*>",
45
+ "(*_*)",
46
+ "(-8",
47
+ "(-:",
48
+ "(-;",
49
+ "(-_-)",
50
+ "(-d",
51
+ "(._.)",
52
+ "(:",
53
+ "(;",
54
+ "(=",
55
+ "(>_<)",
56
+ "(^_^)",
57
+ "(o:",
58
+ "(x:",
59
+ "(x_x)",
60
+ "(\u00ac_\u00ac)",
61
+ "(\u0ca0_\u0ca0)",
62
+ "(\u256f\u00b0\u25a1\u00b0\uff09\u256f\ufe35\u253b\u2501\u253b",
63
+ ")",
64
+ ")))",
65
+ ")-:",
66
+ ")/\u00af",
67
+ "):",
68
+ "*",
69
+ "+",
70
+ "+11",
71
+ ",",
72
+ "-",
73
+ "-((",
74
+ "-))",
75
+ "-/",
76
+ "-0",
77
+ "-3",
78
+ "-8",
79
+ "-D",
80
+ "-O",
81
+ "-P",
82
+ "-X",
83
+ "-_-",
84
+ "-__-",
85
+ "-d",
86
+ "-o",
87
+ "-p",
88
+ "-x",
89
+ "-|",
90
+ ".",
91
+ "...",
92
+ ".C.",
93
+ ".D.",
94
+ ".E.",
95
+ ".G.",
96
+ ".H.",
97
+ ".J.",
98
+ ".M.",
99
+ ".NET",
100
+ ".Net",
101
+ ".S.",
102
+ ".XXX",
103
+ ".Xxx",
104
+ ".Y.",
105
+ "._.",
106
+ ".e.",
107
+ ".g.",
108
+ ".js",
109
+ ".m.",
110
+ ".net",
111
+ ".s.",
112
+ "/",
113
+ "//epicMEE",
114
+ "//epicmee",
115
+ "//xxxxXXX",
116
+ "/3",
117
+ "/d",
118
+ "/or",
119
+ "0",
120
+ "0.0",
121
+ "0.o",
122
+ "016",
123
+ "019",
124
+ "0_0",
125
+ "0_o",
126
+ "1",
127
+ "10",
128
+ "100",
129
+ "10a.m",
130
+ "10a.m.",
131
+ "10p.m",
132
+ "10p.m.",
133
+ "11",
134
+ "11a.m",
135
+ "11a.m.",
136
+ "11p.m",
137
+ "11p.m.",
138
+ "12",
139
+ "12a.m",
140
+ "12a.m.",
141
+ "12p.m",
142
+ "12p.m.",
143
+ "1a.m",
144
+ "1a.m.",
145
+ "1p.m",
146
+ "1p.m.",
147
+ "2",
148
+ "2015/2016",
149
+ "2016",
150
+ "2019",
151
+ "24x7",
152
+ "271",
153
+ "2C.",
154
+ "2EE",
155
+ "2a.m",
156
+ "2a.m.",
157
+ "2p.m",
158
+ "2p.m.",
159
+ "2years",
160
+ "3",
161
+ "3+plus",
162
+ "30",
163
+ "31",
164
+ "33",
165
+ "333",
166
+ "365",
167
+ "3D",
168
+ "3a.m",
169
+ "3a.m.",
170
+ "3d",
171
+ "3p.m",
172
+ "3p.m.",
173
+ "3rd",
174
+ "4",
175
+ "4a.m",
176
+ "4a.m.",
177
+ "4p.m",
178
+ "4p.m.",
179
+ "4x7",
180
+ "5",
181
+ "5a.m",
182
+ "5a.m.",
183
+ "5p.m",
184
+ "5p.m.",
185
+ "6",
186
+ "6a.m",
187
+ "6a.m.",
188
+ "6p.m",
189
+ "6p.m.",
190
+ "6s",
191
+ "7",
192
+ "7a.m",
193
+ "7a.m.",
194
+ "7p.m",
195
+ "7p.m.",
196
+ "8",
197
+ "8)",
198
+ "8-",
199
+ "8-)",
200
+ "8-D",
201
+ "8-d",
202
+ "837/835/277/276/270/271",
203
+ "8D",
204
+ "8a.m",
205
+ "8a.m.",
206
+ "8d",
207
+ "8p.m",
208
+ "8p.m.",
209
+ "9",
210
+ "9.9",
211
+ "99.9",
212
+ "9a.m",
213
+ "9a.m.",
214
+ "9p.m",
215
+ "9p.m.",
216
+ ":",
217
+ ":'(",
218
+ ":')",
219
+ ":'-(",
220
+ ":'-)",
221
+ ":(",
222
+ ":((",
223
+ ":(((",
224
+ ":()",
225
+ ":)",
226
+ ":))",
227
+ ":)))",
228
+ ":*",
229
+ ":-(",
230
+ ":-((",
231
+ ":-(((",
232
+ ":-)",
233
+ ":-))",
234
+ ":-)))",
235
+ ":-*",
236
+ ":-/",
237
+ ":-0",
238
+ ":-3",
239
+ ":->",
240
+ ":-D",
241
+ ":-O",
242
+ ":-P",
243
+ ":-X",
244
+ ":-]",
245
+ ":-d",
246
+ ":-o",
247
+ ":-p",
248
+ ":-x",
249
+ ":-|",
250
+ ":-}",
251
+ ":/",
252
+ ":0",
253
+ ":1",
254
+ ":3",
255
+ ":>",
256
+ ":D",
257
+ ":O",
258
+ ":P",
259
+ ":X",
260
+ ":]",
261
+ ":d",
262
+ ":o",
263
+ ":o)",
264
+ ":p",
265
+ ":x",
266
+ ":x)",
267
+ ":|",
268
+ ":}",
269
+ ":\u2019(",
270
+ ":\u2019)",
271
+ ":\u2019-(",
272
+ ":\u2019-)",
273
+ ";",
274
+ ";)",
275
+ ";-)",
276
+ ";-D",
277
+ ";-X",
278
+ ";-d",
279
+ ";D",
280
+ ";X",
281
+ ";_;",
282
+ ";d",
283
+ "<",
284
+ "<.<",
285
+ "</3",
286
+ "</d",
287
+ "<3",
288
+ "<33",
289
+ "<333",
290
+ "<d",
291
+ "<dd",
292
+ "<ddd",
293
+ "<space>",
294
+ "<xxxx>",
295
+ "=",
296
+ "=(",
297
+ "=)",
298
+ "=/",
299
+ "=3",
300
+ "=D",
301
+ "=X",
302
+ "=[",
303
+ "=]",
304
+ "=d",
305
+ "=|",
306
+ ">",
307
+ ">.<",
308
+ ">.>",
309
+ ">:(",
310
+ ">:o",
311
+ ">:x",
312
+ "><(((*>",
313
+ "@",
314
+ "@_@",
315
+ "A",
316
+ "AC",
317
+ "ACK",
318
+ "ACLs",
319
+ "AFE",
320
+ "AFe",
321
+ "AHU",
322
+ "AI",
323
+ "ALM",
324
+ "ANA",
325
+ "ANSI",
326
+ "ANs",
327
+ "APH",
328
+ "API",
329
+ "APIs",
330
+ "APM",
331
+ "AR",
332
+ "ARM",
333
+ "ART",
334
+ "AS2",
335
+ "ASE",
336
+ "ASIC",
337
+ "ASICs",
338
+ "ATA",
339
+ "AWS",
340
+ "Ability",
341
+ "Able",
342
+ "Accounting",
343
+ "Acknowledged",
344
+ "Acoustics",
345
+ "Active",
346
+ "Additional",
347
+ "Adm",
348
+ "Adm.",
349
+ "Administration",
350
+ "Advanced",
351
+ "Agile",
352
+ "Ai",
353
+ "Ak",
354
+ "Ak.",
355
+ "Ala",
356
+ "Ala.",
357
+ "Alabama",
358
+ "Alaska",
359
+ "All",
360
+ "Amazon",
361
+ "An",
362
+ "Analog",
363
+ "Analytical",
364
+ "Android",
365
+ "Angular",
366
+ "AngularJS",
367
+ "Ansible",
368
+ "Apache",
369
+ "App",
370
+ "AppConnect",
371
+ "Applicable",
372
+ "Application",
373
+ "Apr",
374
+ "Apr.",
375
+ "April",
376
+ "Architect",
377
+ "Architecture",
378
+ "Are",
379
+ "Ariz",
380
+ "Ariz.",
381
+ "Arizona",
382
+ "Ark",
383
+ "Ark.",
384
+ "Arkansas",
385
+ "As",
386
+ "Asia",
387
+ "At",
388
+ "Attention",
389
+ "Aug",
390
+ "Aug.",
391
+ "August",
392
+ "Authentication",
393
+ "Automation",
394
+ "Autopilot",
395
+ "Available",
396
+ "Avanade",
397
+ "Awareness",
398
+ "Azure",
399
+ "B",
400
+ "B.S.",
401
+ "B2B",
402
+ "BA",
403
+ "BAS",
404
+ "BASIS",
405
+ "BCDR",
406
+ "BCM",
407
+ "BGP",
408
+ "BI",
409
+ "BMS",
410
+ "BOM",
411
+ "BS",
412
+ "BSD",
413
+ "BSEE",
414
+ "Bachelor",
415
+ "Bachelors",
416
+ "Background",
417
+ "Balancers",
418
+ "Bash",
419
+ "Basic",
420
+ "Basis",
421
+ "Battery",
422
+ "Bazel",
423
+ "Best",
424
+ "Bilingual",
425
+ "Blueprints",
426
+ "Board",
427
+ "Branch",
428
+ "Bros",
429
+ "Bros.",
430
+ "Building",
431
+ "Business",
432
+ "C",
433
+ "C'm",
434
+ "C++",
435
+ "C++/C#/Java",
436
+ "C++/Java",
437
+ "C++11",
438
+ "C.",
439
+ "CAM",
440
+ "CCP",
441
+ "CCV",
442
+ "CD",
443
+ "CDR",
444
+ "CE",
445
+ "CFE",
446
+ "CI",
447
+ "CICD",
448
+ "CIODEM19",
449
+ "CIe",
450
+ "CLs",
451
+ "CM",
452
+ "COM",
453
+ "CPU",
454
+ "CRA",
455
+ "CREO",
456
+ "CRM",
457
+ "CS",
458
+ "CSC",
459
+ "CSEO",
460
+ "CSI",
461
+ "CSS",
462
+ "CVI",
463
+ "CVPR",
464
+ "Ca",
465
+ "Calibration",
466
+ "Calif",
467
+ "Calif.",
468
+ "California",
469
+ "Can",
470
+ "Candidates",
471
+ "Capability",
472
+ "Capacity",
473
+ "Cause",
474
+ "Certification",
475
+ "Certifications",
476
+ "Certified",
477
+ "Chain",
478
+ "Check",
479
+ "Chef",
480
+ "Circuit",
481
+ "Cisco",
482
+ "Citizenship",
483
+ "Cloud",
484
+ "Co",
485
+ "Co.",
486
+ "Collaboration",
487
+ "College",
488
+ "Colo",
489
+ "Colo.",
490
+ "Colorado",
491
+ "Come",
492
+ "Comfort",
493
+ "Comfortable",
494
+ "Communication",
495
+ "Communications",
496
+ "CompTIA",
497
+ "Complex",
498
+ "Compute",
499
+ "Computer",
500
+ "Computing",
501
+ "Concepts",
502
+ "Conceptualize",
503
+ "Confident",
504
+ "Conn",
505
+ "Conn.",
506
+ "Connecticut",
507
+ "Consistent",
508
+ "Consistently",
509
+ "Consulting",
510
+ "Continuous",
511
+ "Contributions",
512
+ "Cookbooks",
513
+ "Cooling",
514
+ "Cordova",
515
+ "Core",
516
+ "Corp",
517
+ "Corp.",
518
+ "Cos",
519
+ "CosmosDB",
520
+ "Could",
521
+ "Coz",
522
+ "Cpk",
523
+ "Creativity",
524
+ "Cross",
525
+ "Cultural",
526
+ "Currently",
527
+ "Customer",
528
+ "Cuz",
529
+ "C\u2019m",
530
+ "D",
531
+ "D.",
532
+ "D.C.",
533
+ "DAC",
534
+ "DB",
535
+ "DB2",
536
+ "DBMS",
537
+ "DC",
538
+ "DCs",
539
+ "DHCP",
540
+ "DICOM",
541
+ "DIO",
542
+ "DIPLOMA",
543
+ "DIPLOMA_MAJOR",
544
+ "DMI",
545
+ "DNS",
546
+ "DOE",
547
+ "DP",
548
+ "DR",
549
+ "Dare",
550
+ "Data",
551
+ "Database",
552
+ "Datacenter",
553
+ "Dec",
554
+ "Dec.",
555
+ "December",
556
+ "Deep",
557
+ "Degree",
558
+ "Del",
559
+ "Del.",
560
+ "Delaware",
561
+ "Dell",
562
+ "Demonstrate",
563
+ "Demonstrated",
564
+ "Des",
565
+ "Design",
566
+ "Desired",
567
+ "Desk",
568
+ "Detail",
569
+ "Dev",
570
+ "DevOps",
571
+ "DevRelawesomejobs",
572
+ "Development",
573
+ "Did",
574
+ "Diploma",
575
+ "Directory",
576
+ "Distribution",
577
+ "Do",
578
+ "Docker",
579
+ "Does",
580
+ "Doin",
581
+ "Doin'",
582
+ "Doin\u2019",
583
+ "Dojo",
584
+ "Domain",
585
+ "Dr",
586
+ "Dr.",
587
+ "Dryad",
588
+ "Dynamics",
589
+ "Dynatrace",
590
+ "E",
591
+ "E.G.",
592
+ "E.g",
593
+ "E.g.",
594
+ "EAT",
595
+ "EBICS",
596
+ "ECCV",
597
+ "EDA",
598
+ "EE",
599
+ "EMS",
600
+ "EO",
601
+ "EPMS",
602
+ "ERL",
603
+ "ERP",
604
+ "EST",
605
+ "ETC",
606
+ "EUSEJOBS",
607
+ "EXPERIENCE",
608
+ "Economics",
609
+ "Edge",
610
+ "Education",
611
+ "Elastic",
612
+ "Electrical",
613
+ "Electronic",
614
+ "Enclosures",
615
+ "Engagement",
616
+ "Engineering",
617
+ "English",
618
+ "Enjoys",
619
+ "Enterprise",
620
+ "Estimation",
621
+ "Ethernet",
622
+ "Eventual",
623
+ "Ex",
624
+ "Excellence",
625
+ "Excellent",
626
+ "Exceptional",
627
+ "Execution",
628
+ "Executive",
629
+ "Executives",
630
+ "Experience",
631
+ "Experienced",
632
+ "Experiences",
633
+ "Expert",
634
+ "Expertise",
635
+ "Exposure",
636
+ "Extensive",
637
+ "F",
638
+ "F.",
639
+ "FPC",
640
+ "FPGA",
641
+ "FTP",
642
+ "Fabric",
643
+ "Facebook",
644
+ "Familiar",
645
+ "Familiarity",
646
+ "Fantastic",
647
+ "Feb",
648
+ "Feb.",
649
+ "February",
650
+ "Finance",
651
+ "Firewalls",
652
+ "Five",
653
+ "Fla",
654
+ "Fla.",
655
+ "Flexibility",
656
+ "Florida",
657
+ "Fluen",
658
+ "Fluent",
659
+ "Following",
660
+ "Forms",
661
+ "Foundation",
662
+ "FreeBSD",
663
+ "Full",
664
+ "Fundamentals",
665
+ "Fusion",
666
+ "G",
667
+ "GCP",
668
+ "GIT",
669
+ "GMP",
670
+ "GPUs",
671
+ "GTM",
672
+ "Ga",
673
+ "Ga.",
674
+ "Gaming",
675
+ "Gen",
676
+ "Gen.",
677
+ "General",
678
+ "Generator",
679
+ "Georgia",
680
+ "Git",
681
+ "GitHub",
682
+ "Github",
683
+ "Go",
684
+ "Goin",
685
+ "Goin'",
686
+ "Goin\u2019",
687
+ "Gon",
688
+ "Good",
689
+ "Google",
690
+ "Got",
691
+ "Gov",
692
+ "Gov.",
693
+ "Graduate",
694
+ "Great",
695
+ "H",
696
+ "HA",
697
+ "HACK",
698
+ "HANA",
699
+ "HBASE",
700
+ "HCP",
701
+ "HDD",
702
+ "HDMI",
703
+ "HEAT",
704
+ "HHVM",
705
+ "HL7",
706
+ "HP",
707
+ "HTML",
708
+ "HTTP",
709
+ "HVM",
710
+ "HW",
711
+ "Had",
712
+ "Hadoop",
713
+ "Hana",
714
+ "Hands",
715
+ "Hardware",
716
+ "Has",
717
+ "Have",
718
+ "Havin",
719
+ "Havin'",
720
+ "Havin\u2019",
721
+ "He",
722
+ "He's",
723
+ "Healthcare",
724
+ "He\u2019s",
725
+ "High",
726
+ "Highly",
727
+ "Hive",
728
+ "Home",
729
+ "How",
730
+ "How's",
731
+ "How\u2019s",
732
+ "Hub",
733
+ "I",
734
+ "I.E.",
735
+ "I.e",
736
+ "I.e.",
737
+ "I2C",
738
+ "I2C.",
739
+ "I2S",
740
+ "IBM",
741
+ "ICAM",
742
+ "ICCP",
743
+ "ICCV",
744
+ "ICD",
745
+ "ICRA",
746
+ "ICS",
747
+ "ICs",
748
+ "IEW",
749
+ "IFT",
750
+ "IGMP",
751
+ "IIS",
752
+ "IO",
753
+ "IOV",
754
+ "IP",
755
+ "IPC",
756
+ "IPI",
757
+ "IPSec",
758
+ "IPv4",
759
+ "IPv6",
760
+ "IRA",
761
+ "IS",
762
+ "ISC",
763
+ "IT",
764
+ "ITIL",
765
+ "Ia",
766
+ "Ia.",
767
+ "IaaS",
768
+ "Id",
769
+ "Id.",
770
+ "Idaho",
771
+ "If",
772
+ "Ignite",
773
+ "Ill",
774
+ "Ill.",
775
+ "Illinois",
776
+ "Image",
777
+ "In",
778
+ "Inc",
779
+ "Inc.",
780
+ "Ind",
781
+ "Ind.",
782
+ "Independent",
783
+ "Indiana",
784
+ "Information",
785
+ "Infosys",
786
+ "Infra",
787
+ "Infrastructure",
788
+ "Innovation",
789
+ "Integration",
790
+ "Interconnection",
791
+ "Internet",
792
+ "Interpersonal",
793
+ "Involvement",
794
+ "IoT",
795
+ "Iowa",
796
+ "Is",
797
+ "It",
798
+ "It's",
799
+ "Iterative",
800
+ "It\u2019s",
801
+ "J",
802
+ "J2EE",
803
+ "JDM",
804
+ "JIRA",
805
+ "JMP",
806
+ "JOR",
807
+ "JQuery",
808
+ "JS",
809
+ "JSON",
810
+ "JUnit",
811
+ "Jan",
812
+ "Jan.",
813
+ "January",
814
+ "Java",
815
+ "JavaScript",
816
+ "Javascript",
817
+ "Jenkins",
818
+ "Jira",
819
+ "Job",
820
+ "Jr",
821
+ "Jr.",
822
+ "Judgement",
823
+ "Jul",
824
+ "Jul.",
825
+ "July",
826
+ "Jun",
827
+ "Jun.",
828
+ "June",
829
+ "K",
830
+ "K.",
831
+ "KShell",
832
+ "KVM",
833
+ "Kafka",
834
+ "Kaizen",
835
+ "Kan",
836
+ "Kan.",
837
+ "Kanban",
838
+ "Kans",
839
+ "Kans.",
840
+ "Kansas",
841
+ "Kentucky",
842
+ "Key",
843
+ "Kibana",
844
+ "Knowledge",
845
+ "Kubernetes",
846
+ "Ky",
847
+ "Ky.",
848
+ "L",
849
+ "L2",
850
+ "L3",
851
+ "L4",
852
+ "LAB",
853
+ "LAM",
854
+ "LCD",
855
+ "LED",
856
+ "LLS",
857
+ "LSI",
858
+ "La",
859
+ "La.",
860
+ "LabVIEW",
861
+ "LabWindows",
862
+ "Large",
863
+ "Lead",
864
+ "Leadership",
865
+ "Leave",
866
+ "Let",
867
+ "Let's",
868
+ "Let\u2019s",
869
+ "Leverage",
870
+ "Lifecycle",
871
+ "Linux",
872
+ "Live",
873
+ "Load",
874
+ "Localization",
875
+ "Louisiana",
876
+ "Lovin",
877
+ "Lovin'",
878
+ "Lovin\u2019",
879
+ "Ltd",
880
+ "Ltd.",
881
+ "M",
882
+ "M.S.",
883
+ "M19",
884
+ "MATLAB",
885
+ "MBA",
886
+ "MDIO",
887
+ "MEE",
888
+ "MIPI",
889
+ "ML",
890
+ "MOF",
891
+ "MQ",
892
+ "MRAM",
893
+ "MS",
894
+ "MSc",
895
+ "Ma'am",
896
+ "Mac",
897
+ "Management",
898
+ "Mapping",
899
+ "Mar",
900
+ "Mar.",
901
+ "March",
902
+ "Mass",
903
+ "Mass.",
904
+ "Massachusetts",
905
+ "Master",
906
+ "Masters",
907
+ "Material",
908
+ "Math",
909
+ "Mathematics",
910
+ "MaxDB",
911
+ "May",
912
+ "Ma\u2019am",
913
+ "Md",
914
+ "Md.",
915
+ "Mechanical",
916
+ "Medical",
917
+ "Messrs",
918
+ "Messrs.",
919
+ "Metrics",
920
+ "Mich",
921
+ "Mich.",
922
+ "Michigan",
923
+ "Microsoft",
924
+ "Microsofts",
925
+ "Might",
926
+ "Migration",
927
+ "Minimum",
928
+ "Minn",
929
+ "Minn.",
930
+ "Minnesota",
931
+ "Miss",
932
+ "Miss.",
933
+ "Mississippi",
934
+ "Mixed",
935
+ "Mo",
936
+ "Mo.",
937
+ "Model",
938
+ "Monitoring",
939
+ "Mont",
940
+ "Mont.",
941
+ "Mount",
942
+ "Mr",
943
+ "Mr.",
944
+ "Mrs",
945
+ "Mrs.",
946
+ "Ms",
947
+ "Ms.",
948
+ "Mt",
949
+ "Mt.",
950
+ "Must",
951
+ "MySQL",
952
+ "N",
953
+ "N.C.",
954
+ "N.D.",
955
+ "N.H.",
956
+ "N.J.",
957
+ "N.M.",
958
+ "N.Y.",
959
+ "NA",
960
+ "NCE",
961
+ "NET",
962
+ "NFV",
963
+ "NIF",
964
+ "NIX",
965
+ "NPI",
966
+ "NSI",
967
+ "NVMe",
968
+ "Neb",
969
+ "Neb.",
970
+ "Nebr",
971
+ "Nebr.",
972
+ "Nebraska",
973
+ "Need",
974
+ "Net",
975
+ "NetWeaver",
976
+ "Netcool",
977
+ "Network",
978
+ "Networking",
979
+ "Networks",
980
+ "Nev",
981
+ "Nev.",
982
+ "Nevada",
983
+ "New",
984
+ "New Hampshire",
985
+ "New Jersey",
986
+ "New Mexico",
987
+ "New York",
988
+ "Nginx",
989
+ "NoSQL",
990
+ "Node",
991
+ "Node.js",
992
+ "None",
993
+ "North Carolina",
994
+ "North Dakota",
995
+ "Not",
996
+ "Nothin",
997
+ "Nothin'",
998
+ "Nothin\u2019",
999
+ "Nov",
1000
+ "Nov.",
1001
+ "November",
1002
+ "Now",
1003
+ "Nuthin",
1004
+ "Nuthin'",
1005
+ "Nuthin\u2019",
1006
+ "O",
1007
+ "O'clock",
1008
+ "O.O",
1009
+ "O.o",
1010
+ "OBS",
1011
+ "ODM",
1012
+ "OEM",
1013
+ "OLA",
1014
+ "OLED",
1015
+ "OMA",
1016
+ "ONS",
1017
+ "OS",
1018
+ "OSI",
1019
+ "OSPF",
1020
+ "OSS",
1021
+ "O_O",
1022
+ "O_o",
1023
+ "Objective",
1024
+ "Oct",
1025
+ "Oct.",
1026
+ "October",
1027
+ "Office",
1028
+ "Okla",
1029
+ "Okla.",
1030
+ "Oklahoma",
1031
+ "Ol",
1032
+ "Ol'",
1033
+ "Ol\u2019",
1034
+ "Online",
1035
+ "Open",
1036
+ "OpenFlow",
1037
+ "OpenStack",
1038
+ "Operating",
1039
+ "Operational",
1040
+ "Operations",
1041
+ "Ops",
1042
+ "Optical",
1043
+ "Optics",
1044
+ "Oracle",
1045
+ "Ore",
1046
+ "Ore.",
1047
+ "Oregon",
1048
+ "Organization",
1049
+ "Organizational",
1050
+ "Organizations",
1051
+ "Other",
1052
+ "Ought",
1053
+ "Our",
1054
+ "Outstanding",
1055
+ "Owner",
1056
+ "O\u2019clock",
1057
+ "P",
1058
+ "PCB",
1059
+ "PCI",
1060
+ "PCIe",
1061
+ "PCM",
1062
+ "PERL",
1063
+ "PGA",
1064
+ "PHP",
1065
+ "PII",
1066
+ "PIs",
1067
+ "PLM",
1068
+ "PMI",
1069
+ "PMP",
1070
+ "PMS",
1071
+ "PREFERRED",
1072
+ "PSU",
1073
+ "PUs",
1074
+ "Pa",
1075
+ "Pa.",
1076
+ "PaaS",
1077
+ "Partners",
1078
+ "Passion",
1079
+ "Passionate",
1080
+ "Pennsylvania",
1081
+ "People",
1082
+ "Perform",
1083
+ "Performance",
1084
+ "Perl",
1085
+ "Ph",
1086
+ "Ph.D.",
1087
+ "PhD",
1088
+ "Photonics",
1089
+ "Physical",
1090
+ "Physics",
1091
+ "Pig",
1092
+ "Planning",
1093
+ "Platform",
1094
+ "Platforms",
1095
+ "Power",
1096
+ "PowerApps",
1097
+ "PowerShell",
1098
+ "Practice",
1099
+ "Practices",
1100
+ "Preferred",
1101
+ "Presentation",
1102
+ "Previous",
1103
+ "Prior",
1104
+ "Private",
1105
+ "Problem",
1106
+ "Processing",
1107
+ "Product",
1108
+ "Production",
1109
+ "Prof",
1110
+ "Prof.",
1111
+ "Professional",
1112
+ "Proficiency",
1113
+ "Program",
1114
+ "Programing",
1115
+ "Programming",
1116
+ "Project",
1117
+ "Proof",
1118
+ "Proven",
1119
+ "ProvenExperience",
1120
+ "Providers",
1121
+ "Public",
1122
+ "Publication",
1123
+ "Puppet",
1124
+ "Pursuing",
1125
+ "Pv4",
1126
+ "Pv6",
1127
+ "PySpark",
1128
+ "Python",
1129
+ "Q",
1130
+ "QUALIFICATIONS",
1131
+ "Quantitative",
1132
+ "R",
1133
+ "RAM",
1134
+ "RDBMS",
1135
+ "RED",
1136
+ "REO",
1137
+ "REST",
1138
+ "RESTful",
1139
+ "RF",
1140
+ "RISC",
1141
+ "RM",
1142
+ "RNIF",
1143
+ "RSS",
1144
+ "RUM",
1145
+ "Rack",
1146
+ "Rackspace",
1147
+ "Rails",
1148
+ "Rational",
1149
+ "Re",
1150
+ "ReRAM",
1151
+ "React",
1152
+ "ReactJS",
1153
+ "ReactNative",
1154
+ "Reactors",
1155
+ "Recipes",
1156
+ "Reconstruction",
1157
+ "Record",
1158
+ "Records",
1159
+ "Red",
1160
+ "Redis",
1161
+ "Redmond",
1162
+ "Reference",
1163
+ "Relational",
1164
+ "Relic",
1165
+ "Rep",
1166
+ "Rep.",
1167
+ "Required",
1168
+ "Requirements",
1169
+ "Rev",
1170
+ "Rev.",
1171
+ "Robotics",
1172
+ "Ruby",
1173
+ "S",
1174
+ "S.C.",
1175
+ "SAFE",
1176
+ "SAFe",
1177
+ "SAN",
1178
+ "SANs",
1179
+ "SAP",
1180
+ "SAS",
1181
+ "SATA",
1182
+ "SCI",
1183
+ "SCRUM",
1184
+ "SDN",
1185
+ "SEE",
1186
+ "SEO",
1187
+ "SIC",
1188
+ "SIGGRAPH",
1189
+ "SIS",
1190
+ "SKILLS",
1191
+ "SLA",
1192
+ "SLAM",
1193
+ "SLT",
1194
+ "SOA",
1195
+ "SON",
1196
+ "SOX",
1197
+ "SPC",
1198
+ "SPF",
1199
+ "SPI",
1200
+ "SQL",
1201
+ "SR",
1202
+ "STEM",
1203
+ "SUSE",
1204
+ "SW",
1205
+ "SWE",
1206
+ "SWIFT",
1207
+ "Sales",
1208
+ "SalesForce",
1209
+ "Saltstack",
1210
+ "Scala",
1211
+ "School",
1212
+ "Science",
1213
+ "Screen",
1214
+ "Scripting",
1215
+ "Scripts",
1216
+ "Scrum",
1217
+ "Search",
1218
+ "Sec",
1219
+ "Secure",
1220
+ "Security",
1221
+ "Sees",
1222
+ "Sen",
1223
+ "Sen.",
1224
+ "Senior",
1225
+ "Sensor",
1226
+ "Sep",
1227
+ "Sep.",
1228
+ "Sept",
1229
+ "Sept.",
1230
+ "September",
1231
+ "SerDes",
1232
+ "Server",
1233
+ "Servers",
1234
+ "Service",
1235
+ "ServiceNow",
1236
+ "Services",
1237
+ "Sha",
1238
+ "She",
1239
+ "She's",
1240
+ "Shell",
1241
+ "She\u2019s",
1242
+ "Shift",
1243
+ "Should",
1244
+ "Sigma",
1245
+ "Signal",
1246
+ "Silicon",
1247
+ "Site",
1248
+ "Six",
1249
+ "Sizing",
1250
+ "Skills",
1251
+ "Smart",
1252
+ "SoC",
1253
+ "Softlayer",
1254
+ "Software",
1255
+ "Solid",
1256
+ "Solutions",
1257
+ "Someone",
1258
+ "Somethin",
1259
+ "Somethin'",
1260
+ "Somethin\u2019",
1261
+ "Sound",
1262
+ "Source",
1263
+ "South Carolina",
1264
+ "Spanish",
1265
+ "Spark",
1266
+ "Speaking",
1267
+ "Squid",
1268
+ "St",
1269
+ "St.",
1270
+ "Standards",
1271
+ "Startup",
1272
+ "State",
1273
+ "Statement",
1274
+ "Statistical",
1275
+ "Storage",
1276
+ "Store",
1277
+ "Strategic",
1278
+ "Strong",
1279
+ "Struts",
1280
+ "Studio",
1281
+ "Successful",
1282
+ "Suite",
1283
+ "Supply",
1284
+ "Swedish",
1285
+ "Swift",
1286
+ "Switch",
1287
+ "Sybase",
1288
+ "Systematic",
1289
+ "Systems",
1290
+ "T",
1291
+ "TCP",
1292
+ "TCS",
1293
+ "TDD",
1294
+ "TEM",
1295
+ "TFS",
1296
+ "TFTP",
1297
+ "TIA",
1298
+ "TIL",
1299
+ "TLS",
1300
+ "TML",
1301
+ "TOR",
1302
+ "TPUs",
1303
+ "TS",
1304
+ "TTP",
1305
+ "Tables",
1306
+ "Team",
1307
+ "Tech",
1308
+ "Technical",
1309
+ "Technologies",
1310
+ "Technology",
1311
+ "Telecommunications",
1312
+ "Tenn",
1313
+ "Tenn.",
1314
+ "Tennessee",
1315
+ "TestStand",
1316
+ "That",
1317
+ "That's",
1318
+ "That\u2019s",
1319
+ "The",
1320
+ "There",
1321
+ "There's",
1322
+ "There\u2019s",
1323
+ "These",
1324
+ "They",
1325
+ "This",
1326
+ "This's",
1327
+ "This\u2019s",
1328
+ "Thorough",
1329
+ "Those",
1330
+ "Tools",
1331
+ "Track",
1332
+ "Travel",
1333
+ "Trello",
1334
+ "Troubleshooting",
1335
+ "U",
1336
+ "U.S.",
1337
+ "UART",
1338
+ "UDP",
1339
+ "UI",
1340
+ "UNIX",
1341
+ "UPS",
1342
+ "US",
1343
+ "USB",
1344
+ "USD",
1345
+ "USE",
1346
+ "UX",
1347
+ "Undergraduate",
1348
+ "Understanding",
1349
+ "Unified",
1350
+ "Unix",
1351
+ "Unwavering",
1352
+ "UrbanCode",
1353
+ "V",
1354
+ "V.V",
1355
+ "VLSI",
1356
+ "VMe",
1357
+ "VMware",
1358
+ "VP",
1359
+ "VPP",
1360
+ "VPR",
1361
+ "VR",
1362
+ "V_V",
1363
+ "Va",
1364
+ "Va.",
1365
+ "Valid",
1366
+ "Validated",
1367
+ "Values",
1368
+ "Verification",
1369
+ "Verilog",
1370
+ "Very",
1371
+ "Virginia",
1372
+ "Virtual",
1373
+ "Virtualization",
1374
+ "Virtustream",
1375
+ "Visual",
1376
+ "VmWare",
1377
+ "W",
1378
+ "WWW",
1379
+ "Was",
1380
+ "Wash",
1381
+ "Wash.",
1382
+ "Washington",
1383
+ "We",
1384
+ "Web",
1385
+ "WebServices",
1386
+ "Weblogic",
1387
+ "Websphere",
1388
+ "Were",
1389
+ "What",
1390
+ "What's",
1391
+ "What\u2019s",
1392
+ "When",
1393
+ "When's",
1394
+ "When\u2019s",
1395
+ "Where",
1396
+ "Where's",
1397
+ "Where\u2019s",
1398
+ "Who",
1399
+ "Who's",
1400
+ "Who\u2019s",
1401
+ "Why",
1402
+ "Why's",
1403
+ "Why\u2019s",
1404
+ "Windows",
1405
+ "Wipro",
1406
+ "Wis",
1407
+ "Wis.",
1408
+ "Wisconsin",
1409
+ "Wo",
1410
+ "Working",
1411
+ "Would",
1412
+ "X'x",
1413
+ "X'xxxx",
1414
+ "X++",
1415
+ "X++/X#/Xxxx",
1416
+ "X++/Xxxx",
1417
+ "X++dd",
1418
+ "X.",
1419
+ "X.X",
1420
+ "X.X.",
1421
+ "X.x",
1422
+ "X.x.",
1423
+ "XD",
1424
+ "XDD",
1425
+ "XML",
1426
+ "XSLT",
1427
+ "XX",
1428
+ "XXX",
1429
+ "XXXX",
1430
+ "XXXX_XXXX",
1431
+ "XXXXdd",
1432
+ "XXXXx",
1433
+ "XXXXxxx",
1434
+ "XXXx",
1435
+ "XXXxx",
1436
+ "XXd",
1437
+ "XXx",
1438
+ "XXxd",
1439
+ "XXxxx",
1440
+ "XXxxxx",
1441
+ "X_X",
1442
+ "X_x",
1443
+ "Xd",
1444
+ "XdX",
1445
+ "XdX.",
1446
+ "XdXX",
1447
+ "Xen",
1448
+ "Xx",
1449
+ "Xx'",
1450
+ "Xx'x",
1451
+ "Xx'xx",
1452
+ "Xx.",
1453
+ "Xx.X.",
1454
+ "XxX",
1455
+ "XxXXX",
1456
+ "XxXxxx",
1457
+ "XxXxxxx",
1458
+ "Xxx",
1459
+ "Xxx'x",
1460
+ "Xxx.",
1461
+ "XxxX",
1462
+ "XxxXX",
1463
+ "XxxXXXX",
1464
+ "XxxXxx",
1465
+ "XxxXxxxx",
1466
+ "Xxxx",
1467
+ "Xxxx'",
1468
+ "Xxxx'x",
1469
+ "Xxxx.",
1470
+ "Xxxx.xx",
1471
+ "XxxxXXX",
1472
+ "XxxxXxxx",
1473
+ "XxxxXxxxx",
1474
+ "Xxxxx",
1475
+ "Xxxxx'",
1476
+ "Xxxxx'x",
1477
+ "Xxxxx.",
1478
+ "XxxxxXX",
1479
+ "XxxxxXxx",
1480
+ "XxxxxXxxx",
1481
+ "XxxxxXxxxx",
1482
+ "Xxxxx\u2019",
1483
+ "Xxxxx\u2019x",
1484
+ "Xxxx\u2019",
1485
+ "Xxxx\u2019x",
1486
+ "Xxx\u2019x",
1487
+ "Xx\u2019",
1488
+ "Xx\u2019x",
1489
+ "Xx\u2019xx",
1490
+ "X\u2019x",
1491
+ "X\u2019xxxx",
1492
+ "Y",
1493
+ "Years",
1494
+ "You",
1495
+ "Z",
1496
+ "Zoning",
1497
+ "Zuul",
1498
+ "[",
1499
+ "[-:",
1500
+ "[:",
1501
+ "[=",
1502
+ "\\",
1503
+ "\\\")",
1504
+ "\\n",
1505
+ "\\t",
1506
+ "\\x",
1507
+ "]",
1508
+ "]=",
1509
+ "^",
1510
+ "^_^",
1511
+ "^__^",
1512
+ "^___^",
1513
+ "_*)",
1514
+ "_-)",
1515
+ "_.)",
1516
+ "_<)",
1517
+ "_^)",
1518
+ "__-",
1519
+ "__^",
1520
+ "_\u00ac)",
1521
+ "_\u0ca0)",
1522
+ "a",
1523
+ "a.",
1524
+ "a.m",
1525
+ "a.m.",
1526
+ "aaS",
1527
+ "ability",
1528
+ "able",
1529
+ "about",
1530
+ "above",
1531
+ "ac",
1532
+ "academic",
1533
+ "accelerators",
1534
+ "acceptable",
1535
+ "access",
1536
+ "accommodated",
1537
+ "accounting",
1538
+ "accounts",
1539
+ "ace",
1540
+ "ach",
1541
+ "ack",
1542
+ "acknowledged",
1543
+ "acls",
1544
+ "acoustics",
1545
+ "across",
1546
+ "act",
1547
+ "action",
1548
+ "actionable",
1549
+ "active",
1550
+ "acumen",
1551
+ "adapt",
1552
+ "add",
1553
+ "added",
1554
+ "addition",
1555
+ "additional",
1556
+ "ade",
1557
+ "adjacent",
1558
+ "adjust",
1559
+ "adm",
1560
+ "adm.",
1561
+ "administration",
1562
+ "adoption",
1563
+ "ads",
1564
+ "advanced",
1565
+ "advancing",
1566
+ "advantage",
1567
+ "advertisement",
1568
+ "advocate",
1569
+ "advocating",
1570
+ "after",
1571
+ "against",
1572
+ "age",
1573
+ "agile",
1574
+ "agility",
1575
+ "ahu",
1576
+ "ai",
1577
+ "ail",
1578
+ "ain",
1579
+ "air",
1580
+ "ak",
1581
+ "ak.",
1582
+ "ake",
1583
+ "ala",
1584
+ "ala.",
1585
+ "ale",
1586
+ "algorithm",
1587
+ "algorithms",
1588
+ "all",
1589
+ "allowing",
1590
+ "alm",
1591
+ "als",
1592
+ "also",
1593
+ "alternative",
1594
+ "am",
1595
+ "amazing",
1596
+ "amazon",
1597
+ "ambient",
1598
+ "ambiguity",
1599
+ "ambiguous",
1600
+ "ams",
1601
+ "an",
1602
+ "an.",
1603
+ "ana",
1604
+ "analog",
1605
+ "analysis",
1606
+ "analytic",
1607
+ "analytical",
1608
+ "analytics",
1609
+ "analyze",
1610
+ "analyzers",
1611
+ "analyzing",
1612
+ "and",
1613
+ "and/or",
1614
+ "android",
1615
+ "angular",
1616
+ "angularjs",
1617
+ "ans",
1618
+ "ansi",
1619
+ "ansible",
1620
+ "ant",
1621
+ "any",
1622
+ "apache",
1623
+ "ape",
1624
+ "aph",
1625
+ "api",
1626
+ "apis",
1627
+ "apm",
1628
+ "app",
1629
+ "appconnect",
1630
+ "applicable",
1631
+ "applicants",
1632
+ "application",
1633
+ "applications",
1634
+ "applied",
1635
+ "applying",
1636
+ "appreciation",
1637
+ "approach",
1638
+ "appropriate",
1639
+ "appropriately",
1640
+ "apps",
1641
+ "apr",
1642
+ "apr.",
1643
+ "aps",
1644
+ "apt",
1645
+ "aptitude",
1646
+ "ar",
1647
+ "ar.",
1648
+ "architect",
1649
+ "architecting",
1650
+ "architectural",
1651
+ "architecture",
1652
+ "architectures",
1653
+ "ard",
1654
+ "are",
1655
+ "area",
1656
+ "areas",
1657
+ "ariz",
1658
+ "ariz.",
1659
+ "ark",
1660
+ "ark.",
1661
+ "arm",
1662
+ "arn",
1663
+ "ars",
1664
+ "art",
1665
+ "articulate",
1666
+ "articulating",
1667
+ "artificial",
1668
+ "ary",
1669
+ "as",
1670
+ "as2",
1671
+ "ase",
1672
+ "ash",
1673
+ "asia",
1674
+ "asic",
1675
+ "asics",
1676
+ "ass",
1677
+ "assemblers",
1678
+ "assembly",
1679
+ "asset",
1680
+ "ast",
1681
+ "asynchronous",
1682
+ "at",
1683
+ "ata",
1684
+ "ate",
1685
+ "ath",
1686
+ "attention",
1687
+ "attitude",
1688
+ "attributes",
1689
+ "audiences",
1690
+ "audio",
1691
+ "auditing",
1692
+ "aug",
1693
+ "aug.",
1694
+ "augmented",
1695
+ "authentication",
1696
+ "authorization",
1697
+ "automated",
1698
+ "automatic",
1699
+ "automation",
1700
+ "autopilot",
1701
+ "ava",
1702
+ "availability",
1703
+ "available",
1704
+ "avanade",
1705
+ "ave",
1706
+ "avy",
1707
+ "awareness",
1708
+ "aws",
1709
+ "ays",
1710
+ "azure",
1711
+ "b",
1712
+ "b.",
1713
+ "b.s.",
1714
+ "b2b",
1715
+ "ba",
1716
+ "bachelor",
1717
+ "bachelors",
1718
+ "backend",
1719
+ "background",
1720
+ "backlog",
1721
+ "backup",
1722
+ "bal",
1723
+ "balanced",
1724
+ "balancers",
1725
+ "balancing",
1726
+ "ban",
1727
+ "bas",
1728
+ "based",
1729
+ "bases",
1730
+ "bash",
1731
+ "basic",
1732
+ "basis",
1733
+ "battery",
1734
+ "bazel",
1735
+ "bcdr",
1736
+ "bcm",
1737
+ "be",
1738
+ "because",
1739
+ "being",
1740
+ "below",
1741
+ "ber",
1742
+ "best",
1743
+ "better",
1744
+ "between",
1745
+ "bgp",
1746
+ "bi",
1747
+ "big",
1748
+ "bilingual",
1749
+ "ble",
1750
+ "blocks",
1751
+ "blogging",
1752
+ "blueprints",
1753
+ "bly",
1754
+ "bms",
1755
+ "board",
1756
+ "bom",
1757
+ "book",
1758
+ "boot",
1759
+ "both",
1760
+ "bottom",
1761
+ "boundaries",
1762
+ "bout",
1763
+ "br.",
1764
+ "branch",
1765
+ "brand",
1766
+ "breadth",
1767
+ "bring",
1768
+ "bringing",
1769
+ "bringup",
1770
+ "broad",
1771
+ "bros",
1772
+ "bros.",
1773
+ "browser",
1774
+ "bs",
1775
+ "bsee",
1776
+ "budgeting",
1777
+ "budgets",
1778
+ "bug",
1779
+ "build",
1780
+ "building",
1781
+ "buses",
1782
+ "business",
1783
+ "but",
1784
+ "by",
1785
+ "c",
1786
+ "c'm",
1787
+ "c++",
1788
+ "c++/c#/java",
1789
+ "c++/java",
1790
+ "c++11",
1791
+ "c.",
1792
+ "ca",
1793
+ "cables",
1794
+ "cabling",
1795
+ "cal",
1796
+ "calibration",
1797
+ "calif",
1798
+ "calif.",
1799
+ "camera",
1800
+ "campaign",
1801
+ "can",
1802
+ "candidate",
1803
+ "candidates",
1804
+ "capabilities",
1805
+ "capability",
1806
+ "capacity",
1807
+ "capture",
1808
+ "captures",
1809
+ "career",
1810
+ "careful",
1811
+ "catalog",
1812
+ "category",
1813
+ "cause",
1814
+ "cd",
1815
+ "ce",
1816
+ "ce>",
1817
+ "ced",
1818
+ "center",
1819
+ "centric",
1820
+ "certification",
1821
+ "certification(s",
1822
+ "certifications",
1823
+ "certified",
1824
+ "ces",
1825
+ "cfe",
1826
+ "ch.",
1827
+ "chain",
1828
+ "challenges",
1829
+ "challenging",
1830
+ "chambers",
1831
+ "change",
1832
+ "changing",
1833
+ "characterization",
1834
+ "characterize",
1835
+ "chassis",
1836
+ "che",
1837
+ "check",
1838
+ "chef",
1839
+ "ci",
1840
+ "cicd",
1841
+ "ciodem19",
1842
+ "circuit",
1843
+ "circuits",
1844
+ "cisco",
1845
+ "citizenship",
1846
+ "cks",
1847
+ "class",
1848
+ "cle",
1849
+ "clear",
1850
+ "clearance",
1851
+ "client",
1852
+ "closely",
1853
+ "cloud",
1854
+ "cluster",
1855
+ "clusters",
1856
+ "cm",
1857
+ "co",
1858
+ "co.",
1859
+ "code",
1860
+ "coding",
1861
+ "coherence",
1862
+ "col",
1863
+ "collaborate",
1864
+ "collaboration",
1865
+ "collaborative",
1866
+ "collaboratively",
1867
+ "collaborator",
1868
+ "collection",
1869
+ "college",
1870
+ "colo",
1871
+ "colo.",
1872
+ "color",
1873
+ "combination",
1874
+ "come",
1875
+ "comfort",
1876
+ "comfortable",
1877
+ "commercial",
1878
+ "commercialization",
1879
+ "committed",
1880
+ "common",
1881
+ "communicate",
1882
+ "communicating",
1883
+ "communication",
1884
+ "communications",
1885
+ "communicator",
1886
+ "communities",
1887
+ "company",
1888
+ "compare",
1889
+ "competencies",
1890
+ "competency",
1891
+ "competition",
1892
+ "competitive",
1893
+ "compiler",
1894
+ "complete",
1895
+ "completion",
1896
+ "complex",
1897
+ "complexity",
1898
+ "compliance",
1899
+ "component",
1900
+ "components",
1901
+ "comptia",
1902
+ "compute",
1903
+ "computer",
1904
+ "computing",
1905
+ "con",
1906
+ "conception",
1907
+ "concepts",
1908
+ "conceptual",
1909
+ "conceptualize",
1910
+ "conceptualizing",
1911
+ "concise",
1912
+ "concurrency",
1913
+ "conditions",
1914
+ "conduct",
1915
+ "conference",
1916
+ "conferences",
1917
+ "confident",
1918
+ "configuration",
1919
+ "configurations",
1920
+ "conflicts",
1921
+ "conn",
1922
+ "conn.",
1923
+ "connect",
1924
+ "connectivity",
1925
+ "connector",
1926
+ "consensus",
1927
+ "considerable",
1928
+ "consideration",
1929
+ "considered",
1930
+ "consignment",
1931
+ "consistency",
1932
+ "consistent",
1933
+ "consistently",
1934
+ "constrained",
1935
+ "consultative",
1936
+ "consulting",
1937
+ "consumer",
1938
+ "container",
1939
+ "containerization",
1940
+ "containers",
1941
+ "context",
1942
+ "continuous",
1943
+ "contracts",
1944
+ "contribute",
1945
+ "contributions",
1946
+ "control",
1947
+ "controlled",
1948
+ "controller",
1949
+ "controls",
1950
+ "conversations",
1951
+ "conversion",
1952
+ "convey",
1953
+ "cookbooks",
1954
+ "cooling",
1955
+ "coordinating",
1956
+ "coordination",
1957
+ "cordova",
1958
+ "core",
1959
+ "corp",
1960
+ "corp.",
1961
+ "correct",
1962
+ "cos",
1963
+ "cosmosdb",
1964
+ "cost",
1965
+ "costs",
1966
+ "could",
1967
+ "country",
1968
+ "coz",
1969
+ "cpk",
1970
+ "cpu",
1971
+ "create",
1972
+ "creating",
1973
+ "creative",
1974
+ "creativity",
1975
+ "credibility",
1976
+ "credit",
1977
+ "creo",
1978
+ "critical",
1979
+ "crm",
1980
+ "cro",
1981
+ "cross",
1982
+ "cryptography",
1983
+ "cs",
1984
+ "csc",
1985
+ "cseo",
1986
+ "csi",
1987
+ "css",
1988
+ "ct.",
1989
+ "cts",
1990
+ "cultural",
1991
+ "culture",
1992
+ "curiosity",
1993
+ "current",
1994
+ "currently",
1995
+ "cus",
1996
+ "customer",
1997
+ "customers",
1998
+ "customization",
1999
+ "cutting",
2000
+ "cuz",
2001
+ "cvi",
2002
+ "cvpr",
2003
+ "cycle",
2004
+ "c\u2019m",
2005
+ "d",
2006
+ "d)",
2007
+ "d+xxxx",
2008
+ "d-",
2009
+ "d-)",
2010
+ "d-X",
2011
+ "d.",
2012
+ "d.c.",
2013
+ "d.d",
2014
+ "d.x",
2015
+ "dX",
2016
+ "d_d",
2017
+ "d_x",
2018
+ "dac",
2019
+ "dare",
2020
+ "data",
2021
+ "database",
2022
+ "databases",
2023
+ "datacenter",
2024
+ "day",
2025
+ "db",
2026
+ "db2",
2027
+ "dbms",
2028
+ "dc",
2029
+ "dcs",
2030
+ "dd",
2031
+ "dd.d",
2032
+ "ddd",
2033
+ "ddd/ddd/ddd/ddd/ddd/ddd",
2034
+ "dddd",
2035
+ "dddd/dddd",
2036
+ "ddx.x",
2037
+ "ddx.x.",
2038
+ "ddxd",
2039
+ "deadlines",
2040
+ "deal",
2041
+ "dealing",
2042
+ "debug",
2043
+ "debugging",
2044
+ "dec",
2045
+ "dec.",
2046
+ "december",
2047
+ "decision",
2048
+ "decisions",
2049
+ "ded",
2050
+ "deep",
2051
+ "defined",
2052
+ "definite",
2053
+ "degree",
2054
+ "del",
2055
+ "del.",
2056
+ "delightful",
2057
+ "deliver",
2058
+ "delivering",
2059
+ "delivery",
2060
+ "dell",
2061
+ "demand",
2062
+ "demonstrable",
2063
+ "demonstrate",
2064
+ "demonstrated",
2065
+ "demonstrating",
2066
+ "demonstration",
2067
+ "deo",
2068
+ "depending",
2069
+ "deploying",
2070
+ "deployment",
2071
+ "deployments",
2072
+ "depth",
2073
+ "der",
2074
+ "des",
2075
+ "design",
2076
+ "designing",
2077
+ "designs",
2078
+ "desirable",
2079
+ "desire",
2080
+ "desired",
2081
+ "desk",
2082
+ "detail",
2083
+ "details",
2084
+ "detection",
2085
+ "dev",
2086
+ "develop",
2087
+ "developer",
2088
+ "developers",
2089
+ "developing",
2090
+ "development",
2091
+ "device",
2092
+ "devices",
2093
+ "devops",
2094
+ "devrelawesomejobs",
2095
+ "dge",
2096
+ "dhcp",
2097
+ "dia",
2098
+ "diagnose",
2099
+ "diagnostics",
2100
+ "dicom",
2101
+ "did",
2102
+ "differences",
2103
+ "different",
2104
+ "differing",
2105
+ "difficult",
2106
+ "digital",
2107
+ "dio",
2108
+ "diploma",
2109
+ "diploma_major",
2110
+ "direct",
2111
+ "directions",
2112
+ "directly",
2113
+ "directory",
2114
+ "dis",
2115
+ "disability",
2116
+ "discipline",
2117
+ "disciplined",
2118
+ "disciplines",
2119
+ "disclosures",
2120
+ "discrete",
2121
+ "disk",
2122
+ "display",
2123
+ "distortion",
2124
+ "distributed",
2125
+ "distribution",
2126
+ "dit",
2127
+ "diverse",
2128
+ "dle",
2129
+ "dly",
2130
+ "dm.",
2131
+ "dns",
2132
+ "do",
2133
+ "docker",
2134
+ "docs",
2135
+ "document",
2136
+ "documentation",
2137
+ "doe",
2138
+ "does",
2139
+ "doin",
2140
+ "doin'",
2141
+ "doing",
2142
+ "doin\u2019",
2143
+ "dojo",
2144
+ "domain",
2145
+ "domains",
2146
+ "dor",
2147
+ "dp",
2148
+ "dr",
2149
+ "dr.",
2150
+ "drive",
2151
+ "driven",
2152
+ "driver",
2153
+ "drivers",
2154
+ "drives",
2155
+ "driving",
2156
+ "dryad",
2157
+ "dth",
2158
+ "during",
2159
+ "dx",
2160
+ "dx.x",
2161
+ "dx.x.",
2162
+ "dxx",
2163
+ "dxxxx",
2164
+ "dynamic",
2165
+ "dynamics",
2166
+ "dynatrace",
2167
+ "e",
2168
+ "e's",
2169
+ "e.",
2170
+ "e.g",
2171
+ "e.g.",
2172
+ "eXtreme",
2173
+ "ead",
2174
+ "eal",
2175
+ "eam",
2176
+ "ear",
2177
+ "early",
2178
+ "eas",
2179
+ "eat",
2180
+ "eb.",
2181
+ "ebics",
2182
+ "ebr",
2183
+ "ec.",
2184
+ "eccv",
2185
+ "ech",
2186
+ "eck",
2187
+ "eco",
2188
+ "economics",
2189
+ "ect",
2190
+ "eda",
2191
+ "edge",
2192
+ "eds",
2193
+ "education",
2194
+ "ee",
2195
+ "eed",
2196
+ "een",
2197
+ "eep",
2198
+ "eer",
2199
+ "ees",
2200
+ "eet",
2201
+ "effective",
2202
+ "effectively",
2203
+ "effectiveness",
2204
+ "efficiency",
2205
+ "efficient",
2206
+ "efficiently",
2207
+ "ege",
2208
+ "egy",
2209
+ "eir",
2210
+ "el.",
2211
+ "elastic",
2212
+ "eld",
2213
+ "electrical",
2214
+ "electronic",
2215
+ "electronics",
2216
+ "elements",
2217
+ "elf",
2218
+ "ell",
2219
+ "elopment",
2220
+ "elp",
2221
+ "els",
2222
+ "ely",
2223
+ "em",
2224
+ "ema",
2225
+ "embedded",
2226
+ "eme",
2227
+ "emerging",
2228
+ "empathy",
2229
+ "emphasis",
2230
+ "employees",
2231
+ "employer",
2232
+ "employment",
2233
+ "ems",
2234
+ "en",
2235
+ "en.",
2236
+ "enabling",
2237
+ "encapsulation",
2238
+ "enclosures",
2239
+ "encourage",
2240
+ "end",
2241
+ "engagement",
2242
+ "engagements",
2243
+ "engaging",
2244
+ "engineer",
2245
+ "engineering",
2246
+ "engineers",
2247
+ "english",
2248
+ "enjoys",
2249
+ "enn",
2250
+ "enough",
2251
+ "enrolled",
2252
+ "ens",
2253
+ "ensure",
2254
+ "ensuring",
2255
+ "ent",
2256
+ "entering",
2257
+ "enterprise",
2258
+ "entire",
2259
+ "entities",
2260
+ "entrepreneurial",
2261
+ "enviornments",
2262
+ "environment",
2263
+ "environmental",
2264
+ "environments",
2265
+ "eo",
2266
+ "ep.",
2267
+ "epms",
2268
+ "ept",
2269
+ "equal",
2270
+ "equipment",
2271
+ "equivalent",
2272
+ "era",
2273
+ "ere",
2274
+ "erl",
2275
+ "erm",
2276
+ "ern",
2277
+ "erp",
2278
+ "ers",
2279
+ "ert",
2280
+ "ery",
2281
+ "ese",
2282
+ "esk",
2283
+ "especially",
2284
+ "ess",
2285
+ "essential",
2286
+ "est",
2287
+ "establishing",
2288
+ "estimation",
2289
+ "etc",
2290
+ "ete",
2291
+ "ethernet",
2292
+ "ets",
2293
+ "ety",
2294
+ "eusejobs",
2295
+ "ev",
2296
+ "ev.",
2297
+ "evangelist",
2298
+ "even",
2299
+ "event",
2300
+ "events",
2301
+ "eventual",
2302
+ "every",
2303
+ "evidenced",
2304
+ "evolving",
2305
+ "ews",
2306
+ "ex",
2307
+ "example",
2308
+ "exceeding",
2309
+ "excellence",
2310
+ "excellent",
2311
+ "exceptional",
2312
+ "execute",
2313
+ "executing",
2314
+ "execution",
2315
+ "executional",
2316
+ "executive",
2317
+ "executives",
2318
+ "expansion",
2319
+ "experience",
2320
+ "experienced",
2321
+ "experiences",
2322
+ "experiment",
2323
+ "experimentation",
2324
+ "experiments",
2325
+ "expert",
2326
+ "expertise",
2327
+ "exposure",
2328
+ "expression",
2329
+ "ext",
2330
+ "extending",
2331
+ "extensions",
2332
+ "extensive",
2333
+ "external",
2334
+ "externally",
2335
+ "extreme",
2336
+ "extremely",
2337
+ "e\u2019s",
2338
+ "f",
2339
+ "f.",
2340
+ "fabric",
2341
+ "facebook",
2342
+ "faceted",
2343
+ "facility",
2344
+ "facing",
2345
+ "failure",
2346
+ "fair",
2347
+ "familiar",
2348
+ "familiarity",
2349
+ "fantastic",
2350
+ "fast",
2351
+ "faulted",
2352
+ "feature",
2353
+ "featured",
2354
+ "features",
2355
+ "feb",
2356
+ "feb.",
2357
+ "federal",
2358
+ "fer",
2359
+ "ffs",
2360
+ "fiber",
2361
+ "fic",
2362
+ "field",
2363
+ "fields",
2364
+ "file",
2365
+ "finance",
2366
+ "financial",
2367
+ "find",
2368
+ "firewalls",
2369
+ "firmware",
2370
+ "five",
2371
+ "fka",
2372
+ "fla",
2373
+ "fla.",
2374
+ "flash",
2375
+ "flexibility",
2376
+ "flow",
2377
+ "flows",
2378
+ "fluen",
2379
+ "fluent",
2380
+ "focus",
2381
+ "focused",
2382
+ "follow",
2383
+ "following",
2384
+ "for",
2385
+ "forecasting",
2386
+ "forms",
2387
+ "forums",
2388
+ "fostering",
2389
+ "foundation",
2390
+ "fpc",
2391
+ "fpga",
2392
+ "fra",
2393
+ "frameworks",
2394
+ "freebsd",
2395
+ "frequent",
2396
+ "friendly",
2397
+ "from",
2398
+ "fte",
2399
+ "fts",
2400
+ "ful",
2401
+ "full",
2402
+ "fun",
2403
+ "function",
2404
+ "functional",
2405
+ "functionality",
2406
+ "functioning",
2407
+ "fundamental",
2408
+ "fundamentals",
2409
+ "fusion",
2410
+ "g",
2411
+ "g.",
2412
+ "ga",
2413
+ "ga.",
2414
+ "gal",
2415
+ "games",
2416
+ "gaming",
2417
+ "gates",
2418
+ "gathering",
2419
+ "gcp",
2420
+ "ged",
2421
+ "gen",
2422
+ "gen.",
2423
+ "gender",
2424
+ "general",
2425
+ "generation",
2426
+ "generator",
2427
+ "genetics",
2428
+ "ger",
2429
+ "ges",
2430
+ "get",
2431
+ "ght",
2432
+ "gic",
2433
+ "gin",
2434
+ "git",
2435
+ "github",
2436
+ "gle",
2437
+ "global",
2438
+ "gly",
2439
+ "gma",
2440
+ "gms",
2441
+ "gns",
2442
+ "go",
2443
+ "goin",
2444
+ "goin'",
2445
+ "going",
2446
+ "goin\u2019",
2447
+ "gon",
2448
+ "gonna",
2449
+ "good",
2450
+ "google",
2451
+ "got",
2452
+ "gov",
2453
+ "gov.",
2454
+ "government",
2455
+ "gpus",
2456
+ "graduate",
2457
+ "great",
2458
+ "grid",
2459
+ "grooming",
2460
+ "group",
2461
+ "groups",
2462
+ "grow",
2463
+ "growing",
2464
+ "gtm",
2465
+ "guidance",
2466
+ "gup",
2467
+ "h",
2468
+ "h.",
2469
+ "ha",
2470
+ "hack",
2471
+ "had",
2472
+ "hadoop",
2473
+ "hana",
2474
+ "handling",
2475
+ "hands",
2476
+ "happens",
2477
+ "hard",
2478
+ "hardening",
2479
+ "hardware",
2480
+ "has",
2481
+ "hat",
2482
+ "have",
2483
+ "havin",
2484
+ "havin'",
2485
+ "having",
2486
+ "havin\u2019",
2487
+ "hbase",
2488
+ "hdd",
2489
+ "hdmi",
2490
+ "he",
2491
+ "he's",
2492
+ "healthcare",
2493
+ "heat",
2494
+ "heavy",
2495
+ "hed",
2496
+ "hef",
2497
+ "heights",
2498
+ "held",
2499
+ "help",
2500
+ "helpful",
2501
+ "helping",
2502
+ "hen",
2503
+ "her",
2504
+ "hey",
2505
+ "he\u2019s",
2506
+ "hhvm",
2507
+ "high",
2508
+ "higher",
2509
+ "highly",
2510
+ "hin",
2511
+ "hip",
2512
+ "hire",
2513
+ "his",
2514
+ "hive",
2515
+ "hl7",
2516
+ "hly",
2517
+ "hms",
2518
+ "holidays",
2519
+ "holistically",
2520
+ "home",
2521
+ "hon",
2522
+ "hours",
2523
+ "house",
2524
+ "how",
2525
+ "how's",
2526
+ "how\u2019s",
2527
+ "hp",
2528
+ "html",
2529
+ "hts",
2530
+ "http",
2531
+ "hub",
2532
+ "hw",
2533
+ "hyperscale",
2534
+ "hypervisor",
2535
+ "i",
2536
+ "i.",
2537
+ "i.e",
2538
+ "i.e.",
2539
+ "i2c",
2540
+ "i2c.",
2541
+ "i2s",
2542
+ "iOS",
2543
+ "ia",
2544
+ "ia.",
2545
+ "iaas",
2546
+ "ial",
2547
+ "iar",
2548
+ "ibm",
2549
+ "icam",
2550
+ "iccp",
2551
+ "iccv",
2552
+ "ice",
2553
+ "ich",
2554
+ "ick",
2555
+ "icra",
2556
+ "ics",
2557
+ "id",
2558
+ "id.",
2559
+ "ide",
2560
+ "ideal",
2561
+ "ideally",
2562
+ "ideas",
2563
+ "identify",
2564
+ "identity",
2565
+ "identityjobs",
2566
+ "ied",
2567
+ "ier",
2568
+ "ies",
2569
+ "ieu",
2570
+ "iew",
2571
+ "if",
2572
+ "if.",
2573
+ "ife",
2574
+ "ift",
2575
+ "ify",
2576
+ "igh",
2577
+ "igmp",
2578
+ "ign",
2579
+ "ignite",
2580
+ "iis",
2581
+ "ike",
2582
+ "ild",
2583
+ "ile",
2584
+ "ill",
2585
+ "ill.",
2586
+ "ils",
2587
+ "image",
2588
+ "imaging",
2589
+ "ime",
2590
+ "immigration",
2591
+ "impact",
2592
+ "implement",
2593
+ "implementation",
2594
+ "implementing",
2595
+ "improvement",
2596
+ "improving",
2597
+ "in",
2598
+ "in'",
2599
+ "inancial",
2600
+ "inc",
2601
+ "inc.",
2602
+ "include",
2603
+ "including",
2604
+ "inclusion",
2605
+ "ind",
2606
+ "ind.",
2607
+ "independent",
2608
+ "independently",
2609
+ "indicators",
2610
+ "industry",
2611
+ "ine",
2612
+ "inertial",
2613
+ "inference",
2614
+ "influence",
2615
+ "influencers",
2616
+ "influencing",
2617
+ "information",
2618
+ "infosys",
2619
+ "infra",
2620
+ "infrastructure",
2621
+ "infrastructures",
2622
+ "ing",
2623
+ "inherent",
2624
+ "initiatives",
2625
+ "ink",
2626
+ "inn",
2627
+ "innovate",
2628
+ "innovation",
2629
+ "innovative",
2630
+ "ins",
2631
+ "inside",
2632
+ "insight",
2633
+ "insightful",
2634
+ "insights",
2635
+ "instruction",
2636
+ "instrumentation",
2637
+ "int",
2638
+ "integrated",
2639
+ "integration",
2640
+ "integrity",
2641
+ "intellectual",
2642
+ "intelligence",
2643
+ "intensive",
2644
+ "interact",
2645
+ "interaction",
2646
+ "interconnect",
2647
+ "interconnection",
2648
+ "interfaces",
2649
+ "interfacing",
2650
+ "internal",
2651
+ "internally",
2652
+ "internals",
2653
+ "internet",
2654
+ "internship",
2655
+ "interpersonal",
2656
+ "into",
2657
+ "introduction",
2658
+ "invention",
2659
+ "investigations",
2660
+ "involvement",
2661
+ "inx",
2662
+ "in\u2019",
2663
+ "io",
2664
+ "ion",
2665
+ "ior",
2666
+ "ios",
2667
+ "iot",
2668
+ "iov",
2669
+ "ip",
2670
+ "ipc",
2671
+ "ips",
2672
+ "ipsec",
2673
+ "ipt",
2674
+ "iptables",
2675
+ "ipv4",
2676
+ "ipv6",
2677
+ "ira",
2678
+ "ird",
2679
+ "ire",
2680
+ "is",
2681
+ "is.",
2682
+ "ise",
2683
+ "ish",
2684
+ "isk",
2685
+ "isolate",
2686
+ "iss",
2687
+ "issues",
2688
+ "ist",
2689
+ "it",
2690
+ "it's",
2691
+ "ite",
2692
+ "items",
2693
+ "iterative",
2694
+ "ith",
2695
+ "itil",
2696
+ "its",
2697
+ "ity",
2698
+ "it\u2019s",
2699
+ "ium",
2700
+ "ive",
2701
+ "iz.",
2702
+ "ize",
2703
+ "j",
2704
+ "j.",
2705
+ "j2ee",
2706
+ "jacks",
2707
+ "jan",
2708
+ "jan.",
2709
+ "january",
2710
+ "java",
2711
+ "javascript",
2712
+ "jdm",
2713
+ "jenkins",
2714
+ "jira",
2715
+ "jmp",
2716
+ "job",
2717
+ "join",
2718
+ "jor",
2719
+ "jquery",
2720
+ "jr",
2721
+ "jr.",
2722
+ "js",
2723
+ "json",
2724
+ "judgement",
2725
+ "judgment",
2726
+ "jul",
2727
+ "jul.",
2728
+ "jun",
2729
+ "jun.",
2730
+ "junit",
2731
+ "jurisdiction",
2732
+ "k",
2733
+ "k.",
2734
+ "kafka",
2735
+ "kaizen",
2736
+ "kan",
2737
+ "kan.",
2738
+ "kanban",
2739
+ "kans",
2740
+ "kans.",
2741
+ "ker",
2742
+ "kernel",
2743
+ "ket",
2744
+ "key",
2745
+ "kibana",
2746
+ "kla",
2747
+ "kly",
2748
+ "knowledge",
2749
+ "knows",
2750
+ "kshell",
2751
+ "kubernetes",
2752
+ "kup",
2753
+ "kvm",
2754
+ "ky",
2755
+ "ky.",
2756
+ "l",
2757
+ "l.",
2758
+ "l2",
2759
+ "l3",
2760
+ "l4",
2761
+ "la",
2762
+ "la.",
2763
+ "lab",
2764
+ "labview",
2765
+ "labwindows",
2766
+ "lan",
2767
+ "landscape",
2768
+ "language",
2769
+ "languages",
2770
+ "lar",
2771
+ "large",
2772
+ "larger",
2773
+ "latest",
2774
+ "latitude",
2775
+ "launching",
2776
+ "lay",
2777
+ "layout",
2778
+ "lcd",
2779
+ "lds",
2780
+ "lead",
2781
+ "leaders",
2782
+ "leadership",
2783
+ "leading",
2784
+ "learn",
2785
+ "learning",
2786
+ "least",
2787
+ "leave",
2788
+ "led",
2789
+ "legal",
2790
+ "lel",
2791
+ "lem",
2792
+ "lens",
2793
+ "ler",
2794
+ "les",
2795
+ "let",
2796
+ "let's",
2797
+ "let\u2019s",
2798
+ "level",
2799
+ "levels",
2800
+ "leverage",
2801
+ "leveraging",
2802
+ "lex",
2803
+ "lic",
2804
+ "license",
2805
+ "lid",
2806
+ "lieu",
2807
+ "lif",
2808
+ "life",
2809
+ "lifecycle",
2810
+ "lifting",
2811
+ "lifts",
2812
+ "like",
2813
+ "limited",
2814
+ "linux",
2815
+ "lio",
2816
+ "live",
2817
+ "ll",
2818
+ "ll.",
2819
+ "llo",
2820
+ "lls",
2821
+ "lly",
2822
+ "lo.",
2823
+ "load",
2824
+ "local",
2825
+ "localization",
2826
+ "located",
2827
+ "location",
2828
+ "log",
2829
+ "logistics",
2830
+ "logs",
2831
+ "lop",
2832
+ "lor",
2833
+ "lot",
2834
+ "love",
2835
+ "lovin",
2836
+ "lovin'",
2837
+ "loving",
2838
+ "lovin\u2019",
2839
+ "low",
2840
+ "lso",
2841
+ "ltd",
2842
+ "ltd.",
2843
+ "lti",
2844
+ "lts",
2845
+ "lue",
2846
+ "lus",
2847
+ "lve",
2848
+ "m",
2849
+ "m.",
2850
+ "m.s.",
2851
+ "ma'am",
2852
+ "mac",
2853
+ "machine",
2854
+ "madam",
2855
+ "maintain",
2856
+ "maintainable",
2857
+ "maintaining",
2858
+ "major",
2859
+ "make",
2860
+ "makers",
2861
+ "making",
2862
+ "mal",
2863
+ "manage",
2864
+ "management",
2865
+ "manager",
2866
+ "managing",
2867
+ "manner",
2868
+ "manufacturing",
2869
+ "many",
2870
+ "map",
2871
+ "mapping",
2872
+ "mar",
2873
+ "mar.",
2874
+ "market",
2875
+ "marketing",
2876
+ "mass",
2877
+ "mass.",
2878
+ "massive",
2879
+ "master",
2880
+ "masters",
2881
+ "material",
2882
+ "materials",
2883
+ "math",
2884
+ "mathematics",
2885
+ "matlab",
2886
+ "matrix",
2887
+ "maturity",
2888
+ "maxdb",
2889
+ "may",
2890
+ "ma\u2019am",
2891
+ "mba",
2892
+ "md",
2893
+ "md.",
2894
+ "mdio",
2895
+ "meaningful",
2896
+ "measurable",
2897
+ "measurement",
2898
+ "measurements",
2899
+ "measuring",
2900
+ "mechanical",
2901
+ "mechanisms",
2902
+ "media",
2903
+ "medical",
2904
+ "medium",
2905
+ "meet",
2906
+ "meeting",
2907
+ "member",
2908
+ "memcached",
2909
+ "memories",
2910
+ "memory",
2911
+ "men",
2912
+ "mentoring",
2913
+ "mer",
2914
+ "merchant",
2915
+ "mes",
2916
+ "messrs",
2917
+ "messrs.",
2918
+ "meters",
2919
+ "methodically",
2920
+ "methodologies",
2921
+ "methodology",
2922
+ "methods",
2923
+ "metrics",
2924
+ "mic",
2925
+ "mich",
2926
+ "mich.",
2927
+ "micro",
2928
+ "microarchitecture",
2929
+ "microelectronic",
2930
+ "microservices",
2931
+ "microsoft",
2932
+ "microsofts",
2933
+ "middle",
2934
+ "middleware",
2935
+ "might",
2936
+ "migrating",
2937
+ "migration",
2938
+ "min",
2939
+ "mind",
2940
+ "minimal",
2941
+ "minimum",
2942
+ "mining",
2943
+ "minn",
2944
+ "minn.",
2945
+ "mipi",
2946
+ "miss",
2947
+ "miss.",
2948
+ "mission",
2949
+ "mix",
2950
+ "mixed",
2951
+ "ml",
2952
+ "mo",
2953
+ "mo.",
2954
+ "mobile",
2955
+ "mode",
2956
+ "model",
2957
+ "modeling",
2958
+ "models",
2959
+ "modern",
2960
+ "modes",
2961
+ "module",
2962
+ "mof",
2963
+ "mon",
2964
+ "monitoring",
2965
+ "mont",
2966
+ "mont.",
2967
+ "morale",
2968
+ "more",
2969
+ "most",
2970
+ "motivated",
2971
+ "motivating",
2972
+ "motivation",
2973
+ "movement",
2974
+ "moving",
2975
+ "mq",
2976
+ "mr",
2977
+ "mr.",
2978
+ "mram",
2979
+ "mrs",
2980
+ "mrs.",
2981
+ "ms",
2982
+ "ms.",
2983
+ "msc",
2984
+ "mt",
2985
+ "mt.",
2986
+ "mtp",
2987
+ "multi",
2988
+ "multifactorial",
2989
+ "multimedia",
2990
+ "multiple",
2991
+ "multithreading",
2992
+ "mum",
2993
+ "must",
2994
+ "mysql",
2995
+ "n",
2996
+ "n's",
2997
+ "n't",
2998
+ "n(s",
2999
+ "n.",
3000
+ "n.c.",
3001
+ "n.d.",
3002
+ "n.h.",
3003
+ "n.j.",
3004
+ "n.m.",
3005
+ "n.y.",
3006
+ "na",
3007
+ "nal",
3008
+ "nascent",
3009
+ "national",
3010
+ "native",
3011
+ "natural",
3012
+ "nc.",
3013
+ "nce",
3014
+ "nch",
3015
+ "ncy",
3016
+ "nd.",
3017
+ "nds",
3018
+ "neb",
3019
+ "neb.",
3020
+ "nebr",
3021
+ "nebr.",
3022
+ "necessary",
3023
+ "necessity",
3024
+ "ned",
3025
+ "need",
3026
+ "needed",
3027
+ "needs",
3028
+ "negotiate",
3029
+ "negotiating",
3030
+ "negotiation",
3031
+ "nel",
3032
+ "ner",
3033
+ "nes",
3034
+ "net",
3035
+ "netcool",
3036
+ "netweaver",
3037
+ "network",
3038
+ "networking",
3039
+ "networks",
3040
+ "nev",
3041
+ "nev.",
3042
+ "new",
3043
+ "newer",
3044
+ "next",
3045
+ "nfv",
3046
+ "ng/",
3047
+ "nge",
3048
+ "nginx",
3049
+ "ngs",
3050
+ "nic",
3051
+ "nit",
3052
+ "nix",
3053
+ "nn.",
3054
+ "no",
3055
+ "noSQL",
3056
+ "node",
3057
+ "node.js",
3058
+ "nominal",
3059
+ "non",
3060
+ "none",
3061
+ "nosql",
3062
+ "not",
3063
+ "nothin",
3064
+ "nothin'",
3065
+ "nothing",
3066
+ "nothin\u2019",
3067
+ "nov",
3068
+ "nov.",
3069
+ "novel",
3070
+ "npi",
3071
+ "ns.",
3072
+ "nse",
3073
+ "nst",
3074
+ "nt",
3075
+ "nt.",
3076
+ "nto",
3077
+ "nts",
3078
+ "nty",
3079
+ "nuff",
3080
+ "nurturing",
3081
+ "nuthin",
3082
+ "nuthin'",
3083
+ "nuthin\u2019",
3084
+ "nux",
3085
+ "nvme",
3086
+ "n\u2019s",
3087
+ "n\u2019t",
3088
+ "o",
3089
+ "o'clock",
3090
+ "o's",
3091
+ "o.",
3092
+ "o.0",
3093
+ "o.O",
3094
+ "o.o",
3095
+ "o_0",
3096
+ "o_O",
3097
+ "o_o",
3098
+ "oad",
3099
+ "object",
3100
+ "objective",
3101
+ "objectives",
3102
+ "obs",
3103
+ "obtain",
3104
+ "ock",
3105
+ "ocs",
3106
+ "oct",
3107
+ "oct.",
3108
+ "ode",
3109
+ "odm",
3110
+ "ods",
3111
+ "oem",
3112
+ "oes",
3113
+ "of",
3114
+ "of.",
3115
+ "office",
3116
+ "offs",
3117
+ "oft",
3118
+ "ogs",
3119
+ "ogy",
3120
+ "oid",
3121
+ "oin",
3122
+ "ojo",
3123
+ "okla",
3124
+ "okla.",
3125
+ "oks",
3126
+ "ol",
3127
+ "ol'",
3128
+ "ola",
3129
+ "old",
3130
+ "ole",
3131
+ "oled",
3132
+ "olo",
3133
+ "ols",
3134
+ "ol\u2019",
3135
+ "oma",
3136
+ "ome",
3137
+ "on",
3138
+ "ond",
3139
+ "one",
3140
+ "ong",
3141
+ "ongoing",
3142
+ "online",
3143
+ "onn",
3144
+ "ons",
3145
+ "ont",
3146
+ "ood",
3147
+ "oof",
3148
+ "ook",
3149
+ "ool",
3150
+ "oop",
3151
+ "oot",
3152
+ "op",
3153
+ "open",
3154
+ "openflow",
3155
+ "openstack",
3156
+ "operates",
3157
+ "operating",
3158
+ "operation",
3159
+ "operational",
3160
+ "operations",
3161
+ "opinions",
3162
+ "opportunity",
3163
+ "ops",
3164
+ "optic",
3165
+ "optical",
3166
+ "optics",
3167
+ "optimization",
3168
+ "optimize",
3169
+ "optimizing",
3170
+ "or",
3171
+ "oracle",
3172
+ "oral",
3173
+ "orchestration",
3174
+ "ord",
3175
+ "ore",
3176
+ "ore.",
3177
+ "organization",
3178
+ "organizational",
3179
+ "organizations",
3180
+ "organize",
3181
+ "orientation",
3182
+ "oriented",
3183
+ "origin",
3184
+ "ork",
3185
+ "orm",
3186
+ "orp",
3187
+ "ors",
3188
+ "ort",
3189
+ "ory",
3190
+ "os",
3191
+ "os.",
3192
+ "oscilloscopes",
3193
+ "ose",
3194
+ "osi",
3195
+ "ospf",
3196
+ "oss",
3197
+ "ost",
3198
+ "oth",
3199
+ "other",
3200
+ "others",
3201
+ "oud",
3202
+ "ought",
3203
+ "oup",
3204
+ "our",
3205
+ "ous",
3206
+ "out",
3207
+ "outlook",
3208
+ "outside",
3209
+ "outstanding",
3210
+ "ov.",
3211
+ "ova",
3212
+ "ove",
3213
+ "over",
3214
+ "overall",
3215
+ "overseas",
3216
+ "oversight",
3217
+ "owner",
3218
+ "owning",
3219
+ "ows",
3220
+ "oys",
3221
+ "o\u2019clock",
3222
+ "o\u2019s",
3223
+ "p",
3224
+ "p.",
3225
+ "p.m",
3226
+ "p.m.",
3227
+ "pa",
3228
+ "pa.",
3229
+ "paas",
3230
+ "paced",
3231
+ "packaged",
3232
+ "pair",
3233
+ "pallet",
3234
+ "pam",
3235
+ "pan",
3236
+ "panels",
3237
+ "papers",
3238
+ "paradigms",
3239
+ "parallel",
3240
+ "part",
3241
+ "partner",
3242
+ "partners",
3243
+ "partnership",
3244
+ "partnerships",
3245
+ "party",
3246
+ "pass",
3247
+ "passion",
3248
+ "passionate",
3249
+ "pattern",
3250
+ "patterns",
3251
+ "pcb",
3252
+ "pci",
3253
+ "pcie",
3254
+ "pcm",
3255
+ "pen",
3256
+ "people",
3257
+ "per",
3258
+ "perform",
3259
+ "performance",
3260
+ "performing",
3261
+ "perl",
3262
+ "perpetuator",
3263
+ "pes",
3264
+ "pet",
3265
+ "ph",
3266
+ "ph.d.",
3267
+ "phases",
3268
+ "phd",
3269
+ "photonics",
3270
+ "php",
3271
+ "phy",
3272
+ "physical",
3273
+ "physics",
3274
+ "pick",
3275
+ "pid",
3276
+ "pig",
3277
+ "pii",
3278
+ "pipeline",
3279
+ "plan",
3280
+ "planning",
3281
+ "plans",
3282
+ "platform",
3283
+ "platforms",
3284
+ "player",
3285
+ "ple",
3286
+ "plm",
3287
+ "plugins",
3288
+ "plus",
3289
+ "pluses",
3290
+ "ply",
3291
+ "pm",
3292
+ "pmi",
3293
+ "pmp",
3294
+ "policies",
3295
+ "polygraph",
3296
+ "pon",
3297
+ "popular",
3298
+ "portfolio",
3299
+ "position",
3300
+ "positionrequires",
3301
+ "positive",
3302
+ "positively",
3303
+ "possess",
3304
+ "possesses",
3305
+ "potential",
3306
+ "power",
3307
+ "powerapps",
3308
+ "powershell",
3309
+ "pps",
3310
+ "pr.",
3311
+ "practical",
3312
+ "practice",
3313
+ "practices",
3314
+ "pragmatic",
3315
+ "predicting",
3316
+ "preferably",
3317
+ "preferred",
3318
+ "premise",
3319
+ "presence",
3320
+ "present",
3321
+ "presentation",
3322
+ "presentations",
3323
+ "presenting",
3324
+ "previous",
3325
+ "principles",
3326
+ "prior",
3327
+ "priorities",
3328
+ "prioritize",
3329
+ "private",
3330
+ "pro",
3331
+ "problem",
3332
+ "problems",
3333
+ "procedures",
3334
+ "process",
3335
+ "processes",
3336
+ "processing",
3337
+ "processor",
3338
+ "produce",
3339
+ "product",
3340
+ "production",
3341
+ "productivity",
3342
+ "products",
3343
+ "prof",
3344
+ "prof.",
3345
+ "professional",
3346
+ "proficiency",
3347
+ "program",
3348
+ "programing",
3349
+ "programming",
3350
+ "programs",
3351
+ "project",
3352
+ "projects",
3353
+ "proof",
3354
+ "proposition",
3355
+ "protocol",
3356
+ "protocols",
3357
+ "prototype",
3358
+ "proud",
3359
+ "proven",
3360
+ "provenexperience",
3361
+ "provide",
3362
+ "providers",
3363
+ "providing",
3364
+ "proving",
3365
+ "psu",
3366
+ "pt.",
3367
+ "pth",
3368
+ "pts",
3369
+ "public",
3370
+ "publication",
3371
+ "publications",
3372
+ "puppet",
3373
+ "purposes",
3374
+ "pursue",
3375
+ "pursuing",
3376
+ "pyspark",
3377
+ "python",
3378
+ "q",
3379
+ "q.",
3380
+ "qualifications",
3381
+ "qualified",
3382
+ "quality",
3383
+ "quantitative",
3384
+ "query",
3385
+ "quickly",
3386
+ "r",
3387
+ "r.",
3388
+ "rJS",
3389
+ "race",
3390
+ "rack",
3391
+ "rackspace",
3392
+ "rails",
3393
+ "ral",
3394
+ "ram",
3395
+ "ran",
3396
+ "rapid",
3397
+ "rational",
3398
+ "rce",
3399
+ "rch",
3400
+ "rdbms",
3401
+ "rds",
3402
+ "re",
3403
+ "re.",
3404
+ "rea",
3405
+ "reach",
3406
+ "react",
3407
+ "reactjs",
3408
+ "reactnative",
3409
+ "reactors",
3410
+ "readiness",
3411
+ "reading",
3412
+ "real",
3413
+ "realities",
3414
+ "reality",
3415
+ "receive",
3416
+ "recipes",
3417
+ "recognition",
3418
+ "recognized",
3419
+ "recommendation",
3420
+ "recommendations",
3421
+ "recommended",
3422
+ "reconstruction",
3423
+ "record",
3424
+ "records",
3425
+ "recruit",
3426
+ "recruiting",
3427
+ "red",
3428
+ "redefining",
3429
+ "redis",
3430
+ "redmond",
3431
+ "ree",
3432
+ "reference",
3433
+ "regard",
3434
+ "regarding",
3435
+ "regions",
3436
+ "related",
3437
+ "relational",
3438
+ "relationship",
3439
+ "relationships",
3440
+ "release",
3441
+ "relevant",
3442
+ "reliability",
3443
+ "reliable",
3444
+ "relic",
3445
+ "religion",
3446
+ "remotely",
3447
+ "rep",
3448
+ "rep.",
3449
+ "representatives",
3450
+ "requests",
3451
+ "require",
3452
+ "required",
3453
+ "requirements",
3454
+ "requires",
3455
+ "requiring",
3456
+ "reram",
3457
+ "res",
3458
+ "research",
3459
+ "resilient",
3460
+ "resolution",
3461
+ "resolving",
3462
+ "resources",
3463
+ "responsibilities",
3464
+ "rest",
3465
+ "restful",
3466
+ "result",
3467
+ "results",
3468
+ "retaining",
3469
+ "retrieval",
3470
+ "returning",
3471
+ "rev",
3472
+ "rev.",
3473
+ "reverse",
3474
+ "review",
3475
+ "reviewing",
3476
+ "reviews",
3477
+ "rf",
3478
+ "rge",
3479
+ "rhythm",
3480
+ "ric",
3481
+ "rid",
3482
+ "right",
3483
+ "risc",
3484
+ "rix",
3485
+ "riz",
3486
+ "rk.",
3487
+ "rks",
3488
+ "rly",
3489
+ "rm",
3490
+ "rms",
3491
+ "rnif",
3492
+ "rns",
3493
+ "roadmap",
3494
+ "roadmaps",
3495
+ "robotics",
3496
+ "robust",
3497
+ "rof",
3498
+ "rol",
3499
+ "role",
3500
+ "roles",
3501
+ "rom",
3502
+ "ros",
3503
+ "router",
3504
+ "routing",
3505
+ "row",
3506
+ "rp.",
3507
+ "rs.",
3508
+ "rse",
3509
+ "rss",
3510
+ "rty",
3511
+ "ruby",
3512
+ "rum",
3513
+ "run",
3514
+ "running",
3515
+ "s",
3516
+ "s's",
3517
+ "s.",
3518
+ "s.c.",
3519
+ "sDB",
3520
+ "safe",
3521
+ "safety",
3522
+ "sales",
3523
+ "salesforce",
3524
+ "saltstack",
3525
+ "san",
3526
+ "sans",
3527
+ "sap",
3528
+ "sas",
3529
+ "sata",
3530
+ "scala",
3531
+ "scalable",
3532
+ "scale",
3533
+ "scaled",
3534
+ "scaling",
3535
+ "scenarios",
3536
+ "schema",
3537
+ "schematics",
3538
+ "school",
3539
+ "sci",
3540
+ "science",
3541
+ "sco",
3542
+ "scratch",
3543
+ "screen",
3544
+ "screening",
3545
+ "screenings",
3546
+ "scripting",
3547
+ "scripts",
3548
+ "scrum",
3549
+ "sdn",
3550
+ "search",
3551
+ "second",
3552
+ "section",
3553
+ "sector",
3554
+ "secure",
3555
+ "security",
3556
+ "sed",
3557
+ "sees",
3558
+ "self",
3559
+ "semiconductor",
3560
+ "sen",
3561
+ "sen.",
3562
+ "senior",
3563
+ "sense",
3564
+ "sensing",
3565
+ "sensor",
3566
+ "sensors",
3567
+ "sep",
3568
+ "sep.",
3569
+ "sept",
3570
+ "sept.",
3571
+ "ser",
3572
+ "serdes",
3573
+ "server",
3574
+ "serverless",
3575
+ "servers",
3576
+ "service",
3577
+ "servicenow",
3578
+ "services",
3579
+ "serving",
3580
+ "ses",
3581
+ "set",
3582
+ "sexual",
3583
+ "sh.",
3584
+ "sha",
3585
+ "shall",
3586
+ "shape",
3587
+ "shaping",
3588
+ "share",
3589
+ "shared",
3590
+ "she",
3591
+ "she's",
3592
+ "sheet",
3593
+ "shell",
3594
+ "she\u2019s",
3595
+ "shift",
3596
+ "shifts",
3597
+ "ship",
3598
+ "shipping",
3599
+ "should",
3600
+ "sia",
3601
+ "sic",
3602
+ "siggraph",
3603
+ "sigma",
3604
+ "signal",
3605
+ "significant",
3606
+ "silicon",
3607
+ "similar",
3608
+ "simplify",
3609
+ "simulation",
3610
+ "simulators",
3611
+ "simultaneously",
3612
+ "sis",
3613
+ "site",
3614
+ "situations",
3615
+ "six",
3616
+ "size",
3617
+ "sizing",
3618
+ "skill",
3619
+ "skills",
3620
+ "sks",
3621
+ "sla",
3622
+ "slam",
3623
+ "sly",
3624
+ "small",
3625
+ "smart",
3626
+ "sms",
3627
+ "smtp",
3628
+ "so",
3629
+ "soa",
3630
+ "soc",
3631
+ "social",
3632
+ "softlayer",
3633
+ "software",
3634
+ "solid",
3635
+ "solution",
3636
+ "solutions",
3637
+ "solve",
3638
+ "solving",
3639
+ "some",
3640
+ "someone",
3641
+ "somethin",
3642
+ "somethin'",
3643
+ "something",
3644
+ "somethin\u2019",
3645
+ "sor",
3646
+ "sound",
3647
+ "source",
3648
+ "sox",
3649
+ "space",
3650
+ "spam",
3651
+ "span",
3652
+ "spanish",
3653
+ "spanning",
3654
+ "spark",
3655
+ "spc",
3656
+ "speaker",
3657
+ "speaking",
3658
+ "specialized",
3659
+ "specific",
3660
+ "specifying",
3661
+ "speed",
3662
+ "spi",
3663
+ "spread",
3664
+ "sprint",
3665
+ "spurce",
3666
+ "sql",
3667
+ "squid",
3668
+ "sr",
3669
+ "srs",
3670
+ "ss.",
3671
+ "st",
3672
+ "st.",
3673
+ "stack",
3674
+ "stacks",
3675
+ "stakeholder",
3676
+ "stakeholders",
3677
+ "standard",
3678
+ "standards",
3679
+ "standing",
3680
+ "start",
3681
+ "started",
3682
+ "starter",
3683
+ "startup",
3684
+ "state",
3685
+ "stateful",
3686
+ "stateless",
3687
+ "statement",
3688
+ "statistical",
3689
+ "statistics",
3690
+ "status",
3691
+ "stem",
3692
+ "step",
3693
+ "storage",
3694
+ "store",
3695
+ "strategic",
3696
+ "strategically",
3697
+ "strategy",
3698
+ "street",
3699
+ "strong",
3700
+ "strongly",
3701
+ "structure",
3702
+ "structured",
3703
+ "structures",
3704
+ "struts",
3705
+ "sts",
3706
+ "studio",
3707
+ "study",
3708
+ "subject",
3709
+ "subjects",
3710
+ "subsystems",
3711
+ "success",
3712
+ "successful",
3713
+ "such",
3714
+ "sue",
3715
+ "suite",
3716
+ "supplier",
3717
+ "suppliers",
3718
+ "supplies",
3719
+ "supply",
3720
+ "support",
3721
+ "supporting",
3722
+ "sus",
3723
+ "suse",
3724
+ "sw",
3725
+ "swe",
3726
+ "swedish",
3727
+ "swift",
3728
+ "switch",
3729
+ "switching",
3730
+ "sybase",
3731
+ "sys",
3732
+ "syslog",
3733
+ "system",
3734
+ "systematic",
3735
+ "systems",
3736
+ "s\u2019s",
3737
+ "t",
3738
+ "t's",
3739
+ "t.",
3740
+ "tJS",
3741
+ "ta",
3742
+ "tables",
3743
+ "tal",
3744
+ "talent",
3745
+ "tasks",
3746
+ "tch",
3747
+ "tcp",
3748
+ "tcs",
3749
+ "td.",
3750
+ "tdd",
3751
+ "team",
3752
+ "teams",
3753
+ "teamwork",
3754
+ "tech",
3755
+ "technical",
3756
+ "technically",
3757
+ "techniques",
3758
+ "technologies",
3759
+ "technologist",
3760
+ "technology",
3761
+ "ted",
3762
+ "telecommunications",
3763
+ "television",
3764
+ "tem",
3765
+ "ten",
3766
+ "tenant",
3767
+ "tenants",
3768
+ "tenn",
3769
+ "tenn.",
3770
+ "tep",
3771
+ "ter",
3772
+ "term",
3773
+ "tes",
3774
+ "test",
3775
+ "testing",
3776
+ "teststand",
3777
+ "tfs",
3778
+ "tftp",
3779
+ "that",
3780
+ "that's",
3781
+ "that\u2019s",
3782
+ "the",
3783
+ "their",
3784
+ "them",
3785
+ "there",
3786
+ "there's",
3787
+ "thereafte",
3788
+ "thereafter",
3789
+ "there\u2019s",
3790
+ "thermal",
3791
+ "these",
3792
+ "they",
3793
+ "think",
3794
+ "thinker",
3795
+ "thinking",
3796
+ "third",
3797
+ "this",
3798
+ "this's",
3799
+ "this\u2019s",
3800
+ "thm",
3801
+ "thorough",
3802
+ "those",
3803
+ "thought",
3804
+ "thoughts",
3805
+ "thousands",
3806
+ "three",
3807
+ "through",
3808
+ "throughout",
3809
+ "thy",
3810
+ "tic",
3811
+ "tier",
3812
+ "time",
3813
+ "timeline",
3814
+ "tls",
3815
+ "tly",
3816
+ "to",
3817
+ "today",
3818
+ "tom",
3819
+ "tomorrow",
3820
+ "tool",
3821
+ "tools",
3822
+ "topics",
3823
+ "topologies",
3824
+ "tor",
3825
+ "touch",
3826
+ "tough",
3827
+ "tpus",
3828
+ "trace",
3829
+ "track",
3830
+ "trade",
3831
+ "traditional",
3832
+ "traffic",
3833
+ "training",
3834
+ "transceiver",
3835
+ "transfer",
3836
+ "transforming",
3837
+ "transitions",
3838
+ "translate",
3839
+ "transmission",
3840
+ "transport",
3841
+ "travel",
3842
+ "trello",
3843
+ "trends",
3844
+ "trick",
3845
+ "troubleshoot",
3846
+ "troubleshooting",
3847
+ "try",
3848
+ "ts",
3849
+ "tup",
3850
+ "turnkey",
3851
+ "tus",
3852
+ "two",
3853
+ "t\u2019s",
3854
+ "u",
3855
+ "u.",
3856
+ "u.s.",
3857
+ "ual",
3858
+ "uart",
3859
+ "uby",
3860
+ "uce",
3861
+ "uch",
3862
+ "uct",
3863
+ "ude",
3864
+ "udp",
3865
+ "udy",
3866
+ "uen",
3867
+ "ues",
3868
+ "uff",
3869
+ "ug.",
3870
+ "ugh",
3871
+ "ui",
3872
+ "uid",
3873
+ "uit",
3874
+ "ul.",
3875
+ "uld",
3876
+ "ule",
3877
+ "ull",
3878
+ "ult",
3879
+ "ume",
3880
+ "ums",
3881
+ "un.",
3882
+ "uncertainty",
3883
+ "und",
3884
+ "under",
3885
+ "undergraduate",
3886
+ "understand",
3887
+ "understanding",
3888
+ "understanding/",
3889
+ "unified",
3890
+ "units",
3891
+ "unix",
3892
+ "unlock",
3893
+ "unstructured",
3894
+ "unwavering",
3895
+ "up",
3896
+ "upgrade",
3897
+ "upgrades",
3898
+ "upon",
3899
+ "ups",
3900
+ "urbancode",
3901
+ "ure",
3902
+ "urs",
3903
+ "us",
3904
+ "usb",
3905
+ "usd",
3906
+ "use",
3907
+ "used",
3908
+ "user",
3909
+ "uses",
3910
+ "using",
3911
+ "ust",
3912
+ "ute",
3913
+ "utilize",
3914
+ "utilizing",
3915
+ "uts",
3916
+ "uul",
3917
+ "ux",
3918
+ "v",
3919
+ "v.",
3920
+ "v.s",
3921
+ "v.s.",
3922
+ "v.v",
3923
+ "vSwitch",
3924
+ "v_v",
3925
+ "va",
3926
+ "va.",
3927
+ "val",
3928
+ "valid",
3929
+ "validated",
3930
+ "validation",
3931
+ "value",
3932
+ "values",
3933
+ "variety",
3934
+ "various",
3935
+ "ve",
3936
+ "vehicles",
3937
+ "vel",
3938
+ "ven",
3939
+ "vendor",
3940
+ "vendors",
3941
+ "ver",
3942
+ "verbal",
3943
+ "verification",
3944
+ "verify",
3945
+ "verifying",
3946
+ "verilog",
3947
+ "version",
3948
+ "very",
3949
+ "ves",
3950
+ "veteran",
3951
+ "vey",
3952
+ "via",
3953
+ "video",
3954
+ "vin",
3955
+ "virtual",
3956
+ "virtualization",
3957
+ "virtustream",
3958
+ "vision",
3959
+ "visual",
3960
+ "visualization",
3961
+ "vlsi",
3962
+ "vmware",
3963
+ "volatile",
3964
+ "volume",
3965
+ "vp",
3966
+ "vpp",
3967
+ "vr",
3968
+ "vs",
3969
+ "vs.",
3970
+ "vswitch",
3971
+ "w",
3972
+ "w's",
3973
+ "w.",
3974
+ "w/o",
3975
+ "walid",
3976
+ "walking",
3977
+ "was",
3978
+ "wash",
3979
+ "wash.",
3980
+ "ways",
3981
+ "we",
3982
+ "web",
3983
+ "weblogic",
3984
+ "webservices",
3985
+ "websphere",
3986
+ "weekends",
3987
+ "well",
3988
+ "wer",
3989
+ "were",
3990
+ "what",
3991
+ "what's",
3992
+ "what\u2019s",
3993
+ "when",
3994
+ "when's",
3995
+ "when\u2019s",
3996
+ "where",
3997
+ "where's",
3998
+ "where\u2019s",
3999
+ "which",
4000
+ "while",
4001
+ "white",
4002
+ "who",
4003
+ "who's",
4004
+ "who\u2019s",
4005
+ "why",
4006
+ "why's",
4007
+ "why\u2019s",
4008
+ "wide",
4009
+ "will",
4010
+ "willing",
4011
+ "windows",
4012
+ "winning",
4013
+ "wipro",
4014
+ "wireless",
4015
+ "wis",
4016
+ "wis.",
4017
+ "with",
4018
+ "within",
4019
+ "without",
4020
+ "wo",
4021
+ "work",
4022
+ "workflow",
4023
+ "workforce",
4024
+ "working",
4025
+ "workloads",
4026
+ "workplace",
4027
+ "workshops",
4028
+ "would",
4029
+ "write",
4030
+ "writer",
4031
+ "writing",
4032
+ "written",
4033
+ "www",
4034
+ "w\u2019s",
4035
+ "x",
4036
+ "x'",
4037
+ "x'x",
4038
+ "x'xxxx",
4039
+ "x.",
4040
+ "x.X",
4041
+ "x.d",
4042
+ "x.x",
4043
+ "x.x.",
4044
+ "x/x",
4045
+ "x86",
4046
+ "xD",
4047
+ "xDB",
4048
+ "xDD",
4049
+ "xX",
4050
+ "xXX",
4051
+ "xXxxxx",
4052
+ "x_X",
4053
+ "x_d",
4054
+ "x_x",
4055
+ "xd",
4056
+ "xdd",
4057
+ "xed",
4058
+ "xen",
4059
+ "xml",
4060
+ "xslt",
4061
+ "xx",
4062
+ "xx'",
4063
+ "xx'x",
4064
+ "xx'xx",
4065
+ "xx.",
4066
+ "xxXXX",
4067
+ "xxx",
4068
+ "xxx'x",
4069
+ "xxx/xx",
4070
+ "xxxx",
4071
+ "xxxx'",
4072
+ "xxxx'x",
4073
+ "xxxx(x",
4074
+ "xxxx/",
4075
+ "xxxx\u2019",
4076
+ "xxxx\u2019x",
4077
+ "xxx\u2019x",
4078
+ "xx\u2019",
4079
+ "xx\u2019x",
4080
+ "xx\u2019xx",
4081
+ "x\u2019",
4082
+ "x\u2019x",
4083
+ "x\u2019xxxx",
4084
+ "x\ufe35x",
4085
+ "y",
4086
+ "y'",
4087
+ "y's",
4088
+ "y.",
4089
+ "yad",
4090
+ "year",
4091
+ "years",
4092
+ "yer",
4093
+ "you",
4094
+ "your",
4095
+ "ype",
4096
+ "yrs",
4097
+ "yze",
4098
+ "y\u2019",
4099
+ "y\u2019s",
4100
+ "z",
4101
+ "z.",
4102
+ "zed",
4103
+ "zel",
4104
+ "zen",
4105
+ "zon",
4106
+ "zoning",
4107
+ "zuul",
4108
+ "|",
4109
+ "}",
4110
+ "\u00a0",
4111
+ "\u00ac",
4112
+ "\u00ac_\u00ac",
4113
+ "\u00af",
4114
+ "\u00af\\(x)/\u00af",
4115
+ "\u00af\\(\u30c4)/\u00af",
4116
+ "\u00b0",
4117
+ "\u00b0C.",
4118
+ "\u00b0F.",
4119
+ "\u00b0K.",
4120
+ "\u00b0X.",
4121
+ "\u00b0c.",
4122
+ "\u00b0f.",
4123
+ "\u00b0k.",
4124
+ "\u00b0x.",
4125
+ "\u00e4",
4126
+ "\u00e4.",
4127
+ "\u00f6",
4128
+ "\u00f6.",
4129
+ "\u00fc",
4130
+ "\u00fc.",
4131
+ "\u0ca0",
4132
+ "\u0ca0_\u0ca0",
4133
+ "\u0ca0\ufe35\u0ca0",
4134
+ "\u2014",
4135
+ "\u2018",
4136
+ "\u2018S",
4137
+ "\u2018X",
4138
+ "\u2018s",
4139
+ "\u2018x",
4140
+ "\u2019",
4141
+ "\u2019-(",
4142
+ "\u2019-)",
4143
+ "\u2019Cause",
4144
+ "\u2019Cos",
4145
+ "\u2019Coz",
4146
+ "\u2019Cuz",
4147
+ "\u2019S",
4148
+ "\u2019X",
4149
+ "\u2019Xxx",
4150
+ "\u2019Xxxxx",
4151
+ "\u2019am",
4152
+ "\u2019bout",
4153
+ "\u2019cause",
4154
+ "\u2019cos",
4155
+ "\u2019coz",
4156
+ "\u2019cuz",
4157
+ "\u2019d",
4158
+ "\u2019em",
4159
+ "\u2019ll",
4160
+ "\u2019m",
4161
+ "\u2019nuff",
4162
+ "\u2019re",
4163
+ "\u2019s",
4164
+ "\u2019ve",
4165
+ "\u2019x",
4166
+ "\u2019xx",
4167
+ "\u2019xxx",
4168
+ "\u2019xxxx",
4169
+ "\u2019y",
4170
+ "\u2019\u2019",
4171
+ "\u2501",
4172
+ "\u253b",
4173
+ "\u253b\u2501\u253b",
4174
+ "\u256f",
4175
+ "\u25a1",
4176
+ "\ufe35",
4177
+ "\uff09"
4178
+ ]
vocab/vectors ADDED
Binary file (128 Bytes). View file
 
vocab/vectors.cfg ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+ "mode":"default"
3
+ }