Commit
·
aec0de6
1
Parent(s):
a4d2822
Update spaCy pipeline
Browse files- .gitattributes +2 -0
- README.md +56 -0
- config.cfg +143 -0
- en_pipeline-any-py3-none-any.whl +3 -0
- meta.json +66 -0
- ner/cfg +13 -0
- ner/model +0 -0
- ner/moves +0 -0
- tok2vec/cfg +3 -0
- tok2vec/model +3 -0
- tokenizer +3 -0
- vocab/key2row +1 -0
- vocab/lookups.bin +3 -0
- vocab/strings.json +3055 -0
- vocab/vectors +0 -0
- vocab/vectors.cfg +3 -0
.gitattributes
CHANGED
|
@@ -32,3 +32,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 32 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 33 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
| 32 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 33 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 35 |
+
en_pipeline-any-py3-none-any.whl filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
tok2vec/model filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
tags:
|
| 3 |
+
- spacy
|
| 4 |
+
- token-classification
|
| 5 |
+
language:
|
| 6 |
+
- en
|
| 7 |
+
model-index:
|
| 8 |
+
- name: en_pipeline
|
| 9 |
+
results:
|
| 10 |
+
- task:
|
| 11 |
+
name: NER
|
| 12 |
+
type: token-classification
|
| 13 |
+
metrics:
|
| 14 |
+
- name: NER Precision
|
| 15 |
+
type: precision
|
| 16 |
+
value: 0.984375
|
| 17 |
+
- name: NER Recall
|
| 18 |
+
type: recall
|
| 19 |
+
value: 0.9921259843
|
| 20 |
+
- name: NER F Score
|
| 21 |
+
type: f_score
|
| 22 |
+
value: 0.9882352941
|
| 23 |
+
---
|
| 24 |
+
| Feature | Description |
|
| 25 |
+
| --- | --- |
|
| 26 |
+
| **Name** | `en_pipeline` |
|
| 27 |
+
| **Version** | `0.0.0` |
|
| 28 |
+
| **spaCy** | `>=3.4.4,<3.5.0` |
|
| 29 |
+
| **Default Pipeline** | `tok2vec`, `ner` |
|
| 30 |
+
| **Components** | `tok2vec`, `ner` |
|
| 31 |
+
| **Vectors** | 0 keys, 0 unique vectors (0 dimensions) |
|
| 32 |
+
| **Sources** | n/a |
|
| 33 |
+
| **License** | n/a |
|
| 34 |
+
| **Author** | [n/a]() |
|
| 35 |
+
|
| 36 |
+
### Label Scheme
|
| 37 |
+
|
| 38 |
+
<details>
|
| 39 |
+
|
| 40 |
+
<summary>View label scheme (3 labels for 1 components)</summary>
|
| 41 |
+
|
| 42 |
+
| Component | Labels |
|
| 43 |
+
| --- | --- |
|
| 44 |
+
| **`ner`** | `MEDICALCONDITION`, `MEDICINE`, `PATHOGEN` |
|
| 45 |
+
|
| 46 |
+
</details>
|
| 47 |
+
|
| 48 |
+
### Accuracy
|
| 49 |
+
|
| 50 |
+
| Type | Score |
|
| 51 |
+
| --- | --- |
|
| 52 |
+
| `ENTS_F` | 98.82 |
|
| 53 |
+
| `ENTS_P` | 98.44 |
|
| 54 |
+
| `ENTS_R` | 99.21 |
|
| 55 |
+
| `TOK2VEC_LOSS` | 12068.08 |
|
| 56 |
+
| `NER_LOSS` | 27961.10 |
|
config.cfg
ADDED
|
@@ -0,0 +1,143 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[paths]
|
| 2 |
+
train = "./train.spacy"
|
| 3 |
+
dev = "./train.spacy"
|
| 4 |
+
vectors = null
|
| 5 |
+
init_tok2vec = null
|
| 6 |
+
|
| 7 |
+
[system]
|
| 8 |
+
gpu_allocator = null
|
| 9 |
+
seed = 0
|
| 10 |
+
|
| 11 |
+
[nlp]
|
| 12 |
+
lang = "en"
|
| 13 |
+
pipeline = ["tok2vec","ner"]
|
| 14 |
+
batch_size = 1000
|
| 15 |
+
disabled = []
|
| 16 |
+
before_creation = null
|
| 17 |
+
after_creation = null
|
| 18 |
+
after_pipeline_creation = null
|
| 19 |
+
tokenizer = {"@tokenizers":"spacy.Tokenizer.v1"}
|
| 20 |
+
|
| 21 |
+
[components]
|
| 22 |
+
|
| 23 |
+
[components.ner]
|
| 24 |
+
factory = "ner"
|
| 25 |
+
incorrect_spans_key = null
|
| 26 |
+
moves = null
|
| 27 |
+
scorer = {"@scorers":"spacy.ner_scorer.v1"}
|
| 28 |
+
update_with_oracle_cut_size = 100
|
| 29 |
+
|
| 30 |
+
[components.ner.model]
|
| 31 |
+
@architectures = "spacy.TransitionBasedParser.v2"
|
| 32 |
+
state_type = "ner"
|
| 33 |
+
extra_state_tokens = false
|
| 34 |
+
hidden_width = 64
|
| 35 |
+
maxout_pieces = 2
|
| 36 |
+
use_upper = true
|
| 37 |
+
nO = null
|
| 38 |
+
|
| 39 |
+
[components.ner.model.tok2vec]
|
| 40 |
+
@architectures = "spacy.Tok2VecListener.v1"
|
| 41 |
+
width = ${components.tok2vec.model.encode.width}
|
| 42 |
+
upstream = "*"
|
| 43 |
+
|
| 44 |
+
[components.tok2vec]
|
| 45 |
+
factory = "tok2vec"
|
| 46 |
+
|
| 47 |
+
[components.tok2vec.model]
|
| 48 |
+
@architectures = "spacy.Tok2Vec.v2"
|
| 49 |
+
|
| 50 |
+
[components.tok2vec.model.embed]
|
| 51 |
+
@architectures = "spacy.MultiHashEmbed.v2"
|
| 52 |
+
width = ${components.tok2vec.model.encode.width}
|
| 53 |
+
attrs = ["NORM","PREFIX","SUFFIX","SHAPE"]
|
| 54 |
+
rows = [5000,1000,2500,2500]
|
| 55 |
+
include_static_vectors = false
|
| 56 |
+
|
| 57 |
+
[components.tok2vec.model.encode]
|
| 58 |
+
@architectures = "spacy.MaxoutWindowEncoder.v2"
|
| 59 |
+
width = 96
|
| 60 |
+
depth = 4
|
| 61 |
+
window_size = 1
|
| 62 |
+
maxout_pieces = 3
|
| 63 |
+
|
| 64 |
+
[corpora]
|
| 65 |
+
|
| 66 |
+
[corpora.dev]
|
| 67 |
+
@readers = "spacy.Corpus.v1"
|
| 68 |
+
path = ${paths.dev}
|
| 69 |
+
max_length = 0
|
| 70 |
+
gold_preproc = false
|
| 71 |
+
limit = 0
|
| 72 |
+
augmenter = null
|
| 73 |
+
|
| 74 |
+
[corpora.train]
|
| 75 |
+
@readers = "spacy.Corpus.v1"
|
| 76 |
+
path = ${paths.train}
|
| 77 |
+
max_length = 0
|
| 78 |
+
gold_preproc = false
|
| 79 |
+
limit = 0
|
| 80 |
+
augmenter = null
|
| 81 |
+
|
| 82 |
+
[training]
|
| 83 |
+
dev_corpus = "corpora.dev"
|
| 84 |
+
train_corpus = "corpora.train"
|
| 85 |
+
seed = ${system.seed}
|
| 86 |
+
gpu_allocator = ${system.gpu_allocator}
|
| 87 |
+
dropout = 0.1
|
| 88 |
+
accumulate_gradient = 1
|
| 89 |
+
patience = 1600
|
| 90 |
+
max_epochs = 0
|
| 91 |
+
max_steps = 20000
|
| 92 |
+
eval_frequency = 200
|
| 93 |
+
frozen_components = []
|
| 94 |
+
annotating_components = []
|
| 95 |
+
before_to_disk = null
|
| 96 |
+
|
| 97 |
+
[training.batcher]
|
| 98 |
+
@batchers = "spacy.batch_by_words.v1"
|
| 99 |
+
discard_oversize = false
|
| 100 |
+
tolerance = 0.2
|
| 101 |
+
get_length = null
|
| 102 |
+
|
| 103 |
+
[training.batcher.size]
|
| 104 |
+
@schedules = "compounding.v1"
|
| 105 |
+
start = 100
|
| 106 |
+
stop = 1000
|
| 107 |
+
compound = 1.001
|
| 108 |
+
t = 0.0
|
| 109 |
+
|
| 110 |
+
[training.logger]
|
| 111 |
+
@loggers = "spacy.ConsoleLogger.v1"
|
| 112 |
+
progress_bar = false
|
| 113 |
+
|
| 114 |
+
[training.optimizer]
|
| 115 |
+
@optimizers = "Adam.v1"
|
| 116 |
+
beta1 = 0.9
|
| 117 |
+
beta2 = 0.999
|
| 118 |
+
L2_is_weight_decay = true
|
| 119 |
+
L2 = 0.01
|
| 120 |
+
grad_clip = 1.0
|
| 121 |
+
use_averages = false
|
| 122 |
+
eps = 0.00000001
|
| 123 |
+
learn_rate = 0.001
|
| 124 |
+
|
| 125 |
+
[training.score_weights]
|
| 126 |
+
ents_f = 1.0
|
| 127 |
+
ents_p = 0.0
|
| 128 |
+
ents_r = 0.0
|
| 129 |
+
ents_per_type = null
|
| 130 |
+
|
| 131 |
+
[pretraining]
|
| 132 |
+
|
| 133 |
+
[initialize]
|
| 134 |
+
vectors = ${paths.vectors}
|
| 135 |
+
init_tok2vec = ${paths.init_tok2vec}
|
| 136 |
+
vocab_data = null
|
| 137 |
+
lookups = null
|
| 138 |
+
before_init = null
|
| 139 |
+
after_init = null
|
| 140 |
+
|
| 141 |
+
[initialize.components]
|
| 142 |
+
|
| 143 |
+
[initialize.tokenizer]
|
en_pipeline-any-py3-none-any.whl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fcdfa03ce350849519fc0828569f7daef788dbd0f24ec394bcfd89b7621a64e5
|
| 3 |
+
size 5684285
|
meta.json
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"lang":"en",
|
| 3 |
+
"name":"pipeline",
|
| 4 |
+
"version":"0.0.0",
|
| 5 |
+
"description":"",
|
| 6 |
+
"author":"",
|
| 7 |
+
"email":"",
|
| 8 |
+
"url":"",
|
| 9 |
+
"license":"",
|
| 10 |
+
"spacy_version":">=3.4.4,<3.5.0",
|
| 11 |
+
"spacy_git_version":"Unknown",
|
| 12 |
+
"vectors":{
|
| 13 |
+
"width":0,
|
| 14 |
+
"vectors":0,
|
| 15 |
+
"keys":0,
|
| 16 |
+
"name":null
|
| 17 |
+
},
|
| 18 |
+
"labels":{
|
| 19 |
+
"tok2vec":[
|
| 20 |
+
|
| 21 |
+
],
|
| 22 |
+
"ner":[
|
| 23 |
+
"MEDICALCONDITION",
|
| 24 |
+
"MEDICINE",
|
| 25 |
+
"PATHOGEN"
|
| 26 |
+
]
|
| 27 |
+
},
|
| 28 |
+
"pipeline":[
|
| 29 |
+
"tok2vec",
|
| 30 |
+
"ner"
|
| 31 |
+
],
|
| 32 |
+
"components":[
|
| 33 |
+
"tok2vec",
|
| 34 |
+
"ner"
|
| 35 |
+
],
|
| 36 |
+
"disabled":[
|
| 37 |
+
|
| 38 |
+
],
|
| 39 |
+
"performance":{
|
| 40 |
+
"ents_f":0.9882352941,
|
| 41 |
+
"ents_p":0.984375,
|
| 42 |
+
"ents_r":0.9921259843,
|
| 43 |
+
"ents_per_type":{
|
| 44 |
+
"MEDICINE":{
|
| 45 |
+
"p":1.0,
|
| 46 |
+
"r":1.0,
|
| 47 |
+
"f":1.0
|
| 48 |
+
},
|
| 49 |
+
"MEDICALCONDITION":{
|
| 50 |
+
"p":0.9719626168,
|
| 51 |
+
"r":0.9904761905,
|
| 52 |
+
"f":0.9811320755
|
| 53 |
+
},
|
| 54 |
+
"PATHOGEN":{
|
| 55 |
+
"p":0.9836065574,
|
| 56 |
+
"r":0.9836065574,
|
| 57 |
+
"f":0.9836065574
|
| 58 |
+
}
|
| 59 |
+
},
|
| 60 |
+
"tok2vec_loss":120.6807779801,
|
| 61 |
+
"ner_loss":279.6110371662
|
| 62 |
+
},
|
| 63 |
+
"requirements":[
|
| 64 |
+
|
| 65 |
+
]
|
| 66 |
+
}
|
ner/cfg
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"moves":null,
|
| 3 |
+
"update_with_oracle_cut_size":100,
|
| 4 |
+
"multitasks":[
|
| 5 |
+
|
| 6 |
+
],
|
| 7 |
+
"min_action_freq":1,
|
| 8 |
+
"learn_tokens":false,
|
| 9 |
+
"beam_width":1,
|
| 10 |
+
"beam_density":0.0,
|
| 11 |
+
"beam_update_prob":0.0,
|
| 12 |
+
"incorrect_spans_key":null
|
| 13 |
+
}
|
ner/model
ADDED
|
Binary file (130 kB). View file
|
|
|
ner/moves
ADDED
|
Binary file (280 Bytes). View file
|
|
|
tok2vec/cfg
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
|
| 3 |
+
}
|
tok2vec/model
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9e85250396006894deff9022b85b04f6d11033e21e8e5187aca60485a0eef1ca
|
| 3 |
+
size 6009091
|
tokenizer
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
��prefix_search�~^§|^%|^=|^—|^–|^\+(?![0-9])|^…|^……|^,|^:|^;|^\!|^\?|^¿|^؟|^¡|^\(|^\)|^\[|^\]|^\{|^\}|^<|^>|^_|^#|^\*|^&|^。|^?|^!|^,|^、|^;|^:|^~|^·|^।|^،|^۔|^؛|^٪|^\.\.+|^…|^\'|^"|^”|^“|^`|^‘|^´|^’|^‚|^,|^„|^»|^«|^「|^」|^『|^』|^(|^)|^〔|^〕|^【|^】|^《|^》|^〈|^〉|^\$|^£|^€|^¥|^฿|^US\$|^C\$|^A\$|^₽|^﷼|^₴|^₠|^₡|^₢|^₣|^₤|^₥|^₦|^₧|^₨|^₩|^₪|^₫|^€|^₭|^₮|^₯|^₰|^₱|^₲|^₳|^₴|^₵|^₶|^₷|^₸|^₹|^₺|^₻|^₼|^₽|^₾|^₿|^[\u00A6\u00A9\u00AE\u00B0\u0482\u058D\u058E\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u09FA\u0B70\u0BF3-\u0BF8\u0BFA\u0C7F\u0D4F\u0D79\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116\u2117\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u214A\u214C\u214D\u214F\u218A\u218B\u2195-\u2199\u219C-\u219F\u21A1\u21A2\u21A4\u21A5\u21A7-\u21AD\u21AF-\u21CD\u21D0\u21D1\u21D3\u21D5-\u21F3\u2300-\u2307\u230C-\u231F\u2322-\u2328\u232B-\u237B\u237D-\u239A\u23B4-\u23DB\u23E2-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u25B6\u25B8-\u25C0\u25C2-\u25F7\u2600-\u266E\u2670-\u2767\u2794-\u27BF\u2800-\u28FF\u2B00-\u2B2F\u2B45\u2B46\u2B4D-\u2B73\u2B76-\u2B95\u2B98-\u2BC8\u2BCA-\u2BFE\u2CE5-\u2CEA\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u32FE\u3300-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA828-\uA82B\uA836\uA837\uA839\uAA77-\uAA79\uFDFD\uFFE4\uFFE8\uFFED\uFFEE\uFFFC\uFFFD\U00010137-\U0001013F\U00010179-\U00010189\U0001018C-\U0001018E\U00010190-\U0001019B\U000101A0\U000101D0-\U000101FC\U00010877\U00010878\U00010AC8\U0001173F\U00016B3C-\U00016B3F\U00016B45\U0001BC9C\U0001D000-\U0001D0F5\U0001D100-\U0001D126\U0001D129-\U0001D164\U0001D16A-\U0001D16C\U0001D183\U0001D184\U0001D18C-\U0001D1A9\U0001D1AE-\U0001D1E8\U0001D200-\U0001D241\U0001D245\U0001D300-\U0001D356\U0001D800-\U0001D9FF\U0001DA37-\U0001DA3A\U0001DA6D-\U0001DA74\U0001DA76-\U0001DA83\U0001DA85\U0001DA86\U0001ECAC\U0001F000-\U0001F02B\U0001F030-\U0001F093\U0001F0A0-\U0001F0AE\U0001F0B1-\U0001F0BF\U0001F0C1-\U0001F0CF\U0001F0D1-\U0001F0F5\U0001F110-\U0001F16B\U0001F170-\U0001F1AC\U0001F1E6-\U0001F202\U0001F210-\U0001F23B\U0001F240-\U0001F248\U0001F250\U0001F251\U0001F260-\U0001F265\U0001F300-\U0001F3FA\U0001F400-\U0001F6D4\U0001F6E0-\U0001F6EC\U0001F6F0-\U0001F6F9\U0001F700-\U0001F773\U0001F780-\U0001F7D8\U0001F800-\U0001F80B\U0001F810-\U0001F847\U0001F850-\U0001F859\U0001F860-\U0001F887\U0001F890-\U0001F8AD\U0001F900-\U0001F90B\U0001F910-\U0001F93E\U0001F940-\U0001F970\U0001F973-\U0001F976\U0001F97A\U0001F97C-\U0001F9A2\U0001F9B0-\U0001F9B9\U0001F9C0-\U0001F9C2\U0001F9D0-\U0001F9FF\U0001FA60-\U0001FA6D]�suffix_search�2y…$|……$|,$|:$|;$|\!$|\?$|¿$|؟$|¡$|\($|\)$|\[$|\]$|\{$|\}$|<$|>$|_$|#$|\*$|&$|。$|?$|!$|,$|、$|;$|:$|~$|·$|।$|،$|۔$|؛$|٪$|\.\.+$|…$|\'$|"$|”$|“$|`$|‘$|´$|’$|‚$|,$|„$|»$|«$|「$|」$|『$|』$|($|)$|〔$|〕$|【$|】$|《$|》$|〈$|〉$|[\u00A6\u00A9\u00AE\u00B0\u0482\u058D\u058E\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u09FA\u0B70\u0BF3-\u0BF8\u0BFA\u0C7F\u0D4F\u0D79\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116\u2117\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u214A\u214C\u214D\u214F\u218A\u218B\u2195-\u2199\u219C-\u219F\u21A1\u21A2\u21A4\u21A5\u21A7-\u21AD\u21AF-\u21CD\u21D0\u21D1\u21D3\u21D5-\u21F3\u2300-\u2307\u230C-\u231F\u2322-\u2328\u232B-\u237B\u237D-\u239A\u23B4-\u23DB\u23E2-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u25B6\u25B8-\u25C0\u25C2-\u25F7\u2600-\u266E\u2670-\u2767\u2794-\u27BF\u2800-\u28FF\u2B00-\u2B2F\u2B45\u2B46\u2B4D-\u2B73\u2B76-\u2B95\u2B98-\u2BC8\u2BCA-\u2BFE\u2CE5-\u2CEA\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u32FE\u3300-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA828-\uA82B\uA836\uA837\uA839\uAA77-\uAA79\uFDFD\uFFE4\uFFE8\uFFED\uFFEE\uFFFC\uFFFD\U00010137-\U0001013F\U00010179-\U00010189\U0001018C-\U0001018E\U00010190-\U0001019B\U000101A0\U000101D0-\U000101FC\U00010877\U00010878\U00010AC8\U0001173F\U00016B3C-\U00016B3F\U00016B45\U0001BC9C\U0001D000-\U0001D0F5\U0001D100-\U0001D126\U0001D129-\U0001D164\U0001D16A-\U0001D16C\U0001D183\U0001D184\U0001D18C-\U0001D1A9\U0001D1AE-\U0001D1E8\U0001D200-\U0001D241\U0001D245\U0001D300-\U0001D356\U0001D800-\U0001D9FF\U0001DA37-\U0001DA3A\U0001DA6D-\U0001DA74\U0001DA76-\U0001DA83\U0001DA85\U0001DA86\U0001ECAC\U0001F000-\U0001F02B\U0001F030-\U0001F093\U0001F0A0-\U0001F0AE\U0001F0B1-\U0001F0BF\U0001F0C1-\U0001F0CF\U0001F0D1-\U0001F0F5\U0001F110-\U0001F16B\U0001F170-\U0001F1AC\U0001F1E6-\U0001F202\U0001F210-\U0001F23B\U0001F240-\U0001F248\U0001F250\U0001F251\U0001F260-\U0001F265\U0001F300-\U0001F3FA\U0001F400-\U0001F6D4\U0001F6E0-\U0001F6EC\U0001F6F0-\U0001F6F9\U0001F700-\U0001F773\U0001F780-\U0001F7D8\U0001F800-\U0001F80B\U0001F810-\U0001F847\U0001F850-\U0001F859\U0001F860-\U0001F887\U0001F890-\U0001F8AD\U0001F900-\U0001F90B\U0001F910-\U0001F93E\U0001F940-\U0001F970\U0001F973-\U0001F976\U0001F97A\U0001F97C-\U0001F9A2\U0001F9B0-\U0001F9B9\U0001F9C0-\U0001F9C2\U0001F9D0-\U0001F9FF\U0001FA60-\U0001FA6D]$|'s$|'S$|’s$|’S$|—$|–$|(?<=[0-9])\+$|(?<=°[FfCcKk])\.$|(?<=[0-9])(?:\$|£|€|¥|฿|US\$|C\$|A\$|₽|﷼|₴|₠|₡|₢|₣|₤|₥|₦|₧|₨|₩|₪|₫|€|₭|₮|₯|₰|₱|₲|₳|₴|₵|₶|₷|₸|₹|₺|₻|₼|₽|₾|₿)$|(?<=[0-9])(?:km|km²|km³|m|m²|m³|dm|dm²|dm³|cm|cm²|cm³|mm|mm²|mm³|ha|µm|nm|yd|in|ft|kg|g|mg|µg|t|lb|oz|m/s|km/h|kmh|mph|hPa|Pa|mbar|mb|MB|kb|KB|gb|GB|tb|TB|T|G|M|K|%|км|км²|км³|м|м²|м³|дм|дм²|дм³|см|см²|см³|мм|мм²|мм³|нм|кг|г|мг|м/с|км/ч|кПа|Па|мбар|Кб|КБ|кб|Мб|МБ|мб|Гб|ГБ|гб|Тб|ТБ|тбكم|كم²|كم³|م|م²|م³|سم|سم²|سم³|مم|مم²|مم³|كم|غرام|جرام|جم|كغ|ملغ|كوب|اكواب)$|(?<=[0-9a-z\uFF41-\uFF5A\u00DF-\u00F6\u00F8-\u00FF\u0101\u0103\u0105\u0107\u0109\u010B\u010D\u010F\u0111\u0113\u0115\u0117\u0119\u011B\u011D\u011F\u0121\u0123\u0125\u0127\u0129\u012B\u012D\u012F\u0131\u0133\u0135\u0137\u0138\u013A\u013C\u013E\u0140\u0142\u0144\u0146\u0148\u0149\u014B\u014D\u014F\u0151\u0153\u0155\u0157\u0159\u015B\u015D\u015F\u0161\u0163\u0165\u0167\u0169\u016B\u016D\u016F\u0171\u0173\u0175\u0177\u017A\u017C\u017E\u017F\u0180\u0183\u0185\u0188\u018C\u018D\u0192\u0195\u0199-\u019B\u019E\u01A1\u01A3\u01A5\u01A8\u01AA\u01AB\u01AD\u01B0\u01B4\u01B6\u01B9\u01BA\u01BD-\u01BF\u01C6\u01C9\u01CC\u01CE\u01D0\u01D2\u01D4\u01D6\u01D8\u01DA\u01DC\u01DD\u01DF\u01E1\u01E3\u01E5\u01E7\u01E9\u01EB\u01ED\u01EF\u01F0\u01F3\u01F5\u01F9\u01FB\u01FD\u01FF\u0201\u0203\u0205\u0207\u0209\u020B\u020D\u020F\u0211\u0213\u0215\u0217\u0219\u021B\u021D\u021F\u0221\u0223\u0225\u0227\u0229\u022B\u022D\u022F\u0231\u0233-\u0239\u023C\u023F\u0240\u0242\u0247\u0249\u024B\u024D\u024F\u2C61\u2C65\u2C66\u2C68\u2C6A\u2C6C\u2C71\u2C73\u2C74\u2C76-\u2C7B\uA723\uA725\uA727\uA729\uA72B\uA72D\uA72F-\uA731\uA733\uA735\uA737\uA739\uA73B\uA73D\uA73F\uA741\uA743\uA745\uA747\uA749\uA74B\uA74D\uA74F\uA751\uA753\uA755\uA757\uA759\uA75B\uA75D\uA75F\uA761\uA763\uA765\uA767\uA769\uA76B\uA76D\uA76F\uA771-\uA778\uA77A\uA77C\uA77F\uA781\uA783\uA785\uA787\uA78C\uA78E\uA791\uA793-\uA795\uA797\uA799\uA79B\uA79D\uA79F\uA7A1\uA7A3\uA7A5\uA7A7\uA7A9\uA7AF\uA7B5\uA7B7\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E01\u1E03\u1E05\u1E07\u1E09\u1E0B\u1E0D\u1E0F\u1E11\u1E13\u1E15\u1E17\u1E19\u1E1B\u1E1D\u1E1F\u1E21\u1E23\u1E25\u1E27\u1E29\u1E2B\u1E2D\u1E2F\u1E31\u1E33\u1E35\u1E37\u1E39\u1E3B\u1E3D\u1E3F\u1E41\u1E43\u1E45\u1E47\u1E49\u1E4B\u1E4D\u1E4F\u1E51\u1E53\u1E55\u1E57\u1E59\u1E5B\u1E5D\u1E5F\u1E61\u1E63\u1E65\u1E67\u1E69\u1E6B\u1E6D\u1E6F\u1E71\u1E73\u1E75\u1E77\u1E79\u1E7B\u1E7D\u1E7F\u1E81\u1E83\u1E85\u1E87\u1E89\u1E8B\u1E8D\u1E8F\u1E91\u1E93\u1E95-\u1E9D\u1E9F\u1EA1\u1EA3\u1EA5\u1EA7\u1EA9\u1EAB\u1EAD\u1EAF\u1EB1\u1EB3\u1EB5\u1EB7\u1EB9\u1EBB\u1EBD\u1EBF\u1EC1\u1EC3\u1EC5\u1EC7\u1EC9\u1ECB\u1ECD\u1ECF\u1ED1\u1ED3\u1ED5\u1ED7\u1ED9\u1EDB\u1EDD\u1EDF\u1EE1\u1EE3\u1EE5\u1EE7\u1EE9\u1EEB\u1EED\u1EEF\u1EF1\u1EF3\u1EF5\u1EF7\u1EF9\u1EFB\u1EFD\u1EFFёа-яәөүҗңһα-ωάέίόώήύа-щюяіїєґѓѕјљњќѐѝ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F%²\-\+…|……|,|:|;|\!|\?|¿|؟|¡|\(|\)|\[|\]|\{|\}|<|>|_|#|\*|&|。|?|!|,|、|;|:|~|·|।|،|۔|؛|٪(?:\'"”“`‘´’‚,„»«「」『』()〔〕【】《》〈〉)])\.$|(?<=[A-Z\uFF21-\uFF3A\u00C0-\u00D6\u00D8-\u00DE\u0100\u0102\u0104\u0106\u0108\u010A\u010C\u010E\u0110\u0112\u0114\u0116\u0118\u011A\u011C\u011E\u0120\u0122\u0124\u0126\u0128\u012A\u012C\u012E\u0130\u0132\u0134\u0136\u0139\u013B\u013D\u013F\u0141\u0143\u0145\u0147\u014A\u014C\u014E\u0150\u0152\u0154\u0156\u0158\u015A\u015C\u015E\u0160\u0162\u0164\u0166\u0168\u016A\u016C\u016E\u0170\u0172\u0174\u0176\u0178\u0179\u017B\u017D\u0181\u0182\u0184\u0186\u0187\u0189-\u018B\u018E-\u0191\u0193\u0194\u0196-\u0198\u019C\u019D\u019F\u01A0\u01A2\u01A4\u01A6\u01A7\u01A9\u01AC\u01AE\u01AF\u01B1-\u01B3\u01B5\u01B7\u01B8\u01BC\u01C4\u01C7\u01CA\u01CD\u01CF\u01D1\u01D3\u01D5\u01D7\u01D9\u01DB\u01DE\u01E0\u01E2\u01E4\u01E6\u01E8\u01EA\u01EC\u01EE\u01F1\u01F4\u01F6-\u01F8\u01FA\u01FC\u01FE\u0200\u0202\u0204\u0206\u0208\u020A\u020C\u020E\u0210\u0212\u0214\u0216\u0218\u021A\u021C\u021E\u0220\u0222\u0224\u0226\u0228\u022A\u022C\u022E\u0230\u0232\u023A\u023B\u023D\u023E\u0241\u0243-\u0246\u0248\u024A\u024C\u024E\u2C60\u2C62-\u2C64\u2C67\u2C69\u2C6B\u2C6D-\u2C70\u2C72\u2C75\u2C7E\u2C7F\uA722\uA724\uA726\uA728\uA72A\uA72C\uA72E\uA732\uA734\uA736\uA738\uA73A\uA73C\uA73E\uA740\uA742\uA744\uA746\uA748\uA74A\uA74C\uA74E\uA750\uA752\uA754\uA756\uA758\uA75A\uA75C\uA75E\uA760\uA762\uA764\uA766\uA768\uA76A\uA76C\uA76E\uA779\uA77B\uA77D\uA77E\uA780\uA782\uA784\uA786\uA78B\uA78D\uA790\uA792\uA796\uA798\uA79A\uA79C\uA79E\uA7A0\uA7A2\uA7A4\uA7A6\uA7A8\uA7AA-\uA7AE\uA7B0-\uA7B4\uA7B6\uA7B8\u1E00\u1E02\u1E04\u1E06\u1E08\u1E0A\u1E0C\u1E0E\u1E10\u1E12\u1E14\u1E16\u1E18\u1E1A\u1E1C\u1E1E\u1E20\u1E22\u1E24\u1E26\u1E28\u1E2A\u1E2C\u1E2E\u1E30\u1E32\u1E34\u1E36\u1E38\u1E3A\u1E3C\u1E3E\u1E40\u1E42\u1E44\u1E46\u1E48\u1E4A\u1E4C\u1E4E\u1E50\u1E52\u1E54\u1E56\u1E58\u1E5A\u1E5C\u1E5E\u1E60\u1E62\u1E64\u1E66\u1E68\u1E6A\u1E6C\u1E6E\u1E70\u1E72\u1E74\u1E76\u1E78\u1E7A\u1E7C\u1E7E\u1E80\u1E82\u1E84\u1E86\u1E88\u1E8A\u1E8C\u1E8E\u1E90\u1E92\u1E94\u1E9E\u1EA0\u1EA2\u1EA4\u1EA6\u1EA8\u1EAA\u1EAC\u1EAE\u1EB0\u1EB2\u1EB4\u1EB6\u1EB8\u1EBA\u1EBC\u1EBE\u1EC0\u1EC2\u1EC4\u1EC6\u1EC8\u1ECA\u1ECC\u1ECE\u1ED0\u1ED2\u1ED4\u1ED6\u1ED8\u1EDA\u1EDC\u1EDE\u1EE0\u1EE2\u1EE4\u1EE6\u1EE8\u1EEA\u1EEC\u1EEE\u1EF0\u1EF2\u1EF4\u1EF6\u1EF8\u1EFA\u1EFC\u1EFEЁА-ЯӘӨҮҖҢҺΑ-ΩΆΈΊΌΏΉΎА-ЩЮЯІЇЄҐЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F][A-Z\uFF21-\uFF3A\u00C0-\u00D6\u00D8-\u00DE\u0100\u0102\u0104\u0106\u0108\u010A\u010C\u010E\u0110\u0112\u0114\u0116\u0118\u011A\u011C\u011E\u0120\u0122\u0124\u0126\u0128\u012A\u012C\u012E\u0130\u0132\u0134\u0136\u0139\u013B\u013D\u013F\u0141\u0143\u0145\u0147\u014A\u014C\u014E\u0150\u0152\u0154\u0156\u0158\u015A\u015C\u015E\u0160\u0162\u0164\u0166\u0168\u016A\u016C\u016E\u0170\u0172\u0174\u0176\u0178\u0179\u017B\u017D\u0181\u0182\u0184\u0186\u0187\u0189-\u018B\u018E-\u0191\u0193\u0194\u0196-\u0198\u019C\u019D\u019F\u01A0\u01A2\u01A4\u01A6\u01A7\u01A9\u01AC\u01AE\u01AF\u01B1-\u01B3\u01B5\u01B7\u01B8\u01BC\u01C4\u01C7\u01CA\u01CD\u01CF\u01D1\u01D3\u01D5\u01D7\u01D9\u01DB\u01DE\u01E0\u01E2\u01E4\u01E6\u01E8\u01EA\u01EC\u01EE\u01F1\u01F4\u01F6-\u01F8\u01FA\u01FC\u01FE\u0200\u0202\u0204\u0206\u0208\u020A\u020C\u020E\u0210\u0212\u0214\u0216\u0218\u021A\u021C\u021E\u0220\u0222\u0224\u0226\u0228\u022A\u022C\u022E\u0230\u0232\u023A\u023B\u023D\u023E\u0241\u0243-\u0246\u0248\u024A\u024C\u024E\u2C60\u2C62-\u2C64\u2C67\u2C69\u2C6B\u2C6D-\u2C70\u2C72\u2C75\u2C7E\u2C7F\uA722\uA724\uA726\uA728\uA72A\uA72C\uA72E\uA732\uA734\uA736\uA738\uA73A\uA73C\uA73E\uA740\uA742\uA744\uA746\uA748\uA74A\uA74C\uA74E\uA750\uA752\uA754\uA756\uA758\uA75A\uA75C\uA75E\uA760\uA762\uA764\uA766\uA768\uA76A\uA76C\uA76E\uA779\uA77B\uA77D\uA77E\uA780\uA782\uA784\uA786\uA78B\uA78D\uA790\uA792\uA796\uA798\uA79A\uA79C\uA79E\uA7A0\uA7A2\uA7A4\uA7A6\uA7A8\uA7AA-\uA7AE\uA7B0-\uA7B4\uA7B6\uA7B8\u1E00\u1E02\u1E04\u1E06\u1E08\u1E0A\u1E0C\u1E0E\u1E10\u1E12\u1E14\u1E16\u1E18\u1E1A\u1E1C\u1E1E\u1E20\u1E22\u1E24\u1E26\u1E28\u1E2A\u1E2C\u1E2E\u1E30\u1E32\u1E34\u1E36\u1E38\u1E3A\u1E3C\u1E3E\u1E40\u1E42\u1E44\u1E46\u1E48\u1E4A\u1E4C\u1E4E\u1E50\u1E52\u1E54\u1E56\u1E58\u1E5A\u1E5C\u1E5E\u1E60\u1E62\u1E64\u1E66\u1E68\u1E6A\u1E6C\u1E6E\u1E70\u1E72\u1E74\u1E76\u1E78\u1E7A\u1E7C\u1E7E\u1E80\u1E82\u1E84\u1E86\u1E88\u1E8A\u1E8C\u1E8E\u1E90\u1E92\u1E94\u1E9E\u1EA0\u1EA2\u1EA4\u1EA6\u1EA8\u1EAA\u1EAC\u1EAE\u1EB0\u1EB2\u1EB4\u1EB6\u1EB8\u1EBA\u1EBC\u1EBE\u1EC0\u1EC2\u1EC4\u1EC6\u1EC8\u1ECA\u1ECC\u1ECE\u1ED0\u1ED2\u1ED4\u1ED6\u1ED8\u1EDA\u1EDC\u1EDE\u1EE0\u1EE2\u1EE4\u1EE6\u1EE8\u1EEA\u1EEC\u1EEE\u1EF0\u1EF2\u1EF4\u1EF6\u1EF8\u1EFA\u1EFC\u1EFEЁА-ЯӘӨҮҖҢҺΑ-ΩΆΈΊΌΏΉΎА-ЩЮЯІЇЄҐЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])\.$�infix_finditer�>�\.\.+|…|[\u00A6\u00A9\u00AE\u00B0\u0482\u058D\u058E\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u09FA\u0B70\u0BF3-\u0BF8\u0BFA\u0C7F\u0D4F\u0D79\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116\u2117\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u214A\u214C\u214D\u214F\u218A\u218B\u2195-\u2199\u219C-\u219F\u21A1\u21A2\u21A4\u21A5\u21A7-\u21AD\u21AF-\u21CD\u21D0\u21D1\u21D3\u21D5-\u21F3\u2300-\u2307\u230C-\u231F\u2322-\u2328\u232B-\u237B\u237D-\u239A\u23B4-\u23DB\u23E2-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u25B6\u25B8-\u25C0\u25C2-\u25F7\u2600-\u266E\u2670-\u2767\u2794-\u27BF\u2800-\u28FF\u2B00-\u2B2F\u2B45\u2B46\u2B4D-\u2B73\u2B76-\u2B95\u2B98-\u2BC8\u2BCA-\u2BFE\u2CE5-\u2CEA\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u32FE\u3300-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA828-\uA82B\uA836\uA837\uA839\uAA77-\uAA79\uFDFD\uFFE4\uFFE8\uFFED\uFFEE\uFFFC\uFFFD\U00010137-\U0001013F\U00010179-\U00010189\U0001018C-\U0001018E\U00010190-\U0001019B\U000101A0\U000101D0-\U000101FC\U00010877\U00010878\U00010AC8\U0001173F\U00016B3C-\U00016B3F\U00016B45\U0001BC9C\U0001D000-\U0001D0F5\U0001D100-\U0001D126\U0001D129-\U0001D164\U0001D16A-\U0001D16C\U0001D183\U0001D184\U0001D18C-\U0001D1A9\U0001D1AE-\U0001D1E8\U0001D200-\U0001D241\U0001D245\U0001D300-\U0001D356\U0001D800-\U0001D9FF\U0001DA37-\U0001DA3A\U0001DA6D-\U0001DA74\U0001DA76-\U0001DA83\U0001DA85\U0001DA86\U0001ECAC\U0001F000-\U0001F02B\U0001F030-\U0001F093\U0001F0A0-\U0001F0AE\U0001F0B1-\U0001F0BF\U0001F0C1-\U0001F0CF\U0001F0D1-\U0001F0F5\U0001F110-\U0001F16B\U0001F170-\U0001F1AC\U0001F1E6-\U0001F202\U0001F210-\U0001F23B\U0001F240-\U0001F248\U0001F250\U0001F251\U0001F260-\U0001F265\U0001F300-\U0001F3FA\U0001F400-\U0001F6D4\U0001F6E0-\U0001F6EC\U0001F6F0-\U0001F6F9\U0001F700-\U0001F773\U0001F780-\U0001F7D8\U0001F800-\U0001F80B\U0001F810-\U0001F847\U0001F850-\U0001F859\U0001F860-\U0001F887\U0001F890-\U0001F8AD\U0001F900-\U0001F90B\U0001F910-\U0001F93E\U0001F940-\U0001F970\U0001F973-\U0001F976\U0001F97A\U0001F97C-\U0001F9A2\U0001F9B0-\U0001F9B9\U0001F9C0-\U0001F9C2\U0001F9D0-\U0001F9FF\U0001FA60-\U0001FA6D]|(?<=[0-9])[+\-\*^](?=[0-9-])|(?<=[a-z\uFF41-\uFF5A\u00DF-\u00F6\u00F8-\u00FF\u0101\u0103\u0105\u0107\u0109\u010B\u010D\u010F\u0111\u0113\u0115\u0117\u0119\u011B\u011D\u011F\u0121\u0123\u0125\u0127\u0129\u012B\u012D\u012F\u0131\u0133\u0135\u0137\u0138\u013A\u013C\u013E\u0140\u0142\u0144\u0146\u0148\u0149\u014B\u014D\u014F\u0151\u0153\u0155\u0157\u0159\u015B\u015D\u015F\u0161\u0163\u0165\u0167\u0169\u016B\u016D\u016F\u0171\u0173\u0175\u0177\u017A\u017C\u017E\u017F\u0180\u0183\u0185\u0188\u018C\u018D\u0192\u0195\u0199-\u019B\u019E\u01A1\u01A3\u01A5\u01A8\u01AA\u01AB\u01AD\u01B0\u01B4\u01B6\u01B9\u01BA\u01BD-\u01BF\u01C6\u01C9\u01CC\u01CE\u01D0\u01D2\u01D4\u01D6\u01D8\u01DA\u01DC\u01DD\u01DF\u01E1\u01E3\u01E5\u01E7\u01E9\u01EB\u01ED\u01EF\u01F0\u01F3\u01F5\u01F9\u01FB\u01FD\u01FF\u0201\u0203\u0205\u0207\u0209\u020B\u020D\u020F\u0211\u0213\u0215\u0217\u0219\u021B\u021D\u021F\u0221\u0223\u0225\u0227\u0229\u022B\u022D\u022F\u0231\u0233-\u0239\u023C\u023F\u0240\u0242\u0247\u0249\u024B\u024D\u024F\u2C61\u2C65\u2C66\u2C68\u2C6A\u2C6C\u2C71\u2C73\u2C74\u2C76-\u2C7B\uA723\uA725\uA727\uA729\uA72B\uA72D\uA72F-\uA731\uA733\uA735\uA737\uA739\uA73B\uA73D\uA73F\uA741\uA743\uA745\uA747\uA749\uA74B\uA74D\uA74F\uA751\uA753\uA755\uA757\uA759\uA75B\uA75D\uA75F\uA761\uA763\uA765\uA767\uA769\uA76B\uA76D\uA76F\uA771-\uA778\uA77A\uA77C\uA77F\uA781\uA783\uA785\uA787\uA78C\uA78E\uA791\uA793-\uA795\uA797\uA799\uA79B\uA79D\uA79F\uA7A1\uA7A3\uA7A5\uA7A7\uA7A9\uA7AF\uA7B5\uA7B7\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E01\u1E03\u1E05\u1E07\u1E09\u1E0B\u1E0D\u1E0F\u1E11\u1E13\u1E15\u1E17\u1E19\u1E1B\u1E1D\u1E1F\u1E21\u1E23\u1E25\u1E27\u1E29\u1E2B\u1E2D\u1E2F\u1E31\u1E33\u1E35\u1E37\u1E39\u1E3B\u1E3D\u1E3F\u1E41\u1E43\u1E45\u1E47\u1E49\u1E4B\u1E4D\u1E4F\u1E51\u1E53\u1E55\u1E57\u1E59\u1E5B\u1E5D\u1E5F\u1E61\u1E63\u1E65\u1E67\u1E69\u1E6B\u1E6D\u1E6F\u1E71\u1E73\u1E75\u1E77\u1E79\u1E7B\u1E7D\u1E7F\u1E81\u1E83\u1E85\u1E87\u1E89\u1E8B\u1E8D\u1E8F\u1E91\u1E93\u1E95-\u1E9D\u1E9F\u1EA1\u1EA3\u1EA5\u1EA7\u1EA9\u1EAB\u1EAD\u1EAF\u1EB1\u1EB3\u1EB5\u1EB7\u1EB9\u1EBB\u1EBD\u1EBF\u1EC1\u1EC3\u1EC5\u1EC7\u1EC9\u1ECB\u1ECD\u1ECF\u1ED1\u1ED3\u1ED5\u1ED7\u1ED9\u1EDB\u1EDD\u1EDF\u1EE1\u1EE3\u1EE5\u1EE7\u1EE9\u1EEB\u1EED\u1EEF\u1EF1\u1EF3\u1EF5\u1EF7\u1EF9\u1EFB\u1EFD\u1EFFёа-яәөүҗңһα-ωάέίόώήύа-щюяіїєґѓѕјљњќѐѝ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F\'"”“`‘´’‚,„»«「」『』()〔〕【】《》〈〉])\.(?=[A-Z\uFF21-\uFF3A\u00C0-\u00D6\u00D8-\u00DE\u0100\u0102\u0104\u0106\u0108\u010A\u010C\u010E\u0110\u0112\u0114\u0116\u0118\u011A\u011C\u011E\u0120\u0122\u0124\u0126\u0128\u012A\u012C\u012E\u0130\u0132\u0134\u0136\u0139\u013B\u013D\u013F\u0141\u0143\u0145\u0147\u014A\u014C\u014E\u0150\u0152\u0154\u0156\u0158\u015A\u015C\u015E\u0160\u0162\u0164\u0166\u0168\u016A\u016C\u016E\u0170\u0172\u0174\u0176\u0178\u0179\u017B\u017D\u0181\u0182\u0184\u0186\u0187\u0189-\u018B\u018E-\u0191\u0193\u0194\u0196-\u0198\u019C\u019D\u019F\u01A0\u01A2\u01A4\u01A6\u01A7\u01A9\u01AC\u01AE\u01AF\u01B1-\u01B3\u01B5\u01B7\u01B8\u01BC\u01C4\u01C7\u01CA\u01CD\u01CF\u01D1\u01D3\u01D5\u01D7\u01D9\u01DB\u01DE\u01E0\u01E2\u01E4\u01E6\u01E8\u01EA\u01EC\u01EE\u01F1\u01F4\u01F6-\u01F8\u01FA\u01FC\u01FE\u0200\u0202\u0204\u0206\u0208\u020A\u020C\u020E\u0210\u0212\u0214\u0216\u0218\u021A\u021C\u021E\u0220\u0222\u0224\u0226\u0228\u022A\u022C\u022E\u0230\u0232\u023A\u023B\u023D\u023E\u0241\u0243-\u0246\u0248\u024A\u024C\u024E\u2C60\u2C62-\u2C64\u2C67\u2C69\u2C6B\u2C6D-\u2C70\u2C72\u2C75\u2C7E\u2C7F\uA722\uA724\uA726\uA728\uA72A\uA72C\uA72E\uA732\uA734\uA736\uA738\uA73A\uA73C\uA73E\uA740\uA742\uA744\uA746\uA748\uA74A\uA74C\uA74E\uA750\uA752\uA754\uA756\uA758\uA75A\uA75C\uA75E\uA760\uA762\uA764\uA766\uA768\uA76A\uA76C\uA76E\uA779\uA77B\uA77D\uA77E\uA780\uA782\uA784\uA786\uA78B\uA78D\uA790\uA792\uA796\uA798\uA79A\uA79C\uA79E\uA7A0\uA7A2\uA7A4\uA7A6\uA7A8\uA7AA-\uA7AE\uA7B0-\uA7B4\uA7B6\uA7B8\u1E00\u1E02\u1E04\u1E06\u1E08\u1E0A\u1E0C\u1E0E\u1E10\u1E12\u1E14\u1E16\u1E18\u1E1A\u1E1C\u1E1E\u1E20\u1E22\u1E24\u1E26\u1E28\u1E2A\u1E2C\u1E2E\u1E30\u1E32\u1E34\u1E36\u1E38\u1E3A\u1E3C\u1E3E\u1E40\u1E42\u1E44\u1E46\u1E48\u1E4A\u1E4C\u1E4E\u1E50\u1E52\u1E54\u1E56\u1E58\u1E5A\u1E5C\u1E5E\u1E60\u1E62\u1E64\u1E66\u1E68\u1E6A\u1E6C\u1E6E\u1E70\u1E72\u1E74\u1E76\u1E78\u1E7A\u1E7C\u1E7E\u1E80\u1E82\u1E84\u1E86\u1E88\u1E8A\u1E8C\u1E8E\u1E90\u1E92\u1E94\u1E9E\u1EA0\u1EA2\u1EA4\u1EA6\u1EA8\u1EAA\u1EAC\u1EAE\u1EB0\u1EB2\u1EB4\u1EB6\u1EB8\u1EBA\u1EBC\u1EBE\u1EC0\u1EC2\u1EC4\u1EC6\u1EC8\u1ECA\u1ECC\u1ECE\u1ED0\u1ED2\u1ED4\u1ED6\u1ED8\u1EDA\u1EDC\u1EDE\u1EE0\u1EE2\u1EE4\u1EE6\u1EE8\u1EEA\u1EEC\u1EEE\u1EF0\u1EF2\u1EF4\u1EF6\u1EF8\u1EFA\u1EFC\u1EFEЁА-ЯӘӨҮҖҢҺΑ-ΩΆΈΊΌΏΉΎА-ЩЮЯІЇЄҐЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F\'"”“`‘´’‚,„»«「」『』()〔〕【】《》〈〉])|(?<=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F]),(?=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])|(?<=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F0-9])(?:-|–|—|--|---|——|~)(?=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])|(?<=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F0-9])[:<>=/](?=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])�token_match��url_match�
|
| 2 |
+
��A�
|
| 3 |
+
� ��A� �'��A�'�''��A�''�'Cause��A�'CauseC�because�'Cos��A�'CosC�because�'Coz��A�'CozC�because�'Cuz��A�'CuzC�because�'S��A�'SC�'s�'bout��A�'boutC�about�'cause��A�'causeC�because�'cos��A�'cosC�because�'coz��A�'cozC�because�'cuz��A�'cuzC�because�'d��A�'d�'em��A�'emC�them�'ll��A�'llC�will�'nuff��A�'nuffC�enough�'re��A�'reC�are�'s��A�'sC�'s�(*_*)��A�(*_*)�(-8��A�(-8�(-:��A�(-:�(-;��A�(-;�(-_-)��A�(-_-)�(._.)��A�(._.)�(:��A�(:�(;��A�(;�(=��A�(=�(>_<)��A�(>_<)�(^_^)��A�(^_^)�(o:��A�(o:�(¬_¬)��A�(¬_¬)�(ಠ_ಠ)��A�(ಠ_ಠ)�(╯°□°)╯︵┻━┻��A�(╯°□°)╯︵┻━┻�)-:��A�)-:�):��A�):�-_-��A�-_-�-__-��A�-__-�._.��A�._.�0.0��A�0.0�0.o��A�0.o�0_0��A�0_0�0_o��A�0_o�10a.m.��A�10�A�a.m.C�a.m.�10am��A�10�A�amC�a.m.�10p.m.��A�10�A�p.m.C�p.m.�10pm��A�10�A�pmC�p.m.�11a.m.��A�11�A�a.m.C�a.m.�11am��A�11�A�amC�a.m.�11p.m.��A�11�A�p.m.C�p.m.�11pm��A�11�A�pmC�p.m.�12a.m.��A�12�A�a.m.C�a.m.�12am��A�12�A�amC�a.m.�12p.m.��A�12�A�p.m.C�p.m.�12pm��A�12�A�pmC�p.m.�1a.m.��A�1�A�a.m.C�a.m.�1am��A�1�A�amC�a.m.�1p.m.��A�1�A�p.m.C�p.m.�1pm��A�1�A�pmC�p.m.�2a.m.��A�2�A�a.m.C�a.m.�2am��A�2�A�amC�a.m.�2p.m.��A�2�A�p.m.C�p.m.�2pm��A�2�A�pmC�p.m.�3a.m.��A�3�A�a.m.C�a.m.�3am��A�3�A�amC�a.m.�3p.m.��A�3�A�p.m.C�p.m.�3pm��A�3�A�pmC�p.m.�4a.m.��A�4�A�a.m.C�a.m.�4am��A�4�A�amC�a.m.�4p.m.��A�4�A�p.m.C�p.m.�4pm��A�4�A�pmC�p.m.�5a.m.��A�5�A�a.m.C�a.m.�5am��A�5�A�amC�a.m.�5p.m.��A�5�A�p.m.C�p.m.�5pm��A�5�A�pmC�p.m.�6a.m.��A�6�A�a.m.C�a.m.�6am��A�6�A�amC�a.m.�6p.m.��A�6�A�p.m.C�p.m.�6pm��A�6�A�pmC�p.m.�7a.m.��A�7�A�a.m.C�a.m.�7am��A�7�A�amC�a.m.�7p.m.��A�7�A�p.m.C�p.m.�7pm��A�7�A�pmC�p.m.�8)��A�8)�8-)��A�8-)�8-D��A�8-D�8D��A�8D�8a.m.��A�8�A�a.m.C�a.m.�8am��A�8�A�amC�a.m.�8p.m.��A�8�A�p.m.C�p.m.�8pm��A�8�A�pmC�p.m.�9a.m.��A�9�A�a.m.C�a.m.�9am��A�9�A�amC�a.m.�9p.m.��A�9�A�p.m.C�p.m.�9pm��A�9�A�pmC�p.m.�:'(��A�:'(�:')��A�:')�:'-(��A�:'-(�:'-)��A�:'-)�:(��A�:(�:((��A�:((�:(((��A�:(((�:()��A�:()�:)��A�:)�:))��A�:))�:)))��A�:)))�:*��A�:*�:-(��A�:-(�:-((��A�:-((�:-(((��A�:-(((�:-)��A�:-)�:-))��A�:-))�:-)))��A�:-)))�:-*��A�:-*�:-/��A�:-/�:-0��A�:-0�:-3��A�:-3�:->��A�:->�:-D��A�:-D�:-O��A�:-O�:-P��A�:-P�:-X��A�:-X�:-]��A�:-]�:-o��A�:-o�:-p��A�:-p�:-x��A�:-x�:-|��A�:-|�:-}��A�:-}�:/��A�:/�:0��A�:0�:1��A�:1�:3��A�:3�:>��A�:>�:D��A�:D�:O��A�:O�:P��A�:P�:X��A�:X�:]��A�:]�:o��A�:o�:o)��A�:o)�:p��A�:p�:x��A�:x�:|��A�:|�:}��A�:}�:’(��A�:’(�:’)��A�:’)�:’-(��A�:’-(�:’-)��A�:’-)�;)��A�;)�;-)��A�;-)�;-D��A�;-D�;D��A�;D�;_;��A�;_;�<.<��A�<.<�</3��A�</3�<3��A�<3�<33��A�<33�<333��A�<333�<space>��A�<space>�=(��A�=(�=)��A�=)�=/��A�=/�=3��A�=3�=D��A�=D�=[��A�=[�=]��A�=]�=|��A�=|�>.<��A�>.<�>.>��A�>.>�>:(��A�>:(�>:o��A�>:o�><(((*>��A�><(((*>�@_@��A�@_@�Adm.��A�Adm.�Ain't��A�Ai�A�n'tC�not�Aint��A�Ai�A�ntC�not�Ain’t��A�Ai�A�n’tC�not�Ak.��A�Ak.C�Alaska�Ala.��A�Ala.C�Alabama�Apr.��A�Apr.C�April�Aren't��A�AreC�are�A�n'tC�not�Arent��A�AreC�are�A�ntC�not�Aren’t��A�AreC�are�A�n’tC�not�Ariz.��A�Ariz.C�Arizona�Ark.��A�Ark.C�Arkansas�Aug.��A�Aug.C�August�Bros.��A�Bros.�C'mon��A�C'mC�come�A�on�C++��A�C++�Calif.��A�Calif.C�California�Can't��A�CaC�can�A�n'tC�not�Can't've��A�CaC�can�A�n'tC�not�A�'veC�have�Cannot��A�CanC�can�A�not�Cant��A�CaC�can�A�ntC�not�Cantve��A�CaC�can�A�ntC�not�A�veC�have�Can’t��A�CaC�can�A�n’tC�not�Can’t’ve��A�CaC�can�A�n’tC�not�A�’veC�have�Co.��A�Co.�Colo.��A�Colo.C�Colorado�Conn.��A�Conn.C�Connecticut�Corp.��A�Corp.�Could've��A�CouldC�could�A�'ve�Couldn't��A�CouldC�could�A�n'tC�not�Couldn't've��A�CouldC�could�A�n'tC�not�A�'veC�have�Couldnt��A�CouldC�could�A�ntC�not�Couldntve��A�CouldC�could�A�ntC�not�A�veC�have�Couldn’t��A�CouldC�could�A�n’tC�not�Couldn’t’ve��A�CouldC�could�A�n’tC�not�A�’veC�have�Couldve��A�CouldC�could�A�ve�Could’ve��A�CouldC�could�A�’ve�C’mon��A�C’mC�come�A�on�D.C.��A�D.C.�Daren't��A�DareC�dare�A�n'tC�not�Darent��A�DareC�dare�A�ntC�not�Daren’t��A�DareC�dare�A�n’tC�not�Dec.��A�Dec.C�December�Del.��A�Del.C�Delaware�Didn't��A�DidC�do�A�n'tC�not�Didn't've��A�DidC�do�A�n'tC�not�A�'veC�have�Didnt��A�DidC�do�A�ntC�not�Didntve��A�DidC�do�A�ntC�not�A�veC�have�Didn’t��A�DidC�do�A�n’tC�not�Didn’t’ve��A�DidC�do�A�n’tC�not�A�’veC�have�Doesn't��A�DoesC�does�A�n'tC�not�Doesn't've��A�DoesC�does�A�n'tC�not�A�'veC�have�Doesnt��A�DoesC�does�A�ntC�not�Doesntve��A�DoesC�does�A�ntC�not�A�veC�have�Doesn’t��A�DoesC�does�A�n’tC�not�Doesn’t’ve��A�DoesC�does�A�n’tC�not�A�’veC�have�Doin��A�DoinC�doing�Doin'��A�Doin'C�doing�Doin’��A�Doin’C�doing�Don't��A�DoC�do�A�n'tC�not�Don't've��A�DoC�do�A�n'tC�not�A�'veC�have�Dont��A�DoC�do�A�ntC�not�Dontve��A�DoC�do�A�ntC�not�A�veC�have�Don’t��A�DoC�do�A�n’tC�not�Don’t’ve��A�DoC�do�A�n’tC�not�A�’veC�have�Dr.��A�Dr.�E.G.��A�E.G.�E.g.��A�E.g.�Feb.��A�Feb.C�February�Fla.��A�Fla.C�Florida�Ga.��A�Ga.C�Georgia�Gen.��A�Gen.�Goin��A�GoinC�going�Goin'��A�Goin'C�going�Goin’��A�Goin’C�going�Gonna��A�GonC�going�A�naC�to�Gotta��A�GotC�got�A�taC�to�Gov.��A�Gov.�Hadn't��A�HadC�have�A�n'tC�not�Hadn't've��A�HadC�have�A�n'tC�not�A�'veC�have�Hadnt��A�HadC�have�A�ntC�not�Hadntve��A�HadC�have�A�ntC�not�A�veC�have�Hadn’t��A�HadC�have�A�n’tC�not�Hadn’t’ve��A�HadC�have�A�n’tC�not�A�’veC�have�Hasn't��A�HasC�has�A�n'tC�not�Hasnt��A�HasC�has�A�ntC�not�Hasn’t��A�HasC�has�A�n’tC�not�Haven't��A�HaveC�have�A�n'tC�not�Havent��A�HaveC�have�A�ntC�not�Haven��t��A�HaveC�have�A�n’tC�not�Havin��A�HavinC�having�Havin'��A�Havin'C�having�Havin’��A�Havin’C�having�He'd��A�HeC�he�A�'dC�'d�He'd've��A�HeC�he�A�'dC�would�A�'veC�have�He'll��A�HeC�he�A�'llC�will�He'll've��A�HeC�he�A�'llC�will�A�'veC�have�He's��A�HeC�he�A�'sC�'s�Hed��A�HeC�he�A�dC�'d�Hedve��A�HeC�he�A�dC�would�A�veC�have�Hellve��A�HeC�he�A�llC�will�A�veC�have�Hes��A�HeC�he�A�s�He’d��A�HeC�he�A�’dC�'d�He’d’ve��A�HeC�he�A�’dC�would�A�’veC�have�He’ll��A�HeC�he�A�’llC�will�He’ll’ve��A�HeC�he�A�’llC�will�A�’veC�have�He’s��A�HeC�he�A�’sC�'s�How'd��A�HowC�how�A�'dC�'d�How'd've��A�HowC�how�A�'dC�would�A�'veC�have�How'd'y��A�HowC�how�A�'d�A�'yC�you�How'll��A�HowC�how�A�'llC�will�How'll've��A�HowC�how�A�'llC�will�A�'veC�have�How're��A�HowC�how�A�'reC�are�How's��A�HowC�how�A�'sC�'s�How've��A�HowC�how�A�'ve�Howd��A�HowC�how�A�dC�'d�Howdve��A�HowC�how�A�dC�would�A�veC�have�Howll��A�HowC�how�A�llC�will�Howllve��A�HowC�how�A�llC�will�A�veC�have�Howre��A�HowC�how�A�reC�are�Hows��A�HowC�how�A�s�Howve��A�How�A�veC�have�How’d��A�HowC�how�A�’dC�'d�How’d’ve��A�HowC�how�A�’dC�would�A�’veC�have�How’d’y��A�HowC�how�A�’d�A�’yC�you�How’ll��A�HowC�how�A�’llC�will�How’ll’ve��A�HowC�how�A�’llC�will�A�’veC�have�How’re��A�HowC�how�A�’reC�are�How’s��A�HowC�how�A�’sC�'s�How’ve��A�HowC�how�A�’ve�I'd��A�IC�i�A�'dC�'d�I'd've��A�IC�i�A�'dC�would�A�'veC�have�I'll��A�IC�i�A�'llC�will�I'll've��A�IC�i�A�'llC�will�A�'veC�have�I'm��A�IC�i�A�'mC�am�I'ma��A�IC�i�A�'mC�am�A�aC�gonna�I've��A�IC�i�A�'veC�have�I.E.��A�I.E.�I.e.��A�I.e.�Ia.��A�Ia.C�Iowa�Id��A�IC�i�A�dC�'d�Id.��A�Id.C�Idaho�Idve��A�IC�i�A�dC�would�A�veC�have�Ill.��A�Ill.C�Illinois�Illve��A�IC�i�A�llC�will�A�veC�have�Im��A�IC�i�A�m�Ima��A�IC�i�A�mC�am�A�aC�gonna�Inc.��A�Inc.�Ind.��A�Ind.C�Indiana�Isn't��A�IsC�is�A�n'tC�not�Isnt��A�IsC�is�A�ntC�not�Isn’t��A�IsC�is�A�n’tC�not�It'd��A�ItC�it�A�'dC�'d�It'd've��A�ItC�it�A�'dC�would�A�'veC�have�It'll��A�ItC�it�A�'llC�will�It'll've��A�ItC�it�A�'llC�will�A�'veC�have�It's��A�ItC�it�A�'sC�'s�Itd��A�ItC�it�A�dC�'d�Itdve��A�ItC�it�A�dC�would�A�veC�have�Itll��A�ItC�it�A�llC�will�Itllve��A�ItC�it�A�llC�will�A�veC�have�It’d��A�ItC�it�A�’dC�'d�It’d’ve��A�ItC�it�A�’dC�would�A�’veC�have�It’ll��A�ItC�it�A�’llC�will�It’ll’ve��A�ItC�it�A�’llC�will�A�’veC�have�It’s��A�ItC�it�A�’sC�'s�Ive��A�IC�i�A�veC�have�I’d��A�IC�i�A�’dC�'d�I’d’ve��A�IC�i�A�’dC�would�A�’veC�have�I’ll��A�IC�i�A�’llC�will�I’ll’ve��A�IC�i�A�’llC�will�A�’veC�have�I’m��A�IC�i�A�’mC�am�I’ma��A�IC�i�A�’mC�am�A�aC�gonna�I’ve��A�IC�i�A�’veC�have�Jan.��A�Jan.C�January�Jr.��A�Jr.�Jul.��A�Jul.C�July�Jun.��A�Jun.C�June�Kan.��A�Kan.C�Kansas�Kans.��A�Kans.C�Kansas�Ky.��A�Ky.C�Kentucky�La.��A�La.C�Louisiana�Let's��A�LetC�let�A�'sC�us�Let’s��A�LetC�let�A�’sC�us�Lovin��A�LovinC�loving�Lovin'��A�Lovin'C�loving�Lovin’��A�Lovin’C�loving�Ltd.��A�Ltd.�Ma'am��A�Ma'amC�madam�Mar.��A�Mar.C�March�Mass.��A�Mass.C�Massachusetts�Mayn't��A�MayC�may�A�n'tC�not�Mayn't've��A�MayC�may�A�n'tC�not�A�'veC�have�Maynt��A�MayC�may�A�ntC�not�Mayntve��A�MayC�may�A�ntC�not�A�veC�have�Mayn’t��A�MayC�may�A�n’tC�not�Mayn’t’ve��A�MayC�may�A�n’tC�not�A�’veC�have�Ma’am��A�Ma’amC�madam�Md.��A�Md.�Messrs.��A�Messrs.�Mich.��A�Mich.C�Michigan�Might've��A�MightC�might�A�'ve�Mightn't��A�MightC�might�A�n'tC�not�Mightn't've��A�MightC�might�A�n'tC�not�A�'veC�have�Mightnt��A�MightC�might�A�ntC�not�Mightntve��A�MightC�might�A�ntC�not�A�veC�have�Mightn’t��A�MightC�might�A�n’tC�not�Mightn’t’ve��A�MightC�might�A�n’tC�not�A�’veC�have�Mightve��A�MightC�might�A�ve�Might’ve��A�MightC�might�A�’ve�Minn.��A�Minn.C�Minnesota�Miss.��A�Miss.C�Mississippi�Mo.��A�Mo.�Mont.��A�Mont.�Mr.��A�Mr.�Mrs.��A�Mrs.�Ms.��A�Ms.�Mt.��A�Mt.C�Mount�Must've��A�MustC�must�A�'ve�Mustn't��A�MustC�must�A�n'tC�not�Mustn't've��A�MustC�must�A�n'tC�not�A�'veC�have�Mustnt��A�MustC�must�A�ntC�not�Mustntve��A�MustC�must�A�ntC�not�A�veC�have�Mustn’t��A�MustC�must�A�n’tC�not�Mustn’t’ve��A�MustC�must�A�n’tC�not�A�’veC�have�Mustve��A�MustC�must�A�ve�Must’ve��A�MustC�must�A�’ve�N.C.��A�N.C.C�North Carolina�N.D.��A�N.D.C�North Dakota�N.H.��A�N.H.C�New Hampshire�N.J.��A�N.J.C�New Jersey�N.M.��A�N.M.C�New Mexico�N.Y.��A�N.Y.C�New York�Neb.��A�Neb.C�Nebraska�Nebr.��A�Nebr.C�Nebraska�Needn't��A�NeedC�need�A�n'tC�not�Needn't've��A�NeedC�need�A�n'tC�not�A�'veC�have�Neednt��A�NeedC�need�A�ntC�not�Needntve��A�NeedC�need�A�ntC�not�A�veC�have�Needn’t��A�NeedC�need�A�n’tC�not�Needn’t’ve��A�NeedC�need�A�n’tC�not�A�’veC�have�Nev.��A�Nev.C�Nevada�Not've��A�NotC�not�A�'veC�have�Nothin��A�NothinC�nothing�Nothin'��A�Nothin'C�nothing�Nothin’��A�Nothin’C�nothing�Notve��A�NotC�not�A�veC�have�Not’ve��A�NotC�not�A�’veC�have�Nov.��A�Nov.C�November�Nuthin��A�NuthinC�nothing�Nuthin'��A�Nuthin'C�nothing�Nuthin’��A�Nuthin’C�nothing�O'clock��A�O'clockC�o'clock�O.O��A�O.O�O.o��A�O.o�O_O��A�O_O�O_o��A�O_o�Oct.��A�Oct.C�October�Okla.��A�Okla.C�Oklahoma�Ol��A�OlC�old�Ol'��A�Ol'C�old�Ol’��A�Ol’C�old�Ore.��A�Ore.C�Oregon�Oughtn't��A�OughtC�ought�A�n'tC�not�Oughtn't've��A�OughtC�ought�A�n'tC�not�A�'veC�have�Oughtnt��A�OughtC�ought�A�ntC�not�Oughtntve��A�OughtC�ought�A�ntC�not�A�veC�have�Oughtn’t��A�OughtC�ought�A�n’tC�not�Oughtn’t’ve��A�OughtC�ought�A�n’tC�not�A�’veC�have�O’clock��A�O’clockC�o'clock�Pa.��A�Pa.C�Pennsylvania�Ph.D.��A�Ph.D.�Prof.��A�Prof.�Rep.��A�Rep.�Rev.��A�Rev.�S.C.��A�S.C.C�South Carolina�Sen.��A�Sen.�Sep.��A�Sep.C�September�Sept.��A�Sept.C�September�Shan't��A�ShaC�shall�A�n'tC�not�Shan't've��A�ShaC�shall�A�n'tC�not�A�'veC�have�Shant��A�ShaC�shall�A�ntC�not�Shantve��A�ShaC�shall�A�ntC�not�A�veC�have�Shan’t��A�ShaC�shall�A�n’tC�not�Shan’t’ve��A�ShaC�shall�A�n’tC�not�A�’veC�have�She'd��A�SheC�she�A�'dC�'d�She'd've��A�SheC�she�A�'dC�would�A�'veC�have�She'll��A�SheC�she�A�'llC�will�She'll've��A�SheC�she�A�'llC�will�A�'veC�have�She's��A�SheC�she�A�'sC�'s�Shedve��A�SheC�she�A�dC�would�A�veC�have�Shellve��A�SheC�she�A�llC�will�A�veC�have�Shes��A�SheC�she�A�s�She’d��A�SheC�she�A�’dC�'d�She’d’ve��A�SheC�she�A�’dC�would�A�’veC�have�She’ll��A�SheC�she�A�’llC�will�She’ll’ve��A�SheC�she�A�’llC�will�A�’veC�have�She’s��A�SheC�she�A�’sC�'s�Should've��A�ShouldC�should�A�'ve�Shouldn't��A�ShouldC�should�A�n'tC�not�Shouldn't've��A�ShouldC�should�A�n'tC�not�A�'veC�have�Shouldnt��A�ShouldC�should�A�ntC�not�Shouldntve��A�ShouldC�should�A�ntC�not�A�veC�have�Shouldn’t��A�ShouldC�should�A�n’tC�not�Shouldn’t’ve��A�ShouldC�should�A�n’tC�not�A�’veC�have�Shouldve��A�ShouldC�should�A�ve�Should’ve��A�ShouldC�should�A�’ve�Somethin��A�SomethinC�something�Somethin'��A�Somethin'C�something�Somethin’��A�Somethin’C�something�St.��A�St.�Tenn.��A�Tenn.C�Tennessee�That'd��A�ThatC�that�A�'dC�'d�That'd've��A�ThatC�that�A�'dC�would�A�'veC�have�That'll��A�ThatC�that�A�'llC�will�That'll've��A�ThatC�that�A�'llC�will�A�'veC�have�That's��A�ThatC�that�A�'sC�'s�Thatd��A�ThatC�that�A�dC�'d�Thatdve��A�ThatC�that�A�dC�would�A�veC�have�Thatll��A�ThatC�that�A�llC�will�Thatllve��A�ThatC�that�A�llC�will�A�veC�have�Thats��A�ThatC�that�A�s�That’d��A�ThatC�that�A�’dC�'d�That’d’ve��A�ThatC�that�A�’dC�would�A�’veC�have�That’ll��A�ThatC�that�A�’llC�will�That’ll’ve��A�ThatC�that�A�’llC�will�A�’veC�have�That’s��A�ThatC�that�A�’sC�'s�There'd��A�ThereC�there�A�'dC�'d�There'd've��A�ThereC�there�A�'dC�would�A�'veC�have�There'll��A�ThereC�there�A�'llC�will�There'll've��A�ThereC�there�A�'llC�will�A�'veC�have�There're��A�ThereC�there�A�'reC�are�There's��A�ThereC�there�A�'sC�'s�There've��A�ThereC�there�A�'ve�Thered��A�ThereC�there�A�dC�'d�Theredve��A�ThereC�there�A�dC�would�A�veC�have�Therell��A�ThereC�there�A�llC�will�Therellve��A�ThereC�there�A�llC�will�A�veC�have�Therere��A�ThereC�there�A�reC�are�Theres��A�ThereC�there�A�s�Thereve��A�There�A�veC�have�There’d��A�ThereC�there�A�’dC�'d�There’d’ve��A�ThereC�there�A�’dC�would�A�’veC�have�There’ll��A�ThereC�there�A�’llC�will�There’ll’ve��A�ThereC�there�A�’llC�will�A�’veC�have�There’re��A�ThereC�there�A�’reC�are�There’s��A�ThereC�there�A�’sC�'s�There’ve��A�ThereC�there�A�’ve�These'd��A�TheseC�these�A�'dC�'d�These'd've��A�TheseC�these�A�'dC�would�A�'veC�have�These'll��A�TheseC�these�A�'llC�will�These'll've��A�TheseC�these�A�'llC�will�A�'veC�have�These're��A�TheseC�these�A�'reC�are�These've��A�TheseC�these�A�'ve�Thesed��A�TheseC�these�A�dC�'d�Thesedve��A�TheseC�these�A�dC�would�A�veC�have�Thesell��A�TheseC�these�A�llC�will�Thesellve��A�TheseC�these�A�llC�will�A�veC�have�Thesere��A�TheseC�these�A�reC�are�Theseve��A�These�A�veC�have�These’d��A�TheseC�these�A�’dC�'d�These’d’ve��A�TheseC�these�A�’dC�would�A�’veC�have�These’ll��A�TheseC�these�A�’llC�will�These’ll’ve��A�TheseC�these�A�’llC�will�A�’veC�have�These’re��A�TheseC�these�A�’reC�are�These’ve��A�TheseC�these�A�’ve�They'd��A�TheyC�they�A�'dC�'d�They'd've��A�TheyC�they�A�'dC�would�A�'veC�have�They'll��A�TheyC�they�A�'llC�will�They'll've��A�TheyC�they�A�'llC�will�A�'veC�have�They're��A�TheyC�they�A�'reC�are�They've��A�TheyC�they�A�'veC�have�Theyd��A�TheyC�they�A�dC�'d�Theydve��A�TheyC�they�A�dC�would�A�veC�have�Theyll��A�TheyC�they�A�llC�will�Theyllve��A�TheyC�they�A�llC�will�A�veC�have�Theyre��A�TheyC�they�A�reC�are�Theyve��A�TheyC�they�A�veC�have�They’d��A�TheyC�they�A�’dC�'d�They’d’ve��A�TheyC�they�A�’dC�would�A�’veC�have�They’ll��A�TheyC�they�A�’llC�will�They’ll’ve��A�TheyC�they�A�’llC�will�A�’veC�have�They’re��A�TheyC�they�A�’reC�are�They’ve��A�TheyC�they�A�’veC�have�This'd��A�ThisC�this�A�'dC�'d�This'd've��A�ThisC�this�A�'dC�would�A�'veC�have�This'll��A�ThisC�this�A�'llC�will�This'll've��A�ThisC�this�A�'llC�will�A�'veC�have�This's��A�ThisC�this�A�'sC�'s�Thisd��A�ThisC�this�A�dC�'d�Thisdve��A�ThisC�this�A�dC�would�A�veC�have�Thisll��A�ThisC�this�A�llC�will�Thisllve��A�ThisC�this�A�llC�will�A�veC�have�Thiss��A�ThisC�this�A�s�This’d��A�ThisC�this�A�’dC�'d�This’d’ve��A�ThisC�this�A�’dC�would�A�’veC�have�This’ll��A�ThisC�this�A�’llC�will�This’ll’ve��A�ThisC�this�A�’llC�will�A�’veC�have�This’s��A�ThisC�this�A�’sC�'s�Those'd��A�ThoseC�those�A�'dC�'d�Those'd've��A�ThoseC�those�A�'dC�would�A�'veC�have�Those'll��A�ThoseC�those�A�'llC�will�Those'll've��A�ThoseC�those�A�'llC�will�A�'veC�have�Those're��A�ThoseC�those�A�'reC�are�Those've��A�ThoseC�those�A�'ve�Thosed��A�ThoseC�those�A�dC�'d�Thosedve��A�ThoseC�those�A�dC�would�A�veC�have�Thosell��A�ThoseC�those�A�llC�will�Thosellve��A�ThoseC�those�A�llC�will�A�veC�have�Thosere��A�ThoseC�those�A�reC�are�Thoseve��A�Those�A�veC�have�Those’d��A�ThoseC�those�A�’dC�'d�Those’d’ve��A�ThoseC�those�A�’dC�would�A�’veC�have�Those’ll��A�ThoseC�those�A�’llC�will�Those’ll’ve��A�ThoseC�those�A�’llC�will�A�’veC�have�Those’re��A�ThoseC�those�A�’reC�are�Those’ve��A�ThoseC�those�A�’ve�V.V��A�V.V�V_V��A�V_V�Va.��A�Va.C�Virginia�Wash.��A�Wash.C�Washington�Wasn't��A�WasC�was�A�n'tC�not�Wasnt��A�WasC�was�A�ntC�not�Wasn’t��A�WasC�was�A�n’tC�not�We'd��A�WeC�we�A�'dC�'d�We'd've��A�WeC�we�A�'dC�would�A�'veC�have�We'll��A�WeC�we�A�'llC�will�We'll've��A�WeC�we�A�'llC�will�A�'veC�have�We're��A�WeC�we�A�'reC�are�We've��A�WeC�we�A�'veC�have�Wed��A�WeC�we�A�dC�'d�Wedve��A�WeC�we�A�dC�would�A�veC�have�Wellve��A�WeC�we�A�llC�will�A�veC�have�Weren't��A�WereC�were�A�n'tC�not�Werent��A�WereC�were�A�ntC�not�Weren’t��A�WereC�were�A�n’tC�not�Weve��A�WeC�we�A�veC�have�We’d��A�WeC�we�A�’dC�'d�We’d’ve��A�WeC�we�A�’dC�would�A�’veC�have�We’ll��A�WeC�we�A�’llC�will�We’ll’ve��A�WeC�we�A�’llC�will�A�’veC�have�We’re��A�WeC�we�A�’reC�are�We’ve��A�WeC�we�A�’veC�have�What'd��A�WhatC�what�A�'dC�'d�What'd've��A�WhatC�what�A�'dC�would�A�'veC�have�What'll��A�WhatC�what�A�'llC�will�What'll've��A�WhatC�what�A�'llC�will�A�'veC�have�What're��A�WhatC�what�A�'reC�are�What's��A�WhatC�what�A�'sC�'s�What've��A�WhatC�what�A�'ve�Whatd��A�WhatC�what�A�dC�'d�Whatdve��A�WhatC�what�A�dC�would�A�veC�have�Whatll��A�WhatC�what�A�llC�will�Whatllve��A�WhatC�what�A�llC�will�A�veC�have�Whatre��A�WhatC�what�A�reC�are�Whats��A�WhatC�what�A�s�Whatve��A�What�A�veC�have�What’d��A�WhatC�what�A�’dC�'d�What’d’ve��A�WhatC�what�A�’dC�would�A�’veC�have�What’ll��A�WhatC�what�A�’llC�will�What’ll’ve��A�WhatC�what�A�’llC�will�A�’veC�have�What’re��A�WhatC�what�A�’reC�are�What’s��A�WhatC�what�A�’sC�'s�What’ve��A�WhatC�what�A�’ve�When'd��A�WhenC�when�A�'dC�'d�When'd've��A�WhenC�when�A�'dC�would�A�'veC�have�When'll��A�WhenC�when�A�'llC�will�When'll've��A�WhenC�when�A�'llC�will�A�'veC�have�When're��A�WhenC�when�A�'reC�are�When's��A�WhenC�when�A�'sC�'s�When've��A�WhenC�when�A�'ve�Whend��A�WhenC�when�A�dC�'d�Whendve��A�WhenC�when�A�dC�would�A�veC�have�Whenll��A�WhenC�when�A�llC�will�Whenllve��A�WhenC�when�A�llC�will�A�veC�have�Whenre��A�WhenC�when�A�reC�are�Whens��A�WhenC�when�A�s�Whenve��A�When�A�veC�have�When’d��A�WhenC�when�A�’dC�'d�When’d’ve��A�WhenC�when�A�’dC�would�A�’veC�have�When’ll��A�WhenC�when�A�’llC�will�When’ll’ve��A�WhenC�when�A�’llC�will�A�’veC�have�When’re��A�WhenC�when�A�’reC�are�When’s��A�WhenC�when�A�’sC�'s�When’ve��A�WhenC�when�A�’ve�Where'd��A�WhereC�where�A�'dC�'d�Where'd've��A�WhereC�where�A�'dC�would�A�'veC�have�Where'll��A�WhereC�where�A�'llC�will�Where'll've��A�WhereC�where�A�'llC�will�A�'veC�have�Where're��A�WhereC�where�A�'reC�are�Where's��A�WhereC�where�A�'sC�'s�Where've��A�WhereC�where�A�'ve�Whered��A�WhereC�where�A�dC�'d�Wheredve��A�WhereC�where�A�dC�would�A�veC�have�Wherell��A�WhereC�where�A�llC�will�Wherellve��A�WhereC�where�A�llC�will�A�veC�have�Wherere��A�WhereC�where�A�reC�are�Wheres��A�WhereC�where�A�s�Whereve��A�Where�A�veC�have�Where’d��A�WhereC�where�A�’dC�'d�Where’d’ve��A�WhereC�where�A�’dC�would�A�’veC�have�Where’ll��A�WhereC�where�A�’llC�will�Where’ll’ve��A�WhereC�where�A�’llC�will�A�’veC�have�Where’re��A�WhereC�where�A�’reC�are�Where’s��A�WhereC�where�A�’sC�'s�Where’ve��A�WhereC�where�A�’ve�Who'd��A�WhoC�who�A�'dC�'d�Who'd've��A�WhoC�who�A�'dC�would�A�'veC�have�Who'll��A�WhoC�who�A�'llC�will�Who'll've��A�WhoC�who�A�'llC�will�A�'veC�have�Who're��A�WhoC�who�A�'reC�are�Who's��A�WhoC�who�A�'sC�'s�Who've��A�WhoC�who�A�'ve�Whod��A�WhoC�who�A�dC�'d�Whodve��A�WhoC�who�A�dC�would�A�veC�have�Wholl��A�WhoC�who�A�llC�will�Whollve��A�WhoC�who�A�llC�will�A�veC�have�Whos��A�WhoC�who�A�s�Whove��A�Who�A�veC�have�Who’d��A�WhoC�who�A�’dC�'d�Who’d’ve��A�WhoC�who�A�’dC�would�A�’veC�have�Who’ll��A�WhoC�who�A�’llC�will�Who’ll’ve��A�WhoC�who�A�’llC�will�A�’veC�have�Who’re��A�WhoC�who�A�’reC�are�Who’s��A�WhoC�who�A�’sC�'s�Who’ve��A�WhoC�who�A�’ve�Why'd��A�WhyC�why�A�'dC�'d�Why'd've��A�WhyC�why�A�'dC�would�A�'veC�have�Why'll��A�WhyC�why�A�'llC�will�Why'll've��A�WhyC�why�A�'llC�will�A�'veC�have�Why're��A�WhyC�why�A�'reC�are�Why's��A�WhyC�why�A�'sC�'s�Why've��A�WhyC�why�A�'ve�Whyd��A�WhyC�why�A�dC�'d�Whydve��A�WhyC�why�A�dC�would�A�veC�have�Whyll��A�WhyC�why�A�llC�will�Whyllve��A�WhyC�why�A�llC�will�A�veC�have�Whyre��A�WhyC�why�A�reC�are�Whys��A�WhyC�why�A�s�Whyve��A�Why�A�veC�have�Why’d��A�WhyC�why�A�’dC�'d�Why’d’ve��A�WhyC�why�A�’dC�would�A�’veC�have�Why’ll��A�WhyC�why�A�’llC�will�Why’ll’ve��A�WhyC�why�A�’llC�will�A�’veC�have�Why’re��A�WhyC�why�A�’reC�are�Why’s��A�WhyC�why�A�’sC�'s�Why’ve��A�WhyC�why�A�’ve�Wis.��A�Wis.C�Wisconsin�Won't��A�WoC�will�A�n'tC�not�Won't've��A�WoC�will�A�n'tC�not�A�'veC�have�Wont��A�WoC�will�A�ntC�not�Wontve��A�WoC�will�A�ntC�not�A�veC�have�Won’t��A�WoC�will�A�n’tC�not�Won’t’ve��A�WoC�will�A�n’tC�not�A�’veC�have�Would've��A�WouldC�would�A�'ve�Wouldn't��A�WouldC�would�A�n'tC�not�Wouldn't've��A�WouldC�would�A�n'tC�not�A�'veC�have�Wouldnt��A�WouldC�would�A�ntC�not�Wouldntve��A�WouldC�would�A�ntC�not�A�veC�have�Wouldn’t��A�WouldC�would�A�n’tC�not�Wouldn’t’ve��A�WouldC�would�A�n’tC�not�A�’veC�have�Wouldve��A�WouldC�would�A�ve�Would’ve��A�WouldC�would�A�’ve�XD��A�XD�XDD��A�XDD�You'd��A�YouC�you�A�'dC�'d�You'd've��A�YouC�you�A�'dC�would�A�'veC�have�You'll��A�YouC�you�A�'llC�will�You'll've��A�YouC�you�A�'llC�will�A�'veC�have�You're��A�YouC�you�A�'reC�are�You've��A�YouC�you�A�'veC�have�Youd��A�YouC�you�A�dC�'d�Youdve��A�YouC�you�A�dC�would�A�veC�have�Youll��A�YouC�you�A�llC�will�Youllve��A�YouC�you�A�llC�will�A�veC�have�Youre��A�YouC�you�A�reC�are�Youve��A�YouC�you�A�veC�have�You’d��A�YouC�you�A�’dC�'d�You’d’ve��A�YouC�you�A�’dC�would�A�’veC�have�You’ll��A�YouC�you�A�’llC�will�You’ll’ve��A�YouC�you�A�’llC�will�A�’veC�have�You’re��A�YouC�you�A�’reC�are�You’ve��A�YouC�you�A�’veC�have�[-:��A�[-:�[:��A�[:�[=��A�[=�\")��A�\")�\n��A�\n�\t��A�\t�]=��A�]=�^_^��A�^_^�^__^��A�^__^�^___^��A�^___^�a.��A�a.�a.m.��A�a.m.�ain't��A�ai�A�n'tC�not�aint��A�ai�A�ntC�not�ain’t��A�ai�A�n’tC�not�and/or��A�and/orC�and/or�aren't��A�areC�are�A�n'tC�not�arent��A�areC�are�A�ntC�not�aren’t��A�areC�are�A�n’tC�not�b.��A�b.�c'mon��A�c'mC�come�A�on�c.��A�c.�can't��A�caC�can�A�n'tC�not�can't've��A�caC�can�A�n'tC�not�A�'veC�have�cannot��A�can�A�not�cant��A�caC�can�A�ntC�not�cantve��A�caC�can�A�ntC�not�A�veC�have�can’t��A�caC�can�A�n’tC�not�can’t’ve��A�caC�can�A�n’tC�not�A�’veC�have�co.��A�co.�could've��A�couldC�could�A�'ve�couldn't��A�couldC�could�A�n'tC�not�couldn't've��A�couldC�could�A�n'tC�not�A�'veC�have�couldnt��A�couldC�could�A�ntC�not�couldntve��A�couldC�could�A�ntC�not�A�veC�have�couldn’t��A�couldC�could�A�n’tC�not�couldn’t’ve��A�couldC�could�A�n’tC�not�A�’veC�have�couldve��A�couldC�could�A�ve�could’ve��A�couldC�could�A�’ve�c’mon��A�c’mC�come�A�on�d.��A�d.�daren't��A�dareC�dare�A�n'tC�not�darent��A�dareC�dare�A�ntC�not�daren’t��A�dareC�dare�A�n’tC�not�didn't��A�didC�do�A�n'tC�not�didn't've��A�didC�do�A�n'tC�not�A�'veC�have�didnt��A�didC�do�A�ntC�not�didntve��A�didC�do�A�ntC�not�A�veC�have�didn’t��A�didC�do�A�n’tC�not�didn’t’ve��A�didC�do�A�n’tC�not�A�’veC�have�doesn't��A�doesC�does�A�n'tC�not�doesn't've��A�doesC�does�A�n'tC�not�A�'veC�have�doesnt��A�doesC�does�A�ntC�not�doesntve��A�doesC�does�A�ntC�not�A�veC�have�doesn’t��A�doesC�does�A�n’tC�not�doesn’t’ve��A�doesC�does�A�n’tC�not�A�’veC�have�doin��A�doinC�doing�doin'��A�doin'C�doing�doin’��A�doin’C�doing�don't��A�doC�do�A�n'tC�not�don't've��A�doC�do�A�n'tC�not�A�'veC�have�dont��A�doC�do�A�ntC�not�dontve��A�doC�do�A�ntC�not�A�veC�have�don’t��A�doC�do�A�n’tC�not�don’t’ve��A�doC�do�A�n’tC�not�A�’veC�have�e.��A�e.�e.g.��A�e.g.�em��A�emC�them�f.��A�f.�g.��A�g.�goin��A�goinC�going�goin'��A�goin'C�going�goin’��A�goin’C�going�gonna��A�gonC�going�A�naC�to�gotta��A�got�A�taC�to�h.��A�h.�hadn't��A�hadC�have�A�n'tC�not�hadn't've��A�hadC�have�A�n'tC�not�A�'veC�have�hadnt��A�hadC�have�A�ntC�not�hadntve��A�hadC�have�A�ntC�not�A�veC�have�hadn’t��A�hadC�have�A�n’tC�not�hadn’t’ve��A�hadC�have�A�n’tC�not�A�’veC�have�hasn't��A�hasC�has�A�n'tC�not�hasnt��A�hasC�has�A�ntC�not�hasn’t��A�hasC�has�A�n’tC�not�haven't��A�haveC�have�A�n'tC�not�havent��A�haveC�have�A�ntC�not�haven’t��A�haveC�have�A�n’tC�not�havin��A�havinC�having�havin'��A�havin'C�having�havin’��A�havin’C�having�he'd��A�heC�he�A�'dC�'d�he'd've��A�heC�he�A�'dC�would�A�'veC�have�he'll��A�heC�he�A�'llC�will�he'll've��A�heC�he�A�'llC�will�A�'veC�have�he's��A�heC�he�A�'sC�'s�hed��A�heC�he�A�dC�'d�hedve��A�heC�he�A�dC�would�A�veC�have�hellve��A�heC�he�A�llC�will�A�veC�have�hes��A�heC�he�A�s�he’d��A�heC�he�A�’dC�'d�he’d’ve��A�heC�he�A�’dC�would�A�’veC�have�he’ll��A�heC�he�A�’llC�will�he’ll’ve��A�heC�he�A�’llC�will�A�’veC�have�he’s��A�heC�he�A�’sC�'s�how'd��A�howC�how�A�'dC�'d�how'd've��A�howC�how�A�'dC�would�A�'veC�have�how'd'y��A�how�A�'d�A�'yC�you�how'll��A�howC�how�A�'llC�will�how'll've��A�howC�how�A�'llC�will�A�'veC�have�how're��A�howC�how�A�'reC�are�how's��A�howC�how�A�'sC�'s�how've��A�howC�how�A�'ve�howd��A�howC�how�A�dC�'d�howdve��A�howC�how�A�dC�would�A�veC�have�howll��A�howC�how�A�llC�will�howllve��A�howC�how�A�llC�will�A�veC�have�howre��A�howC�how�A�reC�are�hows��A�howC�how�A�s�howve��A�how�A�veC�have�how’d��A�howC�how�A�’dC�'d�how’d’ve��A�howC�how�A�’dC�would�A�’veC�have�how’d’y��A�how�A�’d�A�’yC�you�how’ll��A�howC�how�A�’llC�will�how’ll’ve��A�howC�how�A�’llC�will�A�’veC�have�how’re��A�howC�how�A�’reC�are�how’s��A�howC�how�A�’sC�'s�how’ve��A�howC�how�A�’ve�i'd��A�iC�i�A�'dC�'d�i'd've��A�iC�i�A�'dC�would�A�'veC�have�i'll��A�iC�i�A�'llC�will�i'll've��A�iC�i�A�'llC�will�A�'veC�have�i'm��A�iC�i�A�'mC�am�i'ma��A�iC�i�A�'mC�am�A�aC�gonna�i've��A�iC�i�A�'veC�have�i.��A�i.�i.e.��A�i.e.�id��A�iC�i�A�dC�'d�idve��A�iC�i�A�dC�would�A�veC�have�illve��A�iC�i�A�llC�will�A�veC�have�im��A�iC�i�A�m�ima��A�iC�i�A�mC�am�A�aC�gonna�isn't��A�isC�is�A�n'tC�not�isnt��A�isC�is�A�ntC�not�isn’t��A�isC�is�A�n’tC�not�it'd��A�itC�it�A�'dC�'d�it'd've��A�itC�it�A�'dC�would�A�'veC�have�it'll��A�itC�it�A�'llC�will�it'll've��A�itC�it�A�'llC�will�A�'veC�have�it's��A�itC�it�A�'sC�'s�itd��A�itC�it�A�dC�'d�itdve��A�itC�it�A�dC�would�A�veC�have�itll��A�itC�it�A�llC�will�itllve��A�itC�it�A�llC�will�A�veC�have�it’d��A�itC�it�A�’dC�'d�it’d’ve��A�itC�it�A�’dC�would�A�’veC�have�it’ll��A�itC�it�A�’llC�will�it’ll’ve��A�itC�it�A�’llC�will�A�’veC�have�it’s��A�itC�it�A�’sC�'s�ive��A�iC�i�A�veC�have�i’d��A�iC�i�A�’dC�'d�i’d’ve��A�iC�i�A�’dC�would�A�’veC�have�i’ll��A�iC�i�A�’llC�will�i’ll’ve��A�iC�i�A�’llC�will�A�’veC�have�i’m��A�iC�i�A�’mC�am�i’ma��A�iC�i�A�’mC�am�A�aC�gonna�i’ve��A�iC�i�A�’veC�have�j.��A�j.�k.��A�k.�l.��A�l.�let's��A�let�A�'sC�us�let’s��A�let�A�’sC�us�ll��A�llC�will�lovin��A�lovinC�loving�lovin'��A�lovin'C�loving�lovin’��A�lovin’C�loving�m.��A�m.�ma'am��A�ma'amC�madam�mayn't��A�mayC�may�A�n'tC�not�mayn't've��A�mayC�may�A�n'tC�not�A�'veC�have�maynt��A�mayC�may�A�ntC�not�mayntve��A�mayC�may�A�ntC�not�A�veC�have�mayn’t��A�mayC�may�A�n’tC�not�mayn’t’ve��A�mayC�may�A�n’tC�not�A�’veC�have�ma’am��A�ma’amC�madam�might've��A�mightC�might�A�'ve�mightn't��A�mightC�might�A�n'tC�not�mightn't've��A�mightC�might�A�n'tC�not�A�'veC�have�mightnt��A�mightC�might�A�ntC�not�mightntve��A�mightC�might�A�ntC�not�A�veC�have�mightn’t��A�mightC�might�A�n’tC�not�mightn’t’ve��A�mightC�might�A�n’tC�not�A�’veC�have�mightve��A�mightC�might�A�ve�might’ve��A�mightC�might�A�’ve�must've��A�mustC�must�A�'ve�mustn't��A�mustC�must�A�n'tC�not�mustn't've��A�mustC�must�A�n'tC�not�A�'veC�have�mustnt��A�mustC�must�A�ntC�not�mustntve��A�mustC�must�A�ntC�not�A�veC�have�mustn’t��A�mustC�must�A�n’tC�not�mustn’t’ve��A�mustC�must�A�n’tC�not�A�’veC�have�mustve��A�mustC�must�A�ve�must’ve��A�mustC�must�A�’ve�n.��A�n.�needn't��A�needC�need�A�n'tC�not�needn't've��A�needC�need�A�n'tC�not�A�'veC�have�neednt��A�needC�need�A�ntC�not�needntve��A�needC�need�A�ntC�not�A�veC�have�needn’t��A�needC�need�A�n’tC�not�needn’t’ve��A�needC�need�A�n’tC�not�A�’veC�have�not've��A�not�A�'veC�have�nothin��A�nothinC�nothing�nothin'��A�nothin'C�nothing�nothin’��A�nothin’C�nothing�notve��A�not�A�veC�have�not’ve��A�not�A�’veC�have�nuff��A�nuffC�enough�nuthin��A�nuthinC�nothing�nuthin'��A�nuthin'C�nothing�nuthin’��A�nuthin’C�nothing�o'clock��A�o'clockC�o'clock�o.��A�o.�o.0��A�o.0�o.O��A�o.O�o.o��A�o.o�o_0��A�o_0�o_O��A�o_O�o_o��A�o_o�ol��A�olC�old�ol'��A�ol'C�old�ol’��A�ol’C�old�oughtn't��A�oughtC�ought�A�n'tC�not�oughtn't've��A�oughtC�ought�A�n'tC�not�A�'veC�have�oughtnt��A�oughtC�ought�A�ntC�not�oughtntve��A�oughtC�ought�A�ntC�not�A�veC�have�oughtn’t��A�oughtC�ought�A�n’tC�not�oughtn’t’ve��A�oughtC�ought�A�n’tC�not�A�’veC�have�o’clock��A�o’clockC�o'clock�p.��A�p.�p.m.��A�p.m.�q.��A�q.�r.��A�r.�s.��A�s.�shan't��A�shaC�shall�A�n'tC�not�shan't've��A�shaC�shall�A�n'tC�not�A�'veC�have�shant��A�shaC�shall�A�ntC�not�shantve��A�shaC�shall�A�ntC�not�A�veC�have�shan’t��A�shaC�shall�A�n’tC�not�shan’t’ve��A�shaC�shall�A�n’tC�not�A�’veC�have�she'd��A�sheC�she�A�'dC�'d�she'd've��A�sheC�she�A�'dC�would�A�'veC�have�she'll��A�sheC�she�A�'llC�will�she'll've��A�sheC�she�A�'llC�will�A�'veC�have�she's��A�sheC�she�A�'sC�'s�shedve��A�sheC�she�A�dC�would�A�veC�have�shellve��A�sheC�she�A�llC�will�A�veC�have�shes��A�sheC�she�A�s�she’d��A�sheC�she�A�’dC�'d�she’d’ve��A�sheC�she�A�’dC�would�A�’veC�have�she’ll��A�sheC�she�A�’llC�will�she’ll’ve��A�sheC�she�A�’llC�will�A�’veC�have�she’s��A�sheC�she�A�’sC�'s�should've��A�shouldC�should�A�'ve�shouldn't��A�shouldC�should�A�n'tC�not�shouldn't've��A�shouldC�should�A�n'tC�not�A�'veC�have�shouldnt��A�shouldC�should�A�ntC�not�shouldntve��A�shouldC�should�A�ntC�not�A�veC�have�shouldn’t��A�shouldC�should�A�n’tC�not�shouldn’t’ve��A�shouldC�should�A�n’tC�not�A�’veC�have�shouldve��A�shouldC�should�A�ve�should’ve��A�shouldC�should�A�’ve�somethin��A�somethinC�something�somethin'��A�somethin'C�something�somethin’��A�somethin’C�something�t.��A�t.�that'd��A�thatC�that�A�'dC�'d�that'd've��A�thatC�that�A�'dC�would�A�'veC�have�that'll��A�thatC�that�A�'llC�will�that'll've��A�thatC�that�A�'llC�will�A�'veC�have�that's��A�thatC�that�A�'sC�'s�thatd��A�thatC�that�A�dC�'d�thatdve��A�thatC�that�A�dC�would�A�veC�have�thatll��A�thatC�that�A�llC�will�thatllve��A�thatC�that�A�llC�will�A�veC�have�thats��A�thatC�that�A�s�that’d��A�thatC�that�A�’dC�'d�that’d’ve��A�thatC�that�A�’dC�would�A�’veC�have�that’ll��A�thatC�that�A�’llC�will�that’ll’ve��A�thatC�that�A�’llC�will�A�’veC�have�that’s��A�thatC�that�A�’sC�'s�there'd��A�thereC�there�A�'dC�'d�there'd've��A�thereC�there�A�'dC�would�A�'veC�have�there'll��A�thereC�there�A�'llC�will�there'll've��A�thereC�there�A�'llC�will�A�'veC�have�there're��A�thereC�there�A�'reC�are�there's��A�thereC�there�A�'sC�'s�there've��A�thereC�there�A�'ve�thered��A�thereC�there�A�dC�'d�theredve��A�thereC�there�A�dC�would�A�veC�have�therell��A�thereC�there�A�llC�will�therellve��A�thereC�there�A�llC�will�A�veC�have�therere��A�thereC�there�A�reC�are�theres��A�thereC�there�A�s�thereve��A�there�A�veC�have�there’d��A�thereC�there�A�’dC�'d�there’d’ve��A�thereC�there�A�’dC�would�A�’veC�have�there’ll��A�thereC�there�A�’llC�will�there’ll’ve��A�thereC�there�A�’llC�will�A�’veC�have�there’re��A�thereC�there�A�’reC�are�there’s��A�thereC�there�A�’sC�'s�there’ve��A�thereC�there�A�’ve�these'd��A�theseC�these�A�'dC�'d�these'd've��A�theseC�these�A�'dC�would�A�'veC�have�these'll��A�theseC�these�A�'llC�will�these'll've��A�theseC�these�A�'llC�will�A�'veC�have�these're��A�theseC�these�A�'reC�are�these've��A�theseC�these�A�'ve�thesed��A�theseC�these�A�dC�'d�thesedve��A�theseC�these�A�dC�would�A�veC�have�thesell��A�theseC�these�A�llC�will�thesellve��A�theseC�these�A�llC�will�A�veC�have�thesere��A�theseC�these�A�reC�are�theseve��A�these�A�veC�have�these’d��A�theseC�these�A�’dC�'d�these’d’ve��A�theseC�these�A�’dC�would�A�’veC�have�these’ll��A�theseC�these�A�’llC�will�these’ll’ve��A�theseC�these�A�’llC�will�A�’veC�have�these’re��A�theseC�these�A�’reC�are�these’ve��A�theseC�these�A�’ve�they'd��A�theyC�they�A�'dC�'d�they'd've��A�theyC�they�A�'dC�would�A�'veC�have�they'll��A�theyC�they�A�'llC�will�they'll've��A�theyC�they�A�'llC�will�A�'veC�have�they're��A�theyC�they�A�'reC�are�they've��A�theyC�they�A�'veC�have�theyd��A�theyC�they�A�dC�'d�theydve��A�theyC�they�A�dC�would�A�veC�have�theyll��A�theyC�they�A�llC�will�theyllve��A�theyC�they�A�llC�will�A�veC�have�theyre��A�theyC�they�A�reC�are�theyve��A�theyC�they�A�veC�have�they’d��A�theyC�they�A�’dC�'d�they’d’ve��A�theyC�they�A�’dC�would�A�’veC�have�they’ll��A�theyC�they�A�’llC�will�they’ll’ve��A�theyC�they�A�’llC�will�A�’veC�have�they’re��A�theyC�they�A�’reC�are�they’ve��A�theyC�they�A�’veC�have�this'd��A�thisC�this�A�'dC�'d�this'd've��A�thisC�this�A�'dC�would�A�'veC�have�this'll��A�thisC�this�A�'llC�will�this'll've��A�thisC�this�A�'llC�will�A�'veC�have�this's��A�thisC�this�A�'sC�'s�thisd��A�thisC�this�A�dC�'d�thisdve��A�thisC�this�A�dC�would�A�veC�have�thisll��A�thisC�this�A�llC�will�thisllve��A�thisC�this�A�llC�will�A�veC�have�thiss��A�thisC�this�A�s�this’d��A�thisC�this�A�’dC�'d�this’d’ve��A�thisC�this�A�’dC�would�A�’veC�have�this’ll��A�thisC�this�A�’llC�will�this’ll’ve��A�thisC�this�A�’llC�will�A�’veC�have�this’s��A�thisC�this�A�’sC�'s�those'd��A�thoseC�those�A�'dC�'d�those'd've��A�thoseC�those�A�'dC�would�A�'veC�have�those'll��A�thoseC�those�A�'llC�will�those'll've��A�thoseC�those�A�'llC�will�A�'veC�have�those're��A�thoseC�those�A�'reC�are�those've��A�thoseC�those�A�'ve�thosed��A�thoseC�those�A�dC�'d�thosedve��A�thoseC�those�A�dC�would�A�veC�have�thosell��A�thoseC�those�A�llC�will�thosellve��A�thoseC�those�A�llC�will�A�veC�have�thosere��A�thoseC�those�A�reC�are�thoseve��A�those�A�veC�have�those’d��A�thoseC�those�A�’dC�'d�those’d’ve��A�thoseC�those�A�’dC�would�A�’veC�have�those’ll��A�thoseC�those�A�’llC�will�those’ll’ve��A�thoseC�those�A�’llC�will�A�’veC�have�those’re��A�thoseC�those�A�’reC�are�those’ve��A�thoseC�those�A�’ve�u.��A�u.�v.��A�v.�v.s.��A�v.s.�v.v��A�v.v�v_v��A�v_v�vs.��A�vs.�w.��A�w.�w/o��A�w/oC�without�wasn't��A�wasC�was�A�n'tC�not�wasnt��A�wasC�was�A�ntC�not�wasn’t��A�wasC�was�A�n’tC�not�we'd��A�weC�we�A�'dC�'d�we'd've��A�weC�we�A�'dC�would�A�'veC�have�we'll��A�weC�we�A�'llC�will�we'll've��A�weC�we�A�'llC�will�A�'veC�have�we're��A�weC�we�A�'reC�are�we've��A�weC�we�A�'veC�have�wed��A�weC�we�A�dC�'d�wedve��A�weC�we�A�dC�would�A�veC�have�wellve��A�weC�we�A�llC�will�A�veC�have�weren't��A�wereC�were�A�n'tC�not�werent��A�wereC�were�A�ntC�not�weren’t��A�wereC�were�A�n’tC�not�weve��A�weC�we�A�veC�have�we’d��A�weC�we�A�’dC�'d�we’d’ve��A�weC�we�A�’dC�would�A�’veC�have�we’ll��A�weC�we�A�’llC�will�we’ll’ve��A�weC�we�A�’llC�will�A�’veC�have�we’re��A�weC�we�A�’reC�are�we’ve��A�weC�we�A�’veC�have�what'd��A�whatC�what�A�'dC�'d�what'd've��A�whatC�what�A�'dC�would�A�'veC�have�what'll��A�whatC�what�A�'llC�will�what'll've��A�whatC�what�A�'llC�will�A�'veC�have�what're��A�whatC�what�A�'reC�are�what's��A�whatC�what�A�'sC�'s�what've��A�whatC�what�A�'ve�whatd��A�whatC�what�A�dC�'d�whatdve��A�whatC�what�A�dC�would�A�veC�have�whatll��A�whatC�what�A�llC�will�whatllve��A�whatC�what�A�llC�will�A�veC�have�whatre��A�whatC�what�A�reC�are�whats��A�whatC�what�A�s�whatve��A�what�A�veC�have�what’d��A�whatC�what�A�’dC�'d�what’d’ve��A�whatC�what�A�’dC�would�A�’veC�have�what’ll��A�whatC�what�A�’llC�will�what’ll’ve��A�whatC�what�A�’llC�will�A�’veC�have�what’re��A�whatC�what�A�’reC�are�what’s��A�whatC�what�A�’sC�'s�what’ve��A�whatC�what�A�’ve�when'd��A�whenC�when�A�'dC�'d�when'd've��A�whenC�when�A�'dC�would�A�'veC�have�when'll��A�whenC�when�A�'llC�will�when'll've��A�whenC�when�A�'llC�will�A�'veC�have�when're��A�whenC�when�A�'reC�are�when's��A�whenC�when�A�'sC�'s�when've��A�whenC�when�A�'ve�whend��A�whenC�when�A�dC�'d�whendve��A�whenC�when�A�dC�would�A�veC�have�whenll��A�whenC�when�A�llC�will�whenllve��A�whenC�when�A�llC�will�A�veC�have�whenre��A�whenC�when�A�reC�are�whens��A�whenC�when�A�s�whenve��A�when�A�veC�have�when’d��A�whenC�when�A�’dC�'d�when’d’ve��A�whenC�when�A�’dC�would�A�’veC�have�when’ll��A�whenC�when�A�’llC�will�when’ll’ve��A�whenC�when�A�’llC�will�A�’veC�have�when’re��A�whenC�when�A�’reC�are�when’s��A�whenC�when�A�’sC�'s�when’ve��A�whenC�when�A�’ve�where'd��A�whereC�where�A�'dC�'d�where'd've��A�whereC�where�A�'dC�would�A�'veC�have�where'll��A�whereC�where�A�'llC�will�where'll've��A�whereC�where�A�'llC�will�A�'veC�have�where're��A�whereC�where�A�'reC�are�where's��A�whereC�where�A�'sC�'s�where've��A�whereC�where�A�'ve�whered��A�whereC�where�A�dC�'d�wheredve��A�whereC�where�A�dC�would�A�veC�have�wherell��A�whereC�where�A�llC�will�wherellve��A�whereC�where�A�llC�will�A�veC�have�wherere��A�whereC�where�A�reC�are�wheres��A�whereC�where�A�s�whereve��A�where�A�veC�have�where’d��A�whereC�where�A�’dC�'d�where’d’ve��A�whereC�where�A�’dC�would�A�’veC�have�where’ll��A�whereC�where�A�’llC�will�where’ll’ve��A�whereC�where�A�’llC�will�A�’veC�have�where’re��A�whereC�where�A�’reC�are�where’s��A�whereC�where�A�’sC�'s�where’ve��A�whereC�where�A�’ve�who'd��A�whoC�who�A�'dC�'d�who'd've��A�whoC�who�A�'dC�would�A�'veC�have�who'll��A�whoC�who�A�'llC�will�who'll've��A�whoC�who�A�'llC�will�A�'veC�have�who're��A�whoC�who�A�'reC�are�who's��A�whoC�who�A�'sC�'s�who've��A�whoC�who�A�'ve�whod��A�whoC�who�A�dC�'d�whodve��A�whoC�who�A�dC�would�A�veC�have�wholl��A�whoC�who�A�llC�will�whollve��A�whoC�who�A�llC�will�A�veC�have�whos��A�whoC�who�A�s�whove��A�who�A�veC�have�who’d��A�whoC�who�A�’dC�'d�who’d’ve��A�whoC�who�A�’dC�would�A�’veC�have�who’ll��A�whoC�who�A�’llC�will�who’ll’ve��A�whoC�who�A�’llC�will�A�’veC�have�who’re��A�whoC�who�A�’reC�are�who’s��A�whoC�who�A�’sC�'s�who’ve��A�whoC�who�A�’ve�why'd��A�whyC�why�A�'dC�'d�why'd've��A�whyC�why�A�'dC�would�A�'veC�have�why'll��A�whyC�why�A�'llC�will�why'll've��A�whyC�why�A�'llC�will�A�'veC�have�why're��A�whyC�why�A�'reC�are�why's��A�whyC�why�A�'sC�'s�why've��A�whyC�why�A�'ve�whyd��A�whyC�why�A�dC�'d�whydve��A�whyC�why�A�dC�would�A�veC�have�whyll��A�whyC�why�A�llC�will�whyllve��A�whyC�why�A�llC�will�A�veC�have�whyre��A�whyC�why�A�reC�are�whys��A�whyC�why�A�s�whyve��A�why�A�veC�have�why’d��A�whyC�why�A�’dC�'d�why’d’ve��A�whyC�why�A�’dC�would�A�’veC�have�why’ll��A�whyC�why�A�’llC�will�why’ll’ve��A�whyC�why�A�’llC�will�A�’veC�have�why’re��A�whyC�why�A�’reC�are�why’s��A�whyC�why�A�’sC�'s�why’ve��A�whyC�why�A�’ve�won't��A�woC�will�A�n'tC�not�won't've��A�woC�will�A�n'tC�not�A�'veC�have�wont��A�woC�will�A�ntC�not�wontve��A�woC�will�A�ntC�not�A�veC�have�won’t��A�woC�will�A�n’tC�not�won’t’ve��A�woC�will�A�n’tC�not�A�’veC�have�would've��A�wouldC�would�A�'ve�wouldn't��A�wouldC�would�A�n'tC�not�wouldn't've��A�wouldC�would�A�n'tC�not�A�'veC�have�wouldnt��A�wouldC�would�A�ntC�not�wouldntve��A�wouldC�would�A�ntC�not�A�veC�have�wouldn’t��A�wouldC�would�A�n’tC�not�wouldn’t’ve��A�wouldC�would�A�n’tC�not�A�’veC�have�wouldve��A�wouldC�would�A�ve�would’ve��A�wouldC�would�A�’ve�x.��A�x.�xD��A�xD�xDD��A�xDD�y'all��A�y'C�you�A�all�y.��A�y.�yall��A�yC�you�A�all�you'd��A�youC�you�A�'dC�'d�you'd've��A�youC�you�A�'dC�would�A�'veC�have�you'll��A�youC�you�A�'llC�will�you'll've��A�youC�you�A�'llC�will�A�'veC�have�you're��A�youC�you�A�'reC�are�you've��A�youC�you�A�'veC�have�youd��A�youC�you�A�dC�'d�youdve��A�youC�you�A�dC�would�A�veC�have�youll��A�youC�you�A�llC�will�youllve��A�youC�you�A�llC�will�A�veC�have�youre��A�youC�you�A�reC�are�youve��A�youC�you�A�veC�have�you’d��A�youC�you�A�’dC�'d�you’d’ve��A�youC�you�A�’dC�would�A�’veC�have�you’ll��A�youC�you�A�’llC�will�you’ll’ve��A�youC�you�A�’llC�will�A�’veC�have�you’re��A�youC�you�A�’reC�are�you’ve��A�youC�you�A�’veC�have�y’all��A�y’C�you�A�all�z.��A�z.� ��A� C� �¯\(ツ)/¯��A�¯\(ツ)/¯�°C.��A�°�A�C�A�.�°F.��A�°�A�F�A�.�°K.��A�°�A�K�A�.�°c.��A�°�A�c�A�.�°f.��A�°�A�f�A�.�°k.��A�°�A�k�A�.�ä.��A�ä.�ö.��A�ö.�ü.��A�ü.�ಠ_ಠ��A�ಠ_ಠ�ಠ︵ಠ��A�ಠ︵ಠ�—��A�—�‘S��A�‘SC�'s�‘s��A�‘sC�'s�’��A�’�’Cause��A�’CauseC�because�’Cos��A�’CosC�because�’Coz��A�’CozC�because�’Cuz��A�’CuzC�because�’S��A�’SC�'s�’bout��A�’boutC�about�’cause��A�’causeC�because�’cos��A�’cosC�because�’coz��A�’cozC�because�’cuz��A�’cuzC�because�’d��A�’d�’em��A�’emC�them�’ll��A�’llC�will�’nuff��A�’nuffC�enough�’re��A�’reC�are�’s��A�’sC�'s�’’��A�’’�faster_heuristics�
|
vocab/key2row
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
�
|
vocab/lookups.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:76be8b528d0075f7aae98d6fa57a6d3c83ae480a8469e668d7b0af968995ac71
|
| 3 |
+
size 1
|
vocab/strings.json
ADDED
|
@@ -0,0 +1,3055 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
"\t",
|
| 3 |
+
"\n",
|
| 4 |
+
"\n\n",
|
| 5 |
+
" ",
|
| 6 |
+
" ",
|
| 7 |
+
"\"",
|
| 8 |
+
"%",
|
| 9 |
+
"'",
|
| 10 |
+
"''",
|
| 11 |
+
"'-(",
|
| 12 |
+
"'-)",
|
| 13 |
+
"'Cause",
|
| 14 |
+
"'Cos",
|
| 15 |
+
"'Coz",
|
| 16 |
+
"'Cuz",
|
| 17 |
+
"'S",
|
| 18 |
+
"'X",
|
| 19 |
+
"'Xxx",
|
| 20 |
+
"'Xxxxx",
|
| 21 |
+
"'am",
|
| 22 |
+
"'bout",
|
| 23 |
+
"'cause",
|
| 24 |
+
"'cos",
|
| 25 |
+
"'coz",
|
| 26 |
+
"'cuz",
|
| 27 |
+
"'d",
|
| 28 |
+
"'em",
|
| 29 |
+
"'ll",
|
| 30 |
+
"'m",
|
| 31 |
+
"'nuff",
|
| 32 |
+
"'re",
|
| 33 |
+
"'s",
|
| 34 |
+
"'ve",
|
| 35 |
+
"'x",
|
| 36 |
+
"'xx",
|
| 37 |
+
"'xxx",
|
| 38 |
+
"'xxxx",
|
| 39 |
+
"'y",
|
| 40 |
+
"(",
|
| 41 |
+
"(((",
|
| 42 |
+
"(*>",
|
| 43 |
+
"(*_*)",
|
| 44 |
+
"(-8",
|
| 45 |
+
"(-:",
|
| 46 |
+
"(-;",
|
| 47 |
+
"(-_-)",
|
| 48 |
+
"(-d",
|
| 49 |
+
"(._.)",
|
| 50 |
+
"(:",
|
| 51 |
+
"(;",
|
| 52 |
+
"(=",
|
| 53 |
+
"(>_<)",
|
| 54 |
+
"(^_^)",
|
| 55 |
+
"(o:",
|
| 56 |
+
"(x:",
|
| 57 |
+
"(x_x)",
|
| 58 |
+
"(\u00ac_\u00ac)",
|
| 59 |
+
"(\u0ca0_\u0ca0)",
|
| 60 |
+
"(\u256f\u00b0\u25a1\u00b0\uff09\u256f\ufe35\u253b\u2501\u253b",
|
| 61 |
+
")",
|
| 62 |
+
")))",
|
| 63 |
+
")-:",
|
| 64 |
+
")/\u00af",
|
| 65 |
+
"):",
|
| 66 |
+
"*",
|
| 67 |
+
",",
|
| 68 |
+
"-",
|
| 69 |
+
"-((",
|
| 70 |
+
"-))",
|
| 71 |
+
"-/",
|
| 72 |
+
"-0",
|
| 73 |
+
"-3",
|
| 74 |
+
"-8",
|
| 75 |
+
"-D",
|
| 76 |
+
"-O",
|
| 77 |
+
"-P",
|
| 78 |
+
"-X",
|
| 79 |
+
"-_-",
|
| 80 |
+
"-__-",
|
| 81 |
+
"-d",
|
| 82 |
+
"-o",
|
| 83 |
+
"-p",
|
| 84 |
+
"-x",
|
| 85 |
+
"-|",
|
| 86 |
+
".",
|
| 87 |
+
".C.",
|
| 88 |
+
".D.",
|
| 89 |
+
".E.",
|
| 90 |
+
".G.",
|
| 91 |
+
".H.",
|
| 92 |
+
".J.",
|
| 93 |
+
".M.",
|
| 94 |
+
".Y.",
|
| 95 |
+
".[1",
|
| 96 |
+
".[2",
|
| 97 |
+
".[3",
|
| 98 |
+
".[5",
|
| 99 |
+
".[6",
|
| 100 |
+
".[8",
|
| 101 |
+
".[9",
|
| 102 |
+
"._.",
|
| 103 |
+
".e.",
|
| 104 |
+
".g.",
|
| 105 |
+
".m.",
|
| 106 |
+
".s.",
|
| 107 |
+
"/",
|
| 108 |
+
"/3",
|
| 109 |
+
"/d",
|
| 110 |
+
"/or",
|
| 111 |
+
"0",
|
| 112 |
+
"0.0",
|
| 113 |
+
"0.o",
|
| 114 |
+
"000",
|
| 115 |
+
"003",
|
| 116 |
+
"006",
|
| 117 |
+
"011",
|
| 118 |
+
"0_0",
|
| 119 |
+
"0_o",
|
| 120 |
+
"1",
|
| 121 |
+
"10",
|
| 122 |
+
"10a.m",
|
| 123 |
+
"10a.m.",
|
| 124 |
+
"10p.m",
|
| 125 |
+
"10p.m.",
|
| 126 |
+
"11",
|
| 127 |
+
"11a.m",
|
| 128 |
+
"11a.m.",
|
| 129 |
+
"11p.m",
|
| 130 |
+
"11p.m.",
|
| 131 |
+
"12",
|
| 132 |
+
"12a.m",
|
| 133 |
+
"12a.m.",
|
| 134 |
+
"12p.m",
|
| 135 |
+
"12p.m.",
|
| 136 |
+
"13",
|
| 137 |
+
"151",
|
| 138 |
+
"152",
|
| 139 |
+
"153",
|
| 140 |
+
"154",
|
| 141 |
+
"155",
|
| 142 |
+
"15\u201320",
|
| 143 |
+
"160",
|
| 144 |
+
"161",
|
| 145 |
+
"162",
|
| 146 |
+
"164",
|
| 147 |
+
"165",
|
| 148 |
+
"17",
|
| 149 |
+
"184",
|
| 150 |
+
"185",
|
| 151 |
+
"1880s.[1][2",
|
| 152 |
+
"19",
|
| 153 |
+
"1956",
|
| 154 |
+
"1959",
|
| 155 |
+
"1967",
|
| 156 |
+
"1982\u20131995",
|
| 157 |
+
"1997\u20132006",
|
| 158 |
+
"1a.m",
|
| 159 |
+
"1a.m.",
|
| 160 |
+
"1p.m",
|
| 161 |
+
"1p.m.",
|
| 162 |
+
"2",
|
| 163 |
+
"2003",
|
| 164 |
+
"2005.[161",
|
| 165 |
+
"2005\u201306",
|
| 166 |
+
"2011",
|
| 167 |
+
"24",
|
| 168 |
+
"25",
|
| 169 |
+
"2a.m",
|
| 170 |
+
"2a.m.",
|
| 171 |
+
"2p.m",
|
| 172 |
+
"2p.m.",
|
| 173 |
+
"3",
|
| 174 |
+
"30",
|
| 175 |
+
"33",
|
| 176 |
+
"333",
|
| 177 |
+
"3N2",
|
| 178 |
+
"3a.m",
|
| 179 |
+
"3a.m.",
|
| 180 |
+
"3n2",
|
| 181 |
+
"3p.m",
|
| 182 |
+
"3p.m.",
|
| 183 |
+
"4",
|
| 184 |
+
"4a.m",
|
| 185 |
+
"4a.m.",
|
| 186 |
+
"4p.m",
|
| 187 |
+
"4p.m.",
|
| 188 |
+
"5",
|
| 189 |
+
"50",
|
| 190 |
+
"5a.m",
|
| 191 |
+
"5a.m.",
|
| 192 |
+
"5p.m",
|
| 193 |
+
"5p.m.",
|
| 194 |
+
"5\u201310",
|
| 195 |
+
"6",
|
| 196 |
+
"6a.m",
|
| 197 |
+
"6a.m.",
|
| 198 |
+
"6p.m",
|
| 199 |
+
"6p.m.",
|
| 200 |
+
"6\u201312",
|
| 201 |
+
"7",
|
| 202 |
+
"7a.m",
|
| 203 |
+
"7a.m.",
|
| 204 |
+
"7p.m",
|
| 205 |
+
"7p.m.",
|
| 206 |
+
"8",
|
| 207 |
+
"8)",
|
| 208 |
+
"8,000",
|
| 209 |
+
"8-",
|
| 210 |
+
"8-)",
|
| 211 |
+
"8-D",
|
| 212 |
+
"8-d",
|
| 213 |
+
"8D",
|
| 214 |
+
"8a.m",
|
| 215 |
+
"8a.m.",
|
| 216 |
+
"8d",
|
| 217 |
+
"8p.m",
|
| 218 |
+
"8p.m.",
|
| 219 |
+
"9",
|
| 220 |
+
"90",
|
| 221 |
+
"91",
|
| 222 |
+
"956",
|
| 223 |
+
"959",
|
| 224 |
+
"967",
|
| 225 |
+
"995",
|
| 226 |
+
"9a.m",
|
| 227 |
+
"9a.m.",
|
| 228 |
+
"9p.m",
|
| 229 |
+
"9p.m.",
|
| 230 |
+
":",
|
| 231 |
+
":'(",
|
| 232 |
+
":')",
|
| 233 |
+
":'-(",
|
| 234 |
+
":'-)",
|
| 235 |
+
":(",
|
| 236 |
+
":((",
|
| 237 |
+
":(((",
|
| 238 |
+
":()",
|
| 239 |
+
":)",
|
| 240 |
+
":))",
|
| 241 |
+
":)))",
|
| 242 |
+
":*",
|
| 243 |
+
":-(",
|
| 244 |
+
":-((",
|
| 245 |
+
":-(((",
|
| 246 |
+
":-)",
|
| 247 |
+
":-))",
|
| 248 |
+
":-)))",
|
| 249 |
+
":-*",
|
| 250 |
+
":-/",
|
| 251 |
+
":-0",
|
| 252 |
+
":-3",
|
| 253 |
+
":->",
|
| 254 |
+
":-D",
|
| 255 |
+
":-O",
|
| 256 |
+
":-P",
|
| 257 |
+
":-X",
|
| 258 |
+
":-]",
|
| 259 |
+
":-d",
|
| 260 |
+
":-o",
|
| 261 |
+
":-p",
|
| 262 |
+
":-x",
|
| 263 |
+
":-|",
|
| 264 |
+
":-}",
|
| 265 |
+
":/",
|
| 266 |
+
":0",
|
| 267 |
+
":1",
|
| 268 |
+
":3",
|
| 269 |
+
":>",
|
| 270 |
+
":D",
|
| 271 |
+
":O",
|
| 272 |
+
":P",
|
| 273 |
+
":X",
|
| 274 |
+
":]",
|
| 275 |
+
":d",
|
| 276 |
+
":o",
|
| 277 |
+
":o)",
|
| 278 |
+
":p",
|
| 279 |
+
":x",
|
| 280 |
+
":x)",
|
| 281 |
+
":|",
|
| 282 |
+
":}",
|
| 283 |
+
":\u2019(",
|
| 284 |
+
":\u2019)",
|
| 285 |
+
":\u2019-(",
|
| 286 |
+
":\u2019-)",
|
| 287 |
+
";",
|
| 288 |
+
";)",
|
| 289 |
+
";-)",
|
| 290 |
+
";-D",
|
| 291 |
+
";-X",
|
| 292 |
+
";-d",
|
| 293 |
+
";D",
|
| 294 |
+
";X",
|
| 295 |
+
";_;",
|
| 296 |
+
";d",
|
| 297 |
+
"<",
|
| 298 |
+
"<.<",
|
| 299 |
+
"</3",
|
| 300 |
+
"</d",
|
| 301 |
+
"<3",
|
| 302 |
+
"<33",
|
| 303 |
+
"<333",
|
| 304 |
+
"<d",
|
| 305 |
+
"<dd",
|
| 306 |
+
"<ddd",
|
| 307 |
+
"<space>",
|
| 308 |
+
"<xxxx>",
|
| 309 |
+
"=",
|
| 310 |
+
"=(",
|
| 311 |
+
"=)",
|
| 312 |
+
"=/",
|
| 313 |
+
"=3",
|
| 314 |
+
"=D",
|
| 315 |
+
"=X",
|
| 316 |
+
"=[",
|
| 317 |
+
"=]",
|
| 318 |
+
"=d",
|
| 319 |
+
"=|",
|
| 320 |
+
">",
|
| 321 |
+
">.<",
|
| 322 |
+
">.>",
|
| 323 |
+
">:(",
|
| 324 |
+
">:o",
|
| 325 |
+
">:x",
|
| 326 |
+
"><(((*>",
|
| 327 |
+
"@",
|
| 328 |
+
"@_@",
|
| 329 |
+
"A",
|
| 330 |
+
"ACR50",
|
| 331 |
+
"ADHD",
|
| 332 |
+
"AIDS",
|
| 333 |
+
"ARD",
|
| 334 |
+
"ARS",
|
| 335 |
+
"ART",
|
| 336 |
+
"About",
|
| 337 |
+
"Adm",
|
| 338 |
+
"Adm.",
|
| 339 |
+
"Adverse",
|
| 340 |
+
"Africa",
|
| 341 |
+
"Agents",
|
| 342 |
+
"Ai",
|
| 343 |
+
"Ak",
|
| 344 |
+
"Ak.",
|
| 345 |
+
"Ala",
|
| 346 |
+
"Ala.",
|
| 347 |
+
"Alabama",
|
| 348 |
+
"Alaska",
|
| 349 |
+
"All",
|
| 350 |
+
"Although",
|
| 351 |
+
"America",
|
| 352 |
+
"American",
|
| 353 |
+
"An",
|
| 354 |
+
"Another",
|
| 355 |
+
"Anti",
|
| 356 |
+
"Antiretroviral",
|
| 357 |
+
"Apr",
|
| 358 |
+
"Apr.",
|
| 359 |
+
"April",
|
| 360 |
+
"Are",
|
| 361 |
+
"Ariz",
|
| 362 |
+
"Ariz.",
|
| 363 |
+
"Arizona",
|
| 364 |
+
"Ark",
|
| 365 |
+
"Ark.",
|
| 366 |
+
"Arkansas",
|
| 367 |
+
"As",
|
| 368 |
+
"Asia",
|
| 369 |
+
"Aug",
|
| 370 |
+
"Aug.",
|
| 371 |
+
"August",
|
| 372 |
+
"Australia",
|
| 373 |
+
"B",
|
| 374 |
+
"Bacteria",
|
| 375 |
+
"Bacterial",
|
| 376 |
+
"Barr",
|
| 377 |
+
"Bats",
|
| 378 |
+
"Biological",
|
| 379 |
+
"Bismol",
|
| 380 |
+
"Bites",
|
| 381 |
+
"Bros",
|
| 382 |
+
"Bros.",
|
| 383 |
+
"Brucella",
|
| 384 |
+
"Bunyaviridae",
|
| 385 |
+
"Buprenorphine",
|
| 386 |
+
"Bupropion",
|
| 387 |
+
"But",
|
| 388 |
+
"C",
|
| 389 |
+
"C'm",
|
| 390 |
+
"C++",
|
| 391 |
+
"C.",
|
| 392 |
+
"CDC",
|
| 393 |
+
"CR",
|
| 394 |
+
"Ca",
|
| 395 |
+
"Calif",
|
| 396 |
+
"Calif.",
|
| 397 |
+
"California",
|
| 398 |
+
"Campylobacter",
|
| 399 |
+
"Can",
|
| 400 |
+
"Canada",
|
| 401 |
+
"Carbamazepine",
|
| 402 |
+
"Cause",
|
| 403 |
+
"Cellulitis",
|
| 404 |
+
"China",
|
| 405 |
+
"Co",
|
| 406 |
+
"Co.",
|
| 407 |
+
"CoV",
|
| 408 |
+
"Colo",
|
| 409 |
+
"Colo.",
|
| 410 |
+
"Colorado",
|
| 411 |
+
"Common",
|
| 412 |
+
"Complications",
|
| 413 |
+
"Conn",
|
| 414 |
+
"Conn.",
|
| 415 |
+
"Connecticut",
|
| 416 |
+
"Corp",
|
| 417 |
+
"Corp.",
|
| 418 |
+
"Cos",
|
| 419 |
+
"Cote",
|
| 420 |
+
"Could",
|
| 421 |
+
"Coz",
|
| 422 |
+
"Cuz",
|
| 423 |
+
"C\u2019m",
|
| 424 |
+
"D",
|
| 425 |
+
"D.",
|
| 426 |
+
"D.C.",
|
| 427 |
+
"DHD",
|
| 428 |
+
"DMARD",
|
| 429 |
+
"DMARDs",
|
| 430 |
+
"DMARDs.[8",
|
| 431 |
+
"Dare",
|
| 432 |
+
"Dec",
|
| 433 |
+
"Dec.",
|
| 434 |
+
"December",
|
| 435 |
+
"Del",
|
| 436 |
+
"Del.",
|
| 437 |
+
"Delaware",
|
| 438 |
+
"Diarrhea",
|
| 439 |
+
"Did",
|
| 440 |
+
"Diosmectite",
|
| 441 |
+
"Disease",
|
| 442 |
+
"Do",
|
| 443 |
+
"Does",
|
| 444 |
+
"Doin",
|
| 445 |
+
"Doin'",
|
| 446 |
+
"Doin\u2019",
|
| 447 |
+
"Dr",
|
| 448 |
+
"Dr.",
|
| 449 |
+
"E",
|
| 450 |
+
"E.G.",
|
| 451 |
+
"E.g",
|
| 452 |
+
"E.g.",
|
| 453 |
+
"Each",
|
| 454 |
+
"Ebola",
|
| 455 |
+
"Epstein",
|
| 456 |
+
"Erysipelas",
|
| 457 |
+
"Escherichia",
|
| 458 |
+
"Europe",
|
| 459 |
+
"European",
|
| 460 |
+
"Examples",
|
| 461 |
+
"Extrapulmonary",
|
| 462 |
+
"F",
|
| 463 |
+
"F.",
|
| 464 |
+
"FDA",
|
| 465 |
+
"Feb",
|
| 466 |
+
"Feb.",
|
| 467 |
+
"February",
|
| 468 |
+
"Fla",
|
| 469 |
+
"Fla.",
|
| 470 |
+
"Florida",
|
| 471 |
+
"For",
|
| 472 |
+
"Francisella",
|
| 473 |
+
"G",
|
| 474 |
+
"GEN",
|
| 475 |
+
"Ga",
|
| 476 |
+
"Ga.",
|
| 477 |
+
"Gabapentin",
|
| 478 |
+
"Gen",
|
| 479 |
+
"Gen.",
|
| 480 |
+
"General",
|
| 481 |
+
"Georgia",
|
| 482 |
+
"Goin",
|
| 483 |
+
"Goin'",
|
| 484 |
+
"Goin\u2019",
|
| 485 |
+
"Gon",
|
| 486 |
+
"Got",
|
| 487 |
+
"Gov",
|
| 488 |
+
"Gov.",
|
| 489 |
+
"H",
|
| 490 |
+
"H3N2",
|
| 491 |
+
"HAQ",
|
| 492 |
+
"HHV6",
|
| 493 |
+
"HIV",
|
| 494 |
+
"HIV.[53",
|
| 495 |
+
"HV6",
|
| 496 |
+
"Had",
|
| 497 |
+
"Hansen",
|
| 498 |
+
"Hantaviruses",
|
| 499 |
+
"Has",
|
| 500 |
+
"Have",
|
| 501 |
+
"Havin",
|
| 502 |
+
"Havin'",
|
| 503 |
+
"Havin\u2019",
|
| 504 |
+
"He",
|
| 505 |
+
"He's",
|
| 506 |
+
"Health",
|
| 507 |
+
"He\u2019s",
|
| 508 |
+
"How",
|
| 509 |
+
"How's",
|
| 510 |
+
"However",
|
| 511 |
+
"How\u2019s",
|
| 512 |
+
"Hydroxychloroquine",
|
| 513 |
+
"I",
|
| 514 |
+
"I.E.",
|
| 515 |
+
"I.e",
|
| 516 |
+
"I.e.",
|
| 517 |
+
"IDS",
|
| 518 |
+
"IDs",
|
| 519 |
+
"IMA",
|
| 520 |
+
"INE",
|
| 521 |
+
"ION",
|
| 522 |
+
"Ia",
|
| 523 |
+
"Ia.",
|
| 524 |
+
"Id",
|
| 525 |
+
"Id.",
|
| 526 |
+
"Idaho",
|
| 527 |
+
"If",
|
| 528 |
+
"Ill",
|
| 529 |
+
"Ill.",
|
| 530 |
+
"Illinois",
|
| 531 |
+
"Impetigo",
|
| 532 |
+
"In",
|
| 533 |
+
"Inc",
|
| 534 |
+
"Inc.",
|
| 535 |
+
"Ind",
|
| 536 |
+
"Ind.",
|
| 537 |
+
"Indiana",
|
| 538 |
+
"Influenza",
|
| 539 |
+
"Iowa",
|
| 540 |
+
"Is",
|
| 541 |
+
"It",
|
| 542 |
+
"It's",
|
| 543 |
+
"Its",
|
| 544 |
+
"It\u2019s",
|
| 545 |
+
"J",
|
| 546 |
+
"Jan",
|
| 547 |
+
"Jan.",
|
| 548 |
+
"January",
|
| 549 |
+
"Jr",
|
| 550 |
+
"Jr.",
|
| 551 |
+
"Jul",
|
| 552 |
+
"Jul.",
|
| 553 |
+
"July",
|
| 554 |
+
"Jun",
|
| 555 |
+
"Jun.",
|
| 556 |
+
"June",
|
| 557 |
+
"K",
|
| 558 |
+
"K.",
|
| 559 |
+
"Kan",
|
| 560 |
+
"Kan.",
|
| 561 |
+
"Kans",
|
| 562 |
+
"Kans.",
|
| 563 |
+
"Kansas",
|
| 564 |
+
"Kentucky",
|
| 565 |
+
"Ky",
|
| 566 |
+
"Ky.",
|
| 567 |
+
"L",
|
| 568 |
+
"La",
|
| 569 |
+
"La.",
|
| 570 |
+
"Lactobacilli",
|
| 571 |
+
"Latent",
|
| 572 |
+
"Leflunomide",
|
| 573 |
+
"Legionella",
|
| 574 |
+
"Leone",
|
| 575 |
+
"Let",
|
| 576 |
+
"Let's",
|
| 577 |
+
"Let\u2019s",
|
| 578 |
+
"Listeria",
|
| 579 |
+
"Loose",
|
| 580 |
+
"Louisiana",
|
| 581 |
+
"Lovin",
|
| 582 |
+
"Lovin'",
|
| 583 |
+
"Lovin\u2019",
|
| 584 |
+
"Ltd",
|
| 585 |
+
"Ltd.",
|
| 586 |
+
"M",
|
| 587 |
+
"M2",
|
| 588 |
+
"MAOIs",
|
| 589 |
+
"MEDICALCONDITION",
|
| 590 |
+
"MEDICINE",
|
| 591 |
+
"MOUV",
|
| 592 |
+
"Ma'am",
|
| 593 |
+
"Magboi",
|
| 594 |
+
"Many",
|
| 595 |
+
"Mar",
|
| 596 |
+
"Mar.",
|
| 597 |
+
"March",
|
| 598 |
+
"Mass",
|
| 599 |
+
"Mass.",
|
| 600 |
+
"Massachusetts",
|
| 601 |
+
"May",
|
| 602 |
+
"Ma\u2019am",
|
| 603 |
+
"Md",
|
| 604 |
+
"Md.",
|
| 605 |
+
"Measured",
|
| 606 |
+
"Messrs",
|
| 607 |
+
"Messrs.",
|
| 608 |
+
"Methotrexate",
|
| 609 |
+
"Mich",
|
| 610 |
+
"Mich.",
|
| 611 |
+
"Michigan",
|
| 612 |
+
"Might",
|
| 613 |
+
"Miliary",
|
| 614 |
+
"Minn",
|
| 615 |
+
"Minn.",
|
| 616 |
+
"Minnesota",
|
| 617 |
+
"Miss",
|
| 618 |
+
"Miss.",
|
| 619 |
+
"Mississippi",
|
| 620 |
+
"Mo",
|
| 621 |
+
"Mo.",
|
| 622 |
+
"Moclobemide",
|
| 623 |
+
"Mont",
|
| 624 |
+
"Mont.",
|
| 625 |
+
"More",
|
| 626 |
+
"Most",
|
| 627 |
+
"Mount",
|
| 628 |
+
"Mouyassu\u00e9",
|
| 629 |
+
"Mr",
|
| 630 |
+
"Mr.",
|
| 631 |
+
"Mrs",
|
| 632 |
+
"Mrs.",
|
| 633 |
+
"Ms",
|
| 634 |
+
"Ms.",
|
| 635 |
+
"Mt",
|
| 636 |
+
"Mt.",
|
| 637 |
+
"Much",
|
| 638 |
+
"Must",
|
| 639 |
+
"Mycobacterium",
|
| 640 |
+
"N",
|
| 641 |
+
"N.C.",
|
| 642 |
+
"N.D.",
|
| 643 |
+
"N.H.",
|
| 644 |
+
"N.J.",
|
| 645 |
+
"N.M.",
|
| 646 |
+
"N.Y.",
|
| 647 |
+
"NRI",
|
| 648 |
+
"NSAIDs",
|
| 649 |
+
"Neb",
|
| 650 |
+
"Neb.",
|
| 651 |
+
"Nebr",
|
| 652 |
+
"Nebr.",
|
| 653 |
+
"Nebraska",
|
| 654 |
+
"Need",
|
| 655 |
+
"Neisseria",
|
| 656 |
+
"Nev",
|
| 657 |
+
"Nev.",
|
| 658 |
+
"Nevada",
|
| 659 |
+
"New Hampshire",
|
| 660 |
+
"New Jersey",
|
| 661 |
+
"New Mexico",
|
| 662 |
+
"New York",
|
| 663 |
+
"Nocardia",
|
| 664 |
+
"North",
|
| 665 |
+
"North Carolina",
|
| 666 |
+
"North Dakota",
|
| 667 |
+
"Not",
|
| 668 |
+
"Notable",
|
| 669 |
+
"Nothin",
|
| 670 |
+
"Nothin'",
|
| 671 |
+
"Nothin\u2019",
|
| 672 |
+
"Nov",
|
| 673 |
+
"Nov.",
|
| 674 |
+
"November",
|
| 675 |
+
"Nuthin",
|
| 676 |
+
"Nuthin'",
|
| 677 |
+
"Nuthin\u2019",
|
| 678 |
+
"O",
|
| 679 |
+
"O'clock",
|
| 680 |
+
"O.O",
|
| 681 |
+
"O.o",
|
| 682 |
+
"OIs",
|
| 683 |
+
"OUV",
|
| 684 |
+
"O_O",
|
| 685 |
+
"O_o",
|
| 686 |
+
"Occasionally",
|
| 687 |
+
"Oct",
|
| 688 |
+
"Oct.",
|
| 689 |
+
"October",
|
| 690 |
+
"Of",
|
| 691 |
+
"Okla",
|
| 692 |
+
"Okla.",
|
| 693 |
+
"Oklahoma",
|
| 694 |
+
"Ol",
|
| 695 |
+
"Ol'",
|
| 696 |
+
"Ol\u2019",
|
| 697 |
+
"One",
|
| 698 |
+
"Ontario",
|
| 699 |
+
"Ore",
|
| 700 |
+
"Ore.",
|
| 701 |
+
"Oregon",
|
| 702 |
+
"Organization",
|
| 703 |
+
"Other",
|
| 704 |
+
"Ought",
|
| 705 |
+
"Outside",
|
| 706 |
+
"O\u2019clock",
|
| 707 |
+
"P",
|
| 708 |
+
"PATHOGEN",
|
| 709 |
+
"Pa",
|
| 710 |
+
"Pa.",
|
| 711 |
+
"Pain",
|
| 712 |
+
"Parkinson",
|
| 713 |
+
"Paroxetine",
|
| 714 |
+
"Pathogenic",
|
| 715 |
+
"Patients",
|
| 716 |
+
"Pennsylvania",
|
| 717 |
+
"People",
|
| 718 |
+
"Pepto",
|
| 719 |
+
"Ph",
|
| 720 |
+
"Ph.D.",
|
| 721 |
+
"Phenelzine",
|
| 722 |
+
"Polymers",
|
| 723 |
+
"Pott",
|
| 724 |
+
"Prof",
|
| 725 |
+
"Prof.",
|
| 726 |
+
"Pseudomonas",
|
| 727 |
+
"R",
|
| 728 |
+
"R50",
|
| 729 |
+
"RA",
|
| 730 |
+
"RDs",
|
| 731 |
+
"RIMA",
|
| 732 |
+
"RIs",
|
| 733 |
+
"RNA",
|
| 734 |
+
"ROOT",
|
| 735 |
+
"Rabies",
|
| 736 |
+
"Racecadotril",
|
| 737 |
+
"Rasmussen",
|
| 738 |
+
"Rep",
|
| 739 |
+
"Rep.",
|
| 740 |
+
"Rev",
|
| 741 |
+
"Rev.",
|
| 742 |
+
"Rituximab",
|
| 743 |
+
"River",
|
| 744 |
+
"Russia,[162",
|
| 745 |
+
"S",
|
| 746 |
+
"S.C.",
|
| 747 |
+
"SARS",
|
| 748 |
+
"SNRI",
|
| 749 |
+
"SNRIs",
|
| 750 |
+
"SSRIs",
|
| 751 |
+
"Saharan",
|
| 752 |
+
"Salmonella",
|
| 753 |
+
"Sen",
|
| 754 |
+
"Sen.",
|
| 755 |
+
"Sep",
|
| 756 |
+
"Sep.",
|
| 757 |
+
"Sept",
|
| 758 |
+
"Sept.",
|
| 759 |
+
"September",
|
| 760 |
+
"Sertraline",
|
| 761 |
+
"Sha",
|
| 762 |
+
"She",
|
| 763 |
+
"She's",
|
| 764 |
+
"She\u2019s",
|
| 765 |
+
"Shigella",
|
| 766 |
+
"Should",
|
| 767 |
+
"Side",
|
| 768 |
+
"Sierra",
|
| 769 |
+
"Significant",
|
| 770 |
+
"Signs",
|
| 771 |
+
"Sodium",
|
| 772 |
+
"Some",
|
| 773 |
+
"Somethin",
|
| 774 |
+
"Somethin'",
|
| 775 |
+
"Somethin\u2019",
|
| 776 |
+
"South",
|
| 777 |
+
"South Carolina",
|
| 778 |
+
"St",
|
| 779 |
+
"St.",
|
| 780 |
+
"Staphylococcus",
|
| 781 |
+
"States",
|
| 782 |
+
"Streptococcus",
|
| 783 |
+
"Sulfasalazine",
|
| 784 |
+
"Surgery",
|
| 785 |
+
"Symptoms",
|
| 786 |
+
"T",
|
| 787 |
+
"TB",
|
| 788 |
+
"TB.[19",
|
| 789 |
+
"TB.[9",
|
| 790 |
+
"TCA",
|
| 791 |
+
"TNF",
|
| 792 |
+
"Tenn",
|
| 793 |
+
"Tenn.",
|
| 794 |
+
"Tennessee",
|
| 795 |
+
"That",
|
| 796 |
+
"That's",
|
| 797 |
+
"That\u2019s",
|
| 798 |
+
"The",
|
| 799 |
+
"There",
|
| 800 |
+
"There's",
|
| 801 |
+
"Therefore",
|
| 802 |
+
"There\u2019s",
|
| 803 |
+
"These",
|
| 804 |
+
"They",
|
| 805 |
+
"This",
|
| 806 |
+
"This's",
|
| 807 |
+
"This\u2019s",
|
| 808 |
+
"Those",
|
| 809 |
+
"Trichomonas",
|
| 810 |
+
"Triple",
|
| 811 |
+
"Tuberculosis",
|
| 812 |
+
"Typically",
|
| 813 |
+
"U",
|
| 814 |
+
"United",
|
| 815 |
+
"Urinary",
|
| 816 |
+
"Urine",
|
| 817 |
+
"Use",
|
| 818 |
+
"V",
|
| 819 |
+
"V.V",
|
| 820 |
+
"V_V",
|
| 821 |
+
"Va",
|
| 822 |
+
"Va.",
|
| 823 |
+
"Vaccines",
|
| 824 |
+
"Virginia",
|
| 825 |
+
"W",
|
| 826 |
+
"WHO",
|
| 827 |
+
"Was",
|
| 828 |
+
"Wash",
|
| 829 |
+
"Wash.",
|
| 830 |
+
"Washington",
|
| 831 |
+
"We",
|
| 832 |
+
"Wellbutrin",
|
| 833 |
+
"Were",
|
| 834 |
+
"West",
|
| 835 |
+
"Western",
|
| 836 |
+
"What",
|
| 837 |
+
"What's",
|
| 838 |
+
"What\u2019s",
|
| 839 |
+
"When",
|
| 840 |
+
"When's",
|
| 841 |
+
"When\u2019s",
|
| 842 |
+
"Where",
|
| 843 |
+
"Where's",
|
| 844 |
+
"Where\u2019s",
|
| 845 |
+
"While",
|
| 846 |
+
"Who",
|
| 847 |
+
"Who's",
|
| 848 |
+
"Who\u2019s",
|
| 849 |
+
"Why",
|
| 850 |
+
"Why's",
|
| 851 |
+
"Why\u2019s",
|
| 852 |
+
"Wis",
|
| 853 |
+
"Wis.",
|
| 854 |
+
"Wisconsin",
|
| 855 |
+
"Wo",
|
| 856 |
+
"World",
|
| 857 |
+
"Would",
|
| 858 |
+
"X'x",
|
| 859 |
+
"X'xxxx",
|
| 860 |
+
"X++",
|
| 861 |
+
"X.",
|
| 862 |
+
"X.X",
|
| 863 |
+
"X.X.",
|
| 864 |
+
"X.x",
|
| 865 |
+
"X.x.",
|
| 866 |
+
"XD",
|
| 867 |
+
"XDD",
|
| 868 |
+
"XX",
|
| 869 |
+
"XX.[d",
|
| 870 |
+
"XX.[dd",
|
| 871 |
+
"XXX",
|
| 872 |
+
"XXX.[dd",
|
| 873 |
+
"XXXX",
|
| 874 |
+
"XXXXx",
|
| 875 |
+
"XXXXx.[d",
|
| 876 |
+
"XXXd",
|
| 877 |
+
"XXXdd",
|
| 878 |
+
"X_X",
|
| 879 |
+
"X_x",
|
| 880 |
+
"Xd",
|
| 881 |
+
"XdXd",
|
| 882 |
+
"Xx",
|
| 883 |
+
"Xx'",
|
| 884 |
+
"Xx'x",
|
| 885 |
+
"Xx'xx",
|
| 886 |
+
"Xx.",
|
| 887 |
+
"Xx.X.",
|
| 888 |
+
"XxX",
|
| 889 |
+
"Xxx",
|
| 890 |
+
"Xxx'x",
|
| 891 |
+
"Xxx.",
|
| 892 |
+
"Xxxx",
|
| 893 |
+
"Xxxx'",
|
| 894 |
+
"Xxxx'x",
|
| 895 |
+
"Xxxx.",
|
| 896 |
+
"Xxxxx",
|
| 897 |
+
"Xxxxx'",
|
| 898 |
+
"Xxxxx'x",
|
| 899 |
+
"Xxxxx,[ddd",
|
| 900 |
+
"Xxxxx.",
|
| 901 |
+
"Xxxxx\u2019",
|
| 902 |
+
"Xxxxx\u2019x",
|
| 903 |
+
"Xxxx\u2019",
|
| 904 |
+
"Xxxx\u2019x",
|
| 905 |
+
"Xxx\u2019x",
|
| 906 |
+
"Xx\u2019",
|
| 907 |
+
"Xx\u2019x",
|
| 908 |
+
"Xx\u2019xx",
|
| 909 |
+
"X\u2019x",
|
| 910 |
+
"X\u2019xxxx",
|
| 911 |
+
"Y",
|
| 912 |
+
"Yersinia",
|
| 913 |
+
"You",
|
| 914 |
+
"Z",
|
| 915 |
+
"Zyban",
|
| 916 |
+
"[",
|
| 917 |
+
"[-:",
|
| 918 |
+
"[10",
|
| 919 |
+
"[11",
|
| 920 |
+
"[12",
|
| 921 |
+
"[13",
|
| 922 |
+
"[14",
|
| 923 |
+
"[15",
|
| 924 |
+
"[16",
|
| 925 |
+
"[17",
|
| 926 |
+
"[18",
|
| 927 |
+
"[19",
|
| 928 |
+
"[20",
|
| 929 |
+
"[21",
|
| 930 |
+
"[24",
|
| 931 |
+
"[25",
|
| 932 |
+
"[27",
|
| 933 |
+
"[28",
|
| 934 |
+
"[30",
|
| 935 |
+
"[32",
|
| 936 |
+
"[35",
|
| 937 |
+
"[39",
|
| 938 |
+
"[41",
|
| 939 |
+
"[45",
|
| 940 |
+
"[50",
|
| 941 |
+
"[52",
|
| 942 |
+
"[53",
|
| 943 |
+
"[86",
|
| 944 |
+
"[87",
|
| 945 |
+
"[88",
|
| 946 |
+
"[89",
|
| 947 |
+
"[90",
|
| 948 |
+
"[91",
|
| 949 |
+
"[92",
|
| 950 |
+
"[93",
|
| 951 |
+
"[94",
|
| 952 |
+
"[95",
|
| 953 |
+
"[96",
|
| 954 |
+
"[:",
|
| 955 |
+
"[=",
|
| 956 |
+
"\\",
|
| 957 |
+
"\\\")",
|
| 958 |
+
"\\n",
|
| 959 |
+
"\\t",
|
| 960 |
+
"\\x",
|
| 961 |
+
"]",
|
| 962 |
+
"]=",
|
| 963 |
+
"][2",
|
| 964 |
+
"][5",
|
| 965 |
+
"][7",
|
| 966 |
+
"][9",
|
| 967 |
+
"^",
|
| 968 |
+
"^_^",
|
| 969 |
+
"^__^",
|
| 970 |
+
"^___^",
|
| 971 |
+
"_*)",
|
| 972 |
+
"_-)",
|
| 973 |
+
"_.)",
|
| 974 |
+
"_<)",
|
| 975 |
+
"_^)",
|
| 976 |
+
"__-",
|
| 977 |
+
"__^",
|
| 978 |
+
"_\u00ac)",
|
| 979 |
+
"_\u0ca0)",
|
| 980 |
+
"a",
|
| 981 |
+
"a.",
|
| 982 |
+
"a.m",
|
| 983 |
+
"a.m.",
|
| 984 |
+
"abatacept",
|
| 985 |
+
"abdominal",
|
| 986 |
+
"ability",
|
| 987 |
+
"able",
|
| 988 |
+
"about",
|
| 989 |
+
"absorbent",
|
| 990 |
+
"acceptable",
|
| 991 |
+
"ace",
|
| 992 |
+
"ach",
|
| 993 |
+
"acid.[96",
|
| 994 |
+
"ack",
|
| 995 |
+
"acr50",
|
| 996 |
+
"act",
|
| 997 |
+
"active",
|
| 998 |
+
"activity.[95",
|
| 999 |
+
"acute",
|
| 1000 |
+
"acy",
|
| 1001 |
+
"ada",
|
| 1002 |
+
"adamantane",
|
| 1003 |
+
"adapalene",
|
| 1004 |
+
"adapromine",
|
| 1005 |
+
"addition",
|
| 1006 |
+
"adhd",
|
| 1007 |
+
"adherence",
|
| 1008 |
+
"adm",
|
| 1009 |
+
"adm.",
|
| 1010 |
+
"ads",
|
| 1011 |
+
"adults",
|
| 1012 |
+
"adults.[6",
|
| 1013 |
+
"adults.[86",
|
| 1014 |
+
"adverse",
|
| 1015 |
+
"aerosol",
|
| 1016 |
+
"aerosolization",
|
| 1017 |
+
"aerosols",
|
| 1018 |
+
"affected",
|
| 1019 |
+
"affects",
|
| 1020 |
+
"africa",
|
| 1021 |
+
"after",
|
| 1022 |
+
"against",
|
| 1023 |
+
"age",
|
| 1024 |
+
"agents",
|
| 1025 |
+
"ai",
|
| 1026 |
+
"aid",
|
| 1027 |
+
"aids",
|
| 1028 |
+
"ail",
|
| 1029 |
+
"ain",
|
| 1030 |
+
"air",
|
| 1031 |
+
"ak",
|
| 1032 |
+
"ak.",
|
| 1033 |
+
"ake",
|
| 1034 |
+
"aks",
|
| 1035 |
+
"ala",
|
| 1036 |
+
"ala.",
|
| 1037 |
+
"alf",
|
| 1038 |
+
"all",
|
| 1039 |
+
"alleviating",
|
| 1040 |
+
"alone",
|
| 1041 |
+
"alpha",
|
| 1042 |
+
"als",
|
| 1043 |
+
"also",
|
| 1044 |
+
"alternative",
|
| 1045 |
+
"although",
|
| 1046 |
+
"aluminomagnesium",
|
| 1047 |
+
"am",
|
| 1048 |
+
"amantadine",
|
| 1049 |
+
"amantadines",
|
| 1050 |
+
"ame",
|
| 1051 |
+
"america",
|
| 1052 |
+
"american",
|
| 1053 |
+
"among",
|
| 1054 |
+
"amounts",
|
| 1055 |
+
"amoxicillin",
|
| 1056 |
+
"an",
|
| 1057 |
+
"an.",
|
| 1058 |
+
"ana",
|
| 1059 |
+
"anakinra",
|
| 1060 |
+
"and",
|
| 1061 |
+
"and/or",
|
| 1062 |
+
"ane",
|
| 1063 |
+
"aneurysm",
|
| 1064 |
+
"animal",
|
| 1065 |
+
"another",
|
| 1066 |
+
"ans",
|
| 1067 |
+
"ant",
|
| 1068 |
+
"anthrax",
|
| 1069 |
+
"anti",
|
| 1070 |
+
"antibiotic",
|
| 1071 |
+
"antibiotics",
|
| 1072 |
+
"antibodies",
|
| 1073 |
+
"antidepressants",
|
| 1074 |
+
"antiretroviral",
|
| 1075 |
+
"antirheumatic",
|
| 1076 |
+
"antisecretory",
|
| 1077 |
+
"antiviral",
|
| 1078 |
+
"anxiety",
|
| 1079 |
+
"any",
|
| 1080 |
+
"apart",
|
| 1081 |
+
"appears",
|
| 1082 |
+
"appetite",
|
| 1083 |
+
"applications",
|
| 1084 |
+
"approach",
|
| 1085 |
+
"approval",
|
| 1086 |
+
"approved",
|
| 1087 |
+
"apr",
|
| 1088 |
+
"apr.",
|
| 1089 |
+
"apy",
|
| 1090 |
+
"ar.",
|
| 1091 |
+
"ard",
|
| 1092 |
+
"are",
|
| 1093 |
+
"ariz",
|
| 1094 |
+
"ariz.",
|
| 1095 |
+
"ark",
|
| 1096 |
+
"ark.",
|
| 1097 |
+
"arr",
|
| 1098 |
+
"ars",
|
| 1099 |
+
"art",
|
| 1100 |
+
"artery",
|
| 1101 |
+
"arthritis.[90",
|
| 1102 |
+
"articles",
|
| 1103 |
+
"ary",
|
| 1104 |
+
"as",
|
| 1105 |
+
"ascend",
|
| 1106 |
+
"ase",
|
| 1107 |
+
"ash",
|
| 1108 |
+
"asia",
|
| 1109 |
+
"ass",
|
| 1110 |
+
"assistive",
|
| 1111 |
+
"associated",
|
| 1112 |
+
"ast",
|
| 1113 |
+
"asthma",
|
| 1114 |
+
"asy",
|
| 1115 |
+
"asymptomatic\").[14",
|
| 1116 |
+
"at",
|
| 1117 |
+
"ata",
|
| 1118 |
+
"ate",
|
| 1119 |
+
"ath",
|
| 1120 |
+
"ats",
|
| 1121 |
+
"attention",
|
| 1122 |
+
"attributed",
|
| 1123 |
+
"aug",
|
| 1124 |
+
"aug.",
|
| 1125 |
+
"aureus",
|
| 1126 |
+
"aurothiomalate",
|
| 1127 |
+
"australia",
|
| 1128 |
+
"availability",
|
| 1129 |
+
"ave",
|
| 1130 |
+
"avian",
|
| 1131 |
+
"ays",
|
| 1132 |
+
"b",
|
| 1133 |
+
"b.",
|
| 1134 |
+
"babies",
|
| 1135 |
+
"bacteria",
|
| 1136 |
+
"bacteria.[35",
|
| 1137 |
+
"bacterial",
|
| 1138 |
+
"bacterium",
|
| 1139 |
+
"balancing",
|
| 1140 |
+
"ban",
|
| 1141 |
+
"banana",
|
| 1142 |
+
"barr",
|
| 1143 |
+
"basis",
|
| 1144 |
+
"bat",
|
| 1145 |
+
"bats",
|
| 1146 |
+
"bats.[27",
|
| 1147 |
+
"be",
|
| 1148 |
+
"because",
|
| 1149 |
+
"become",
|
| 1150 |
+
"becomes",
|
| 1151 |
+
"bed",
|
| 1152 |
+
"bedaquiline",
|
| 1153 |
+
"been",
|
| 1154 |
+
"begin",
|
| 1155 |
+
"begun",
|
| 1156 |
+
"behaviour.[2",
|
| 1157 |
+
"being",
|
| 1158 |
+
"bel",
|
| 1159 |
+
"beneficial",
|
| 1160 |
+
"benefits",
|
| 1161 |
+
"ber",
|
| 1162 |
+
"bes",
|
| 1163 |
+
"better",
|
| 1164 |
+
"between",
|
| 1165 |
+
"bia",
|
| 1166 |
+
"biological",
|
| 1167 |
+
"biologics",
|
| 1168 |
+
"bipolar",
|
| 1169 |
+
"bismol",
|
| 1170 |
+
"bismuth",
|
| 1171 |
+
"bit",
|
| 1172 |
+
"bite",
|
| 1173 |
+
"bite.[24",
|
| 1174 |
+
"bites",
|
| 1175 |
+
"bladder",
|
| 1176 |
+
"ble",
|
| 1177 |
+
"bleeding.[9][18",
|
| 1178 |
+
"blisters",
|
| 1179 |
+
"blood",
|
| 1180 |
+
"bloody",
|
| 1181 |
+
"bly",
|
| 1182 |
+
"body",
|
| 1183 |
+
"boi",
|
| 1184 |
+
"bones",
|
| 1185 |
+
"bornavirus",
|
| 1186 |
+
"both",
|
| 1187 |
+
"bout",
|
| 1188 |
+
"bowel",
|
| 1189 |
+
"br.",
|
| 1190 |
+
"braces",
|
| 1191 |
+
"brain",
|
| 1192 |
+
"break",
|
| 1193 |
+
"breastfed",
|
| 1194 |
+
"bromantane",
|
| 1195 |
+
"bros",
|
| 1196 |
+
"bros.",
|
| 1197 |
+
"brucella",
|
| 1198 |
+
"bunyaviridae",
|
| 1199 |
+
"buprenorphine",
|
| 1200 |
+
"bupropion",
|
| 1201 |
+
"burden",
|
| 1202 |
+
"burns",
|
| 1203 |
+
"but",
|
| 1204 |
+
"by",
|
| 1205 |
+
"c",
|
| 1206 |
+
"c'm",
|
| 1207 |
+
"c++",
|
| 1208 |
+
"c.",
|
| 1209 |
+
"ca",
|
| 1210 |
+
"cal",
|
| 1211 |
+
"calif",
|
| 1212 |
+
"calif.",
|
| 1213 |
+
"called",
|
| 1214 |
+
"came",
|
| 1215 |
+
"campylobacter",
|
| 1216 |
+
"can",
|
| 1217 |
+
"canada",
|
| 1218 |
+
"candidiasis",
|
| 1219 |
+
"captured",
|
| 1220 |
+
"carbamazepine",
|
| 1221 |
+
"carmantadine",
|
| 1222 |
+
"case",
|
| 1223 |
+
"cases",
|
| 1224 |
+
"cases).[14][17",
|
| 1225 |
+
"cases.[20",
|
| 1226 |
+
"cases.[21",
|
| 1227 |
+
"catheter",
|
| 1228 |
+
"causal",
|
| 1229 |
+
"causative",
|
| 1230 |
+
"cause",
|
| 1231 |
+
"caused",
|
| 1232 |
+
"causes",
|
| 1233 |
+
"causing",
|
| 1234 |
+
"cave",
|
| 1235 |
+
"cdc",
|
| 1236 |
+
"ce>",
|
| 1237 |
+
"ced",
|
| 1238 |
+
"cells",
|
| 1239 |
+
"cellulitis",
|
| 1240 |
+
"central",
|
| 1241 |
+
"certain",
|
| 1242 |
+
"certolizumab",
|
| 1243 |
+
"ces",
|
| 1244 |
+
"cessation",
|
| 1245 |
+
"ch.",
|
| 1246 |
+
"change",
|
| 1247 |
+
"channel",
|
| 1248 |
+
"characteristic",
|
| 1249 |
+
"che",
|
| 1250 |
+
"chemotherapy",
|
| 1251 |
+
"chest",
|
| 1252 |
+
"chickenpox",
|
| 1253 |
+
"children",
|
| 1254 |
+
"children,[93",
|
| 1255 |
+
"children.[12",
|
| 1256 |
+
"chills",
|
| 1257 |
+
"china",
|
| 1258 |
+
"chlodantane",
|
| 1259 |
+
"cholesterol",
|
| 1260 |
+
"choose",
|
| 1261 |
+
"chronic",
|
| 1262 |
+
"cin",
|
| 1263 |
+
"ciprofloxacin",
|
| 1264 |
+
"cit",
|
| 1265 |
+
"citalopram",
|
| 1266 |
+
"cks",
|
| 1267 |
+
"class",
|
| 1268 |
+
"classes",
|
| 1269 |
+
"clay",
|
| 1270 |
+
"cle",
|
| 1271 |
+
"clear.[13",
|
| 1272 |
+
"clinical",
|
| 1273 |
+
"clomipramine",
|
| 1274 |
+
"cloudy.[10",
|
| 1275 |
+
"clubbing",
|
| 1276 |
+
"co",
|
| 1277 |
+
"co.",
|
| 1278 |
+
"coexist",
|
| 1279 |
+
"coinfected",
|
| 1280 |
+
"cold",
|
| 1281 |
+
"coli",
|
| 1282 |
+
"collectively",
|
| 1283 |
+
"colo",
|
| 1284 |
+
"colo.",
|
| 1285 |
+
"colony",
|
| 1286 |
+
"color",
|
| 1287 |
+
"combination",
|
| 1288 |
+
"combinations",
|
| 1289 |
+
"combined",
|
| 1290 |
+
"come",
|
| 1291 |
+
"commit",
|
| 1292 |
+
"common",
|
| 1293 |
+
"commonly",
|
| 1294 |
+
"company",
|
| 1295 |
+
"complications",
|
| 1296 |
+
"compounds",
|
| 1297 |
+
"concluded",
|
| 1298 |
+
"condition",
|
| 1299 |
+
"conditions",
|
| 1300 |
+
"conn",
|
| 1301 |
+
"conn.",
|
| 1302 |
+
"connection",
|
| 1303 |
+
"connective",
|
| 1304 |
+
"considered",
|
| 1305 |
+
"consisting",
|
| 1306 |
+
"constipation",
|
| 1307 |
+
"contact",
|
| 1308 |
+
"contagious",
|
| 1309 |
+
"contains",
|
| 1310 |
+
"contrast",
|
| 1311 |
+
"contribute",
|
| 1312 |
+
"control",
|
| 1313 |
+
"controversy",
|
| 1314 |
+
"convincing",
|
| 1315 |
+
"cord",
|
| 1316 |
+
"coronavirus",
|
| 1317 |
+
"corp",
|
| 1318 |
+
"corp.",
|
| 1319 |
+
"cos",
|
| 1320 |
+
"cote",
|
| 1321 |
+
"cough",
|
| 1322 |
+
"coughing",
|
| 1323 |
+
"could",
|
| 1324 |
+
"counter",
|
| 1325 |
+
"countries",
|
| 1326 |
+
"countries.[3",
|
| 1327 |
+
"cov",
|
| 1328 |
+
"covered",
|
| 1329 |
+
"covering",
|
| 1330 |
+
"coz",
|
| 1331 |
+
"cr",
|
| 1332 |
+
"cracks",
|
| 1333 |
+
"crowd",
|
| 1334 |
+
"cryptic",
|
| 1335 |
+
"ct.",
|
| 1336 |
+
"cts",
|
| 1337 |
+
"cur",
|
| 1338 |
+
"currently",
|
| 1339 |
+
"cus",
|
| 1340 |
+
"cuts",
|
| 1341 |
+
"cuz",
|
| 1342 |
+
"cyclosporin",
|
| 1343 |
+
"cystitis",
|
| 1344 |
+
"c\u2019m",
|
| 1345 |
+
"d",
|
| 1346 |
+
"d'Ivoire",
|
| 1347 |
+
"d'ivoire",
|
| 1348 |
+
"d)",
|
| 1349 |
+
"d,ddd",
|
| 1350 |
+
"d-",
|
| 1351 |
+
"d-)",
|
| 1352 |
+
"d-X",
|
| 1353 |
+
"d.",
|
| 1354 |
+
"d.c.",
|
| 1355 |
+
"d.d",
|
| 1356 |
+
"d.x",
|
| 1357 |
+
"dX",
|
| 1358 |
+
"d_d",
|
| 1359 |
+
"d_x",
|
| 1360 |
+
"dae",
|
| 1361 |
+
"dare",
|
| 1362 |
+
"data",
|
| 1363 |
+
"day.[2",
|
| 1364 |
+
"days",
|
| 1365 |
+
"dd",
|
| 1366 |
+
"ddd",
|
| 1367 |
+
"dddd",
|
| 1368 |
+
"dddd.[ddd",
|
| 1369 |
+
"ddddx.[d][d",
|
| 1370 |
+
"dddd\u2013dd",
|
| 1371 |
+
"dddd\u2013dddd",
|
| 1372 |
+
"ddx.x",
|
| 1373 |
+
"ddx.x.",
|
| 1374 |
+
"dd\u2013dd",
|
| 1375 |
+
"death",
|
| 1376 |
+
"deaths",
|
| 1377 |
+
"dec",
|
| 1378 |
+
"dec.",
|
| 1379 |
+
"decrease",
|
| 1380 |
+
"decreased",
|
| 1381 |
+
"ded",
|
| 1382 |
+
"deeper",
|
| 1383 |
+
"defer",
|
| 1384 |
+
"deficit",
|
| 1385 |
+
"dehydration",
|
| 1386 |
+
"del",
|
| 1387 |
+
"del.",
|
| 1388 |
+
"den",
|
| 1389 |
+
"denoted",
|
| 1390 |
+
"depending",
|
| 1391 |
+
"depressant",
|
| 1392 |
+
"depression",
|
| 1393 |
+
"der",
|
| 1394 |
+
"derivative",
|
| 1395 |
+
"derivatives",
|
| 1396 |
+
"dermal",
|
| 1397 |
+
"describe",
|
| 1398 |
+
"described",
|
| 1399 |
+
"despite",
|
| 1400 |
+
"desvenlafaxine",
|
| 1401 |
+
"develop",
|
| 1402 |
+
"developing",
|
| 1403 |
+
"develops",
|
| 1404 |
+
"devices.[1][6][7",
|
| 1405 |
+
"dhd",
|
| 1406 |
+
"dia",
|
| 1407 |
+
"diarrhea",
|
| 1408 |
+
"diarrhea.[45",
|
| 1409 |
+
"diarrhoea",
|
| 1410 |
+
"did",
|
| 1411 |
+
"die",
|
| 1412 |
+
"died.[25",
|
| 1413 |
+
"dies",
|
| 1414 |
+
"dietary",
|
| 1415 |
+
"difference",
|
| 1416 |
+
"different",
|
| 1417 |
+
"difficult",
|
| 1418 |
+
"diffuse",
|
| 1419 |
+
"diosmectite",
|
| 1420 |
+
"diphtheria",
|
| 1421 |
+
"discover",
|
| 1422 |
+
"discovered",
|
| 1423 |
+
"disease",
|
| 1424 |
+
"disease.[1",
|
| 1425 |
+
"disease.[16",
|
| 1426 |
+
"disease.[51][52",
|
| 1427 |
+
"disease.[8",
|
| 1428 |
+
"diseases",
|
| 1429 |
+
"disorder",
|
| 1430 |
+
"disorder.[19][20",
|
| 1431 |
+
"disorder.[8",
|
| 1432 |
+
"disorder1",
|
| 1433 |
+
"disruption",
|
| 1434 |
+
"disseminated",
|
| 1435 |
+
"distinct",
|
| 1436 |
+
"distinction",
|
| 1437 |
+
"dm.",
|
| 1438 |
+
"dmard",
|
| 1439 |
+
"dmards",
|
| 1440 |
+
"dmards.[8",
|
| 1441 |
+
"do",
|
| 1442 |
+
"does",
|
| 1443 |
+
"doin",
|
| 1444 |
+
"doin'",
|
| 1445 |
+
"doing",
|
| 1446 |
+
"doin\u2019",
|
| 1447 |
+
"dopamantine",
|
| 1448 |
+
"dormant",
|
| 1449 |
+
"doxycycline",
|
| 1450 |
+
"dr",
|
| 1451 |
+
"dr.",
|
| 1452 |
+
"drainage",
|
| 1453 |
+
"drug",
|
| 1454 |
+
"drug,[184",
|
| 1455 |
+
"drugs",
|
| 1456 |
+
"due",
|
| 1457 |
+
"duloxetine",
|
| 1458 |
+
"duration",
|
| 1459 |
+
"during",
|
| 1460 |
+
"dx.x",
|
| 1461 |
+
"dx.x.",
|
| 1462 |
+
"d\u2013dd",
|
| 1463 |
+
"e",
|
| 1464 |
+
"e's",
|
| 1465 |
+
"e.",
|
| 1466 |
+
"e.g",
|
| 1467 |
+
"e.g.",
|
| 1468 |
+
"each",
|
| 1469 |
+
"ead",
|
| 1470 |
+
"eak",
|
| 1471 |
+
"ean",
|
| 1472 |
+
"ear",
|
| 1473 |
+
"early",
|
| 1474 |
+
"easy",
|
| 1475 |
+
"eat",
|
| 1476 |
+
"eb.",
|
| 1477 |
+
"ebo",
|
| 1478 |
+
"ebola",
|
| 1479 |
+
"ebr",
|
| 1480 |
+
"ec.",
|
| 1481 |
+
"eck",
|
| 1482 |
+
"ect",
|
| 1483 |
+
"eed",
|
| 1484 |
+
"een",
|
| 1485 |
+
"effective",
|
| 1486 |
+
"effectively",
|
| 1487 |
+
"effectiveness",
|
| 1488 |
+
"effects",
|
| 1489 |
+
"effects.[8",
|
| 1490 |
+
"effects.[8][92",
|
| 1491 |
+
"effects.[9",
|
| 1492 |
+
"efficacy",
|
| 1493 |
+
"egs",
|
| 1494 |
+
"ein",
|
| 1495 |
+
"eir",
|
| 1496 |
+
"either",
|
| 1497 |
+
"el.",
|
| 1498 |
+
"elect",
|
| 1499 |
+
"ell",
|
| 1500 |
+
"elp",
|
| 1501 |
+
"els",
|
| 1502 |
+
"elsewhere",
|
| 1503 |
+
"ely",
|
| 1504 |
+
"em",
|
| 1505 |
+
"eme",
|
| 1506 |
+
"ems",
|
| 1507 |
+
"en",
|
| 1508 |
+
"en.",
|
| 1509 |
+
"end",
|
| 1510 |
+
"ene",
|
| 1511 |
+
"enn",
|
| 1512 |
+
"enough",
|
| 1513 |
+
"ens",
|
| 1514 |
+
"ent",
|
| 1515 |
+
"enteric",
|
| 1516 |
+
"entering",
|
| 1517 |
+
"entirely",
|
| 1518 |
+
"ep.",
|
| 1519 |
+
"epileptic",
|
| 1520 |
+
"epstein",
|
| 1521 |
+
"ept",
|
| 1522 |
+
"equipment",
|
| 1523 |
+
"er1",
|
| 1524 |
+
"ere",
|
| 1525 |
+
"erm",
|
| 1526 |
+
"ern",
|
| 1527 |
+
"erode",
|
| 1528 |
+
"ers",
|
| 1529 |
+
"ery",
|
| 1530 |
+
"erysipelas",
|
| 1531 |
+
"escherichia",
|
| 1532 |
+
"escitalopram",
|
| 1533 |
+
"ese",
|
| 1534 |
+
"ess",
|
| 1535 |
+
"essential",
|
| 1536 |
+
"est",
|
| 1537 |
+
"etanercept",
|
| 1538 |
+
"ety",
|
| 1539 |
+
"europe",
|
| 1540 |
+
"european",
|
| 1541 |
+
"eus",
|
| 1542 |
+
"ev.",
|
| 1543 |
+
"everyone",
|
| 1544 |
+
"evidence",
|
| 1545 |
+
"evidence.[10][11",
|
| 1546 |
+
"ews",
|
| 1547 |
+
"example",
|
| 1548 |
+
"examples",
|
| 1549 |
+
"exclusively",
|
| 1550 |
+
"exercise",
|
| 1551 |
+
"exist",
|
| 1552 |
+
"existing",
|
| 1553 |
+
"experience",
|
| 1554 |
+
"experimentally",
|
| 1555 |
+
"explained",
|
| 1556 |
+
"exposure",
|
| 1557 |
+
"extended",
|
| 1558 |
+
"extensive",
|
| 1559 |
+
"extrapulmonary",
|
| 1560 |
+
"extreme",
|
| 1561 |
+
"e\u2019s",
|
| 1562 |
+
"f",
|
| 1563 |
+
"f.",
|
| 1564 |
+
"face",
|
| 1565 |
+
"faced",
|
| 1566 |
+
"factor",
|
| 1567 |
+
"factors",
|
| 1568 |
+
"failure.[2][5",
|
| 1569 |
+
"family.[29][30][31][32",
|
| 1570 |
+
"far",
|
| 1571 |
+
"farmed",
|
| 1572 |
+
"fast",
|
| 1573 |
+
"fatigue",
|
| 1574 |
+
"fatigue.[9",
|
| 1575 |
+
"favorably",
|
| 1576 |
+
"fda",
|
| 1577 |
+
"feasible",
|
| 1578 |
+
"feb",
|
| 1579 |
+
"feb.",
|
| 1580 |
+
"fed",
|
| 1581 |
+
"feeling",
|
| 1582 |
+
"fer",
|
| 1583 |
+
"fever",
|
| 1584 |
+
"few",
|
| 1585 |
+
"financial",
|
| 1586 |
+
"first",
|
| 1587 |
+
"five",
|
| 1588 |
+
"fla",
|
| 1589 |
+
"fla.",
|
| 1590 |
+
"flashes",
|
| 1591 |
+
"flatulence.[94",
|
| 1592 |
+
"flora",
|
| 1593 |
+
"flow,[13",
|
| 1594 |
+
"flu",
|
| 1595 |
+
"flu\".[6",
|
| 1596 |
+
"flu[50",
|
| 1597 |
+
"fluid",
|
| 1598 |
+
"fluids",
|
| 1599 |
+
"fluoxetine",
|
| 1600 |
+
"fluvoxamine",
|
| 1601 |
+
"folic",
|
| 1602 |
+
"following",
|
| 1603 |
+
"foodborne",
|
| 1604 |
+
"for",
|
| 1605 |
+
"form",
|
| 1606 |
+
"found",
|
| 1607 |
+
"francisella",
|
| 1608 |
+
"frequent",
|
| 1609 |
+
"frequently",
|
| 1610 |
+
"from",
|
| 1611 |
+
"ful",
|
| 1612 |
+
"functional",
|
| 1613 |
+
"functioning.[5",
|
| 1614 |
+
"fungus",
|
| 1615 |
+
"fuse",
|
| 1616 |
+
"g",
|
| 1617 |
+
"g.",
|
| 1618 |
+
"ga",
|
| 1619 |
+
"ga.",
|
| 1620 |
+
"gabapentin",
|
| 1621 |
+
"gastroenteritis",
|
| 1622 |
+
"gastrointestinal",
|
| 1623 |
+
"ged",
|
| 1624 |
+
"gen",
|
| 1625 |
+
"gen.",
|
| 1626 |
+
"general",
|
| 1627 |
+
"generally",
|
| 1628 |
+
"genitourinary",
|
| 1629 |
+
"ges",
|
| 1630 |
+
"ght",
|
| 1631 |
+
"gia",
|
| 1632 |
+
"gic",
|
| 1633 |
+
"gin",
|
| 1634 |
+
"given",
|
| 1635 |
+
"glandular",
|
| 1636 |
+
"gle",
|
| 1637 |
+
"globally",
|
| 1638 |
+
"gly",
|
| 1639 |
+
"gns",
|
| 1640 |
+
"goals",
|
| 1641 |
+
"goin",
|
| 1642 |
+
"goin'",
|
| 1643 |
+
"going",
|
| 1644 |
+
"goin\u2019",
|
| 1645 |
+
"gold",
|
| 1646 |
+
"gon",
|
| 1647 |
+
"gonna",
|
| 1648 |
+
"good",
|
| 1649 |
+
"got",
|
| 1650 |
+
"gov",
|
| 1651 |
+
"gov.",
|
| 1652 |
+
"gram",
|
| 1653 |
+
"greater",
|
| 1654 |
+
"groups",
|
| 1655 |
+
"gth",
|
| 1656 |
+
"gue",
|
| 1657 |
+
"gun",
|
| 1658 |
+
"gus",
|
| 1659 |
+
"gut",
|
| 1660 |
+
"h",
|
| 1661 |
+
"h.",
|
| 1662 |
+
"h3n2",
|
| 1663 |
+
"had",
|
| 1664 |
+
"hairy",
|
| 1665 |
+
"half",
|
| 1666 |
+
"han",
|
| 1667 |
+
"hansen",
|
| 1668 |
+
"hantaviruses",
|
| 1669 |
+
"haq",
|
| 1670 |
+
"harmless",
|
| 1671 |
+
"harmlessly",
|
| 1672 |
+
"has",
|
| 1673 |
+
"hat",
|
| 1674 |
+
"have",
|
| 1675 |
+
"havin",
|
| 1676 |
+
"havin'",
|
| 1677 |
+
"having",
|
| 1678 |
+
"havin\u2019",
|
| 1679 |
+
"he",
|
| 1680 |
+
"he's",
|
| 1681 |
+
"hea",
|
| 1682 |
+
"headache",
|
| 1683 |
+
"health",
|
| 1684 |
+
"healthy",
|
| 1685 |
+
"heart",
|
| 1686 |
+
"help",
|
| 1687 |
+
"helped",
|
| 1688 |
+
"hem",
|
| 1689 |
+
"hematologic",
|
| 1690 |
+
"hen",
|
| 1691 |
+
"hepatic.[93",
|
| 1692 |
+
"her",
|
| 1693 |
+
"herpes",
|
| 1694 |
+
"herpesvirus",
|
| 1695 |
+
"hes",
|
| 1696 |
+
"hey",
|
| 1697 |
+
"he\u2019s",
|
| 1698 |
+
"hhv6",
|
| 1699 |
+
"hia",
|
| 1700 |
+
"hic",
|
| 1701 |
+
"high",
|
| 1702 |
+
"high.[40][41",
|
| 1703 |
+
"higher",
|
| 1704 |
+
"highest",
|
| 1705 |
+
"highly",
|
| 1706 |
+
"hin",
|
| 1707 |
+
"his",
|
| 1708 |
+
"history.[24",
|
| 1709 |
+
"hiv",
|
| 1710 |
+
"hiv.[53",
|
| 1711 |
+
"hly",
|
| 1712 |
+
"hma",
|
| 1713 |
+
"hom",
|
| 1714 |
+
"homeostasis",
|
| 1715 |
+
"horses",
|
| 1716 |
+
"host",
|
| 1717 |
+
"hot",
|
| 1718 |
+
"hour",
|
| 1719 |
+
"how",
|
| 1720 |
+
"how's",
|
| 1721 |
+
"however",
|
| 1722 |
+
"how\u2019s",
|
| 1723 |
+
"human",
|
| 1724 |
+
"humans",
|
| 1725 |
+
"humans.[152",
|
| 1726 |
+
"humid",
|
| 1727 |
+
"hus",
|
| 1728 |
+
"hv6",
|
| 1729 |
+
"hydroxychloroquine",
|
| 1730 |
+
"hyperactivity",
|
| 1731 |
+
"i",
|
| 1732 |
+
"i.",
|
| 1733 |
+
"i.e",
|
| 1734 |
+
"i.e.",
|
| 1735 |
+
"ia",
|
| 1736 |
+
"ia.",
|
| 1737 |
+
"ial",
|
| 1738 |
+
"ian",
|
| 1739 |
+
"ibe",
|
| 1740 |
+
"ica",
|
| 1741 |
+
"ich",
|
| 1742 |
+
"ics",
|
| 1743 |
+
"icy",
|
| 1744 |
+
"id",
|
| 1745 |
+
"id.",
|
| 1746 |
+
"ide",
|
| 1747 |
+
"identified",
|
| 1748 |
+
"ids",
|
| 1749 |
+
"ied",
|
| 1750 |
+
"ies",
|
| 1751 |
+
"if",
|
| 1752 |
+
"if.",
|
| 1753 |
+
"igh",
|
| 1754 |
+
"igo",
|
| 1755 |
+
"ike",
|
| 1756 |
+
"ild",
|
| 1757 |
+
"ile",
|
| 1758 |
+
"ill",
|
| 1759 |
+
"ill.",
|
| 1760 |
+
"illness",
|
| 1761 |
+
"illness.[91",
|
| 1762 |
+
"illnesses",
|
| 1763 |
+
"ima",
|
| 1764 |
+
"imb",
|
| 1765 |
+
"imipramine",
|
| 1766 |
+
"immune",
|
| 1767 |
+
"immunity",
|
| 1768 |
+
"impetigo",
|
| 1769 |
+
"importance",
|
| 1770 |
+
"important",
|
| 1771 |
+
"improve",
|
| 1772 |
+
"improves",
|
| 1773 |
+
"in",
|
| 1774 |
+
"in'",
|
| 1775 |
+
"ina",
|
| 1776 |
+
"inaccurately",
|
| 1777 |
+
"inc",
|
| 1778 |
+
"inc.",
|
| 1779 |
+
"include",
|
| 1780 |
+
"including",
|
| 1781 |
+
"increase",
|
| 1782 |
+
"increased",
|
| 1783 |
+
"ind",
|
| 1784 |
+
"ind.",
|
| 1785 |
+
"indication",
|
| 1786 |
+
"indications",
|
| 1787 |
+
"individuals",
|
| 1788 |
+
"induced",
|
| 1789 |
+
"ine",
|
| 1790 |
+
"ineffective",
|
| 1791 |
+
"infant",
|
| 1792 |
+
"infect",
|
| 1793 |
+
"infected",
|
| 1794 |
+
"infection",
|
| 1795 |
+
"infection[14",
|
| 1796 |
+
"infections",
|
| 1797 |
+
"infectious",
|
| 1798 |
+
"inflammation",
|
| 1799 |
+
"inflammation[15",
|
| 1800 |
+
"infliximab",
|
| 1801 |
+
"influenced",
|
| 1802 |
+
"influenza",
|
| 1803 |
+
"ing",
|
| 1804 |
+
"inhibit",
|
| 1805 |
+
"inhibiting",
|
| 1806 |
+
"inhibitors",
|
| 1807 |
+
"inhibits",
|
| 1808 |
+
"injection",
|
| 1809 |
+
"inn",
|
| 1810 |
+
"ins",
|
| 1811 |
+
"insect",
|
| 1812 |
+
"insertion",
|
| 1813 |
+
"instances",
|
| 1814 |
+
"instead",
|
| 1815 |
+
"int",
|
| 1816 |
+
"into",
|
| 1817 |
+
"intracellular",
|
| 1818 |
+
"intracellularly",
|
| 1819 |
+
"intravenous",
|
| 1820 |
+
"investigation",
|
| 1821 |
+
"investigations",
|
| 1822 |
+
"involve",
|
| 1823 |
+
"involves",
|
| 1824 |
+
"in\u2019",
|
| 1825 |
+
"ion",
|
| 1826 |
+
"ior",
|
| 1827 |
+
"ire",
|
| 1828 |
+
"irritable",
|
| 1829 |
+
"iry",
|
| 1830 |
+
"is",
|
| 1831 |
+
"is.",
|
| 1832 |
+
"ise",
|
| 1833 |
+
"isk",
|
| 1834 |
+
"ism",
|
| 1835 |
+
"isolated",
|
| 1836 |
+
"isolates",
|
| 1837 |
+
"isoniazid",
|
| 1838 |
+
"iss",
|
| 1839 |
+
"issued",
|
| 1840 |
+
"ist",
|
| 1841 |
+
"isy",
|
| 1842 |
+
"it",
|
| 1843 |
+
"it's",
|
| 1844 |
+
"ite",
|
| 1845 |
+
"ith",
|
| 1846 |
+
"its",
|
| 1847 |
+
"ity",
|
| 1848 |
+
"it\u2019s",
|
| 1849 |
+
"ium",
|
| 1850 |
+
"ive",
|
| 1851 |
+
"iz.",
|
| 1852 |
+
"j",
|
| 1853 |
+
"j.",
|
| 1854 |
+
"jan",
|
| 1855 |
+
"jan.",
|
| 1856 |
+
"joint",
|
| 1857 |
+
"joints",
|
| 1858 |
+
"journal",
|
| 1859 |
+
"jr",
|
| 1860 |
+
"jr.",
|
| 1861 |
+
"jul",
|
| 1862 |
+
"jul.",
|
| 1863 |
+
"jun",
|
| 1864 |
+
"jun.",
|
| 1865 |
+
"k",
|
| 1866 |
+
"k.",
|
| 1867 |
+
"kan",
|
| 1868 |
+
"kan.",
|
| 1869 |
+
"kans",
|
| 1870 |
+
"kans.",
|
| 1871 |
+
"kaopectate",
|
| 1872 |
+
"kes",
|
| 1873 |
+
"kidney",
|
| 1874 |
+
"kill",
|
| 1875 |
+
"kills",
|
| 1876 |
+
"kin",
|
| 1877 |
+
"kinds",
|
| 1878 |
+
"kla",
|
| 1879 |
+
"known",
|
| 1880 |
+
"ky",
|
| 1881 |
+
"ky.",
|
| 1882 |
+
"l",
|
| 1883 |
+
"l.",
|
| 1884 |
+
"la",
|
| 1885 |
+
"la.",
|
| 1886 |
+
"label",
|
| 1887 |
+
"laboratories",
|
| 1888 |
+
"lack",
|
| 1889 |
+
"lactobacilli",
|
| 1890 |
+
"laninamivir",
|
| 1891 |
+
"lar",
|
| 1892 |
+
"large",
|
| 1893 |
+
"las",
|
| 1894 |
+
"last",
|
| 1895 |
+
"lasts",
|
| 1896 |
+
"latency[153",
|
| 1897 |
+
"latent",
|
| 1898 |
+
"later",
|
| 1899 |
+
"lay",
|
| 1900 |
+
"layers",
|
| 1901 |
+
"leads",
|
| 1902 |
+
"least",
|
| 1903 |
+
"leaves",
|
| 1904 |
+
"led",
|
| 1905 |
+
"leflunomide",
|
| 1906 |
+
"leflunomide.[8",
|
| 1907 |
+
"leg",
|
| 1908 |
+
"legionella",
|
| 1909 |
+
"legs",
|
| 1910 |
+
"lem",
|
| 1911 |
+
"length",
|
| 1912 |
+
"leone",
|
| 1913 |
+
"leprosy",
|
| 1914 |
+
"les",
|
| 1915 |
+
"less",
|
| 1916 |
+
"let",
|
| 1917 |
+
"let's",
|
| 1918 |
+
"let\u2019s",
|
| 1919 |
+
"level",
|
| 1920 |
+
"levels",
|
| 1921 |
+
"levels.[87",
|
| 1922 |
+
"lex",
|
| 1923 |
+
"lia",
|
| 1924 |
+
"lic",
|
| 1925 |
+
"lif",
|
| 1926 |
+
"life.[94",
|
| 1927 |
+
"lifetimes;[16",
|
| 1928 |
+
"like",
|
| 1929 |
+
"likely",
|
| 1930 |
+
"limb",
|
| 1931 |
+
"limited",
|
| 1932 |
+
"lin",
|
| 1933 |
+
"line",
|
| 1934 |
+
"liquid",
|
| 1935 |
+
"lis",
|
| 1936 |
+
"listeria",
|
| 1937 |
+
"lit",
|
| 1938 |
+
"ll",
|
| 1939 |
+
"ll.",
|
| 1940 |
+
"lla",
|
| 1941 |
+
"lle",
|
| 1942 |
+
"lli",
|
| 1943 |
+
"lls",
|
| 1944 |
+
"lly",
|
| 1945 |
+
"lo.",
|
| 1946 |
+
"lobes",
|
| 1947 |
+
"loose",
|
| 1948 |
+
"lop",
|
| 1949 |
+
"loperamide",
|
| 1950 |
+
"lor",
|
| 1951 |
+
"loss",
|
| 1952 |
+
"loss.[2",
|
| 1953 |
+
"lovin",
|
| 1954 |
+
"lovin'",
|
| 1955 |
+
"loving",
|
| 1956 |
+
"lovin\u2019",
|
| 1957 |
+
"low",
|
| 1958 |
+
"lower",
|
| 1959 |
+
"lso",
|
| 1960 |
+
"ltd",
|
| 1961 |
+
"ltd.",
|
| 1962 |
+
"lth",
|
| 1963 |
+
"lts",
|
| 1964 |
+
"lung",
|
| 1965 |
+
"lungs",
|
| 1966 |
+
"lve",
|
| 1967 |
+
"lymph",
|
| 1968 |
+
"lymphatic",
|
| 1969 |
+
"m",
|
| 1970 |
+
"m.",
|
| 1971 |
+
"m2",
|
| 1972 |
+
"ma'am",
|
| 1973 |
+
"mab",
|
| 1974 |
+
"madam",
|
| 1975 |
+
"magboi",
|
| 1976 |
+
"magnification",
|
| 1977 |
+
"main",
|
| 1978 |
+
"maintain",
|
| 1979 |
+
"majority",
|
| 1980 |
+
"make",
|
| 1981 |
+
"makes",
|
| 1982 |
+
"making",
|
| 1983 |
+
"mal",
|
| 1984 |
+
"man",
|
| 1985 |
+
"many",
|
| 1986 |
+
"maois",
|
| 1987 |
+
"mar",
|
| 1988 |
+
"mar.",
|
| 1989 |
+
"mass",
|
| 1990 |
+
"mass.",
|
| 1991 |
+
"massive",
|
| 1992 |
+
"may",
|
| 1993 |
+
"ma\u2019am",
|
| 1994 |
+
"md",
|
| 1995 |
+
"md.",
|
| 1996 |
+
"meaning",
|
| 1997 |
+
"means",
|
| 1998 |
+
"measure",
|
| 1999 |
+
"measured",
|
| 2000 |
+
"mechanisms",
|
| 2001 |
+
"med",
|
| 2002 |
+
"medical",
|
| 2003 |
+
"medicalcondition",
|
| 2004 |
+
"medication",
|
| 2005 |
+
"medications",
|
| 2006 |
+
"medicine",
|
| 2007 |
+
"memantine",
|
| 2008 |
+
"membrane",
|
| 2009 |
+
"membranes",
|
| 2010 |
+
"meninges",
|
| 2011 |
+
"meningitis",
|
| 2012 |
+
"mes",
|
| 2013 |
+
"messrs",
|
| 2014 |
+
"messrs.",
|
| 2015 |
+
"methotrexate",
|
| 2016 |
+
"mich",
|
| 2017 |
+
"mich.",
|
| 2018 |
+
"microbial",
|
| 2019 |
+
"microbiota",
|
| 2020 |
+
"micrometers",
|
| 2021 |
+
"microorganism",
|
| 2022 |
+
"mid",
|
| 2023 |
+
"might",
|
| 2024 |
+
"migraine",
|
| 2025 |
+
"mild",
|
| 2026 |
+
"miliary",
|
| 2027 |
+
"million",
|
| 2028 |
+
"minn",
|
| 2029 |
+
"minn.",
|
| 2030 |
+
"miss",
|
| 2031 |
+
"miss.",
|
| 2032 |
+
"mit",
|
| 2033 |
+
"mixed",
|
| 2034 |
+
"mo",
|
| 2035 |
+
"mo.",
|
| 2036 |
+
"moclobemide",
|
| 2037 |
+
"moderate",
|
| 2038 |
+
"modifying",
|
| 2039 |
+
"mol",
|
| 2040 |
+
"mon",
|
| 2041 |
+
"monitored",
|
| 2042 |
+
"monoclonal",
|
| 2043 |
+
"mont",
|
| 2044 |
+
"mont.",
|
| 2045 |
+
"months",
|
| 2046 |
+
"mor",
|
| 2047 |
+
"more",
|
| 2048 |
+
"mortality",
|
| 2049 |
+
"most",
|
| 2050 |
+
"mostly",
|
| 2051 |
+
"motility",
|
| 2052 |
+
"mouv",
|
| 2053 |
+
"mouyassu\u00e9",
|
| 2054 |
+
"movements",
|
| 2055 |
+
"mph",
|
| 2056 |
+
"mr",
|
| 2057 |
+
"mr.",
|
| 2058 |
+
"mrs",
|
| 2059 |
+
"mrs.",
|
| 2060 |
+
"ms",
|
| 2061 |
+
"ms.",
|
| 2062 |
+
"mt",
|
| 2063 |
+
"mt.",
|
| 2064 |
+
"much",
|
| 2065 |
+
"mucous",
|
| 2066 |
+
"multiple",
|
| 2067 |
+
"muscle",
|
| 2068 |
+
"must",
|
| 2069 |
+
"mycobacterium",
|
| 2070 |
+
"n",
|
| 2071 |
+
"n's",
|
| 2072 |
+
"n't",
|
| 2073 |
+
"n.",
|
| 2074 |
+
"n.c.",
|
| 2075 |
+
"n.d.",
|
| 2076 |
+
"n.h.",
|
| 2077 |
+
"n.j.",
|
| 2078 |
+
"n.m.",
|
| 2079 |
+
"n.y.",
|
| 2080 |
+
"na",
|
| 2081 |
+
"nail",
|
| 2082 |
+
"nal",
|
| 2083 |
+
"name",
|
| 2084 |
+
"named",
|
| 2085 |
+
"nas",
|
| 2086 |
+
"natural",
|
| 2087 |
+
"nausea",
|
| 2088 |
+
"nc.",
|
| 2089 |
+
"nce",
|
| 2090 |
+
"nct",
|
| 2091 |
+
"nd.",
|
| 2092 |
+
"nds",
|
| 2093 |
+
"near",
|
| 2094 |
+
"neb",
|
| 2095 |
+
"neb.",
|
| 2096 |
+
"nebr",
|
| 2097 |
+
"nebr.",
|
| 2098 |
+
"neck",
|
| 2099 |
+
"ned",
|
| 2100 |
+
"need",
|
| 2101 |
+
"negative",
|
| 2102 |
+
"neisseria",
|
| 2103 |
+
"nel",
|
| 2104 |
+
"nephritis",
|
| 2105 |
+
"nervous",
|
| 2106 |
+
"nes",
|
| 2107 |
+
"neuralgia",
|
| 2108 |
+
"neuraminidase",
|
| 2109 |
+
"neurological",
|
| 2110 |
+
"neuromyotonia",
|
| 2111 |
+
"neuropathic",
|
| 2112 |
+
"nev",
|
| 2113 |
+
"nev.",
|
| 2114 |
+
"new",
|
| 2115 |
+
"ney",
|
| 2116 |
+
"nge",
|
| 2117 |
+
"ngs",
|
| 2118 |
+
"nia",
|
| 2119 |
+
"nic",
|
| 2120 |
+
"night",
|
| 2121 |
+
"nine",
|
| 2122 |
+
"nly",
|
| 2123 |
+
"nn.",
|
| 2124 |
+
"nny",
|
| 2125 |
+
"no",
|
| 2126 |
+
"nocardia",
|
| 2127 |
+
"non",
|
| 2128 |
+
"normal",
|
| 2129 |
+
"normal.[2",
|
| 2130 |
+
"north",
|
| 2131 |
+
"nose",
|
| 2132 |
+
"not",
|
| 2133 |
+
"notable",
|
| 2134 |
+
"nothin",
|
| 2135 |
+
"nothin'",
|
| 2136 |
+
"nothing",
|
| 2137 |
+
"nothin\u2019",
|
| 2138 |
+
"nov",
|
| 2139 |
+
"nov.",
|
| 2140 |
+
"novel",
|
| 2141 |
+
"now",
|
| 2142 |
+
"nra",
|
| 2143 |
+
"nri",
|
| 2144 |
+
"ns.",
|
| 2145 |
+
"nsaids",
|
| 2146 |
+
"nse",
|
| 2147 |
+
"nst",
|
| 2148 |
+
"nt",
|
| 2149 |
+
"nt.",
|
| 2150 |
+
"nti",
|
| 2151 |
+
"nto",
|
| 2152 |
+
"nts",
|
| 2153 |
+
"nuff",
|
| 2154 |
+
"nus",
|
| 2155 |
+
"nuthin",
|
| 2156 |
+
"nuthin'",
|
| 2157 |
+
"nuthin\u2019",
|
| 2158 |
+
"nza",
|
| 2159 |
+
"n\u2019s",
|
| 2160 |
+
"n\u2019t",
|
| 2161 |
+
"o",
|
| 2162 |
+
"o'clock",
|
| 2163 |
+
"o's",
|
| 2164 |
+
"o.",
|
| 2165 |
+
"o.0",
|
| 2166 |
+
"o.O",
|
| 2167 |
+
"o.o",
|
| 2168 |
+
"o_0",
|
| 2169 |
+
"o_O",
|
| 2170 |
+
"o_o",
|
| 2171 |
+
"oan",
|
| 2172 |
+
"oat",
|
| 2173 |
+
"occasionally",
|
| 2174 |
+
"occur",
|
| 2175 |
+
"occur.[16",
|
| 2176 |
+
"occurs",
|
| 2177 |
+
"ock",
|
| 2178 |
+
"oct",
|
| 2179 |
+
"oct.",
|
| 2180 |
+
"ode",
|
| 2181 |
+
"ody",
|
| 2182 |
+
"oea",
|
| 2183 |
+
"oes",
|
| 2184 |
+
"of",
|
| 2185 |
+
"of.",
|
| 2186 |
+
"off",
|
| 2187 |
+
"officially",
|
| 2188 |
+
"often",
|
| 2189 |
+
"oid",
|
| 2190 |
+
"oin",
|
| 2191 |
+
"ois",
|
| 2192 |
+
"okla",
|
| 2193 |
+
"okla.",
|
| 2194 |
+
"ol",
|
| 2195 |
+
"ol'",
|
| 2196 |
+
"ola",
|
| 2197 |
+
"old",
|
| 2198 |
+
"oli",
|
| 2199 |
+
"olo",
|
| 2200 |
+
"ols",
|
| 2201 |
+
"ol\u2019",
|
| 2202 |
+
"ome",
|
| 2203 |
+
"oms",
|
| 2204 |
+
"on",
|
| 2205 |
+
"ond",
|
| 2206 |
+
"one",
|
| 2207 |
+
"ones.[9",
|
| 2208 |
+
"ong",
|
| 2209 |
+
"only",
|
| 2210 |
+
"onn",
|
| 2211 |
+
"ons",
|
| 2212 |
+
"ont",
|
| 2213 |
+
"ontario",
|
| 2214 |
+
"ony",
|
| 2215 |
+
"ood",
|
| 2216 |
+
"oor",
|
| 2217 |
+
"ope",
|
| 2218 |
+
"open",
|
| 2219 |
+
"ops",
|
| 2220 |
+
"option",
|
| 2221 |
+
"options",
|
| 2222 |
+
"or",
|
| 2223 |
+
"ora",
|
| 2224 |
+
"ord",
|
| 2225 |
+
"ore",
|
| 2226 |
+
"ore.",
|
| 2227 |
+
"organism",
|
| 2228 |
+
"organization",
|
| 2229 |
+
"organs",
|
| 2230 |
+
"ork",
|
| 2231 |
+
"orm",
|
| 2232 |
+
"orp",
|
| 2233 |
+
"ors",
|
| 2234 |
+
"ort",
|
| 2235 |
+
"ory",
|
| 2236 |
+
"os.",
|
| 2237 |
+
"ose",
|
| 2238 |
+
"oseltamivir",
|
| 2239 |
+
"oss",
|
| 2240 |
+
"ost",
|
| 2241 |
+
"osy",
|
| 2242 |
+
"ota",
|
| 2243 |
+
"ote",
|
| 2244 |
+
"oth",
|
| 2245 |
+
"other",
|
| 2246 |
+
"others",
|
| 2247 |
+
"others.[28",
|
| 2248 |
+
"ott",
|
| 2249 |
+
"ought",
|
| 2250 |
+
"our",
|
| 2251 |
+
"ous",
|
| 2252 |
+
"out",
|
| 2253 |
+
"outbreak",
|
| 2254 |
+
"outbreaks",
|
| 2255 |
+
"outside",
|
| 2256 |
+
"ouv",
|
| 2257 |
+
"ov.",
|
| 2258 |
+
"ove",
|
| 2259 |
+
"over",
|
| 2260 |
+
"overall",
|
| 2261 |
+
"overgrowth",
|
| 2262 |
+
"owd",
|
| 2263 |
+
"own",
|
| 2264 |
+
"o\u2019clock",
|
| 2265 |
+
"o\u2019s",
|
| 2266 |
+
"p",
|
| 2267 |
+
"p.",
|
| 2268 |
+
"p.m",
|
| 2269 |
+
"p.m.",
|
| 2270 |
+
"pa",
|
| 2271 |
+
"pa.",
|
| 2272 |
+
"pain",
|
| 2273 |
+
"parkinson",
|
| 2274 |
+
"paroxetine",
|
| 2275 |
+
"paroxysmal",
|
| 2276 |
+
"part",
|
| 2277 |
+
"particular",
|
| 2278 |
+
"particularly",
|
| 2279 |
+
"patented",
|
| 2280 |
+
"pathogen",
|
| 2281 |
+
"pathogenic",
|
| 2282 |
+
"pathogens",
|
| 2283 |
+
"patient",
|
| 2284 |
+
"patients",
|
| 2285 |
+
"ped",
|
| 2286 |
+
"pen",
|
| 2287 |
+
"people",
|
| 2288 |
+
"pepto",
|
| 2289 |
+
"per",
|
| 2290 |
+
"peramivir",
|
| 2291 |
+
"percent",
|
| 2292 |
+
"person",
|
| 2293 |
+
"pes",
|
| 2294 |
+
"pestis",
|
| 2295 |
+
"pestis.[155",
|
| 2296 |
+
"ph",
|
| 2297 |
+
"ph.d.",
|
| 2298 |
+
"pha",
|
| 2299 |
+
"phantom",
|
| 2300 |
+
"phenelzine",
|
| 2301 |
+
"phobia",
|
| 2302 |
+
"physicians",
|
| 2303 |
+
"pin",
|
| 2304 |
+
"pipistrelle",
|
| 2305 |
+
"placebo",
|
| 2306 |
+
"plans",
|
| 2307 |
+
"ple",
|
| 2308 |
+
"pleura",
|
| 2309 |
+
"pleurisy",
|
| 2310 |
+
"pm",
|
| 2311 |
+
"pneumococcal",
|
| 2312 |
+
"pneumonia",
|
| 2313 |
+
"policy",
|
| 2314 |
+
"polymers",
|
| 2315 |
+
"poor",
|
| 2316 |
+
"populations",
|
| 2317 |
+
"positive",
|
| 2318 |
+
"possible",
|
| 2319 |
+
"post",
|
| 2320 |
+
"postherpetic",
|
| 2321 |
+
"postpone",
|
| 2322 |
+
"potentially",
|
| 2323 |
+
"pott",
|
| 2324 |
+
"poultry.[163][164",
|
| 2325 |
+
"pox",
|
| 2326 |
+
"pr.",
|
| 2327 |
+
"predominantly",
|
| 2328 |
+
"prescribe",
|
| 2329 |
+
"presence",
|
| 2330 |
+
"present.[92",
|
| 2331 |
+
"press",
|
| 2332 |
+
"prevent",
|
| 2333 |
+
"prevented",
|
| 2334 |
+
"prevention",
|
| 2335 |
+
"preventive",
|
| 2336 |
+
"previous",
|
| 2337 |
+
"previously",
|
| 2338 |
+
"priced",
|
| 2339 |
+
"prion",
|
| 2340 |
+
"prior",
|
| 2341 |
+
"problem",
|
| 2342 |
+
"problems",
|
| 2343 |
+
"producing",
|
| 2344 |
+
"product",
|
| 2345 |
+
"products.[11",
|
| 2346 |
+
"prof",
|
| 2347 |
+
"prof.",
|
| 2348 |
+
"profile",
|
| 2349 |
+
"progress",
|
| 2350 |
+
"progressing",
|
| 2351 |
+
"progression",
|
| 2352 |
+
"progressive",
|
| 2353 |
+
"prolonged",
|
| 2354 |
+
"prophylaxis",
|
| 2355 |
+
"proportion",
|
| 2356 |
+
"protective",
|
| 2357 |
+
"protein",
|
| 2358 |
+
"proteins",
|
| 2359 |
+
"protozoan",
|
| 2360 |
+
"provide",
|
| 2361 |
+
"providers",
|
| 2362 |
+
"provincial",
|
| 2363 |
+
"pseudomonas",
|
| 2364 |
+
"psychiatric",
|
| 2365 |
+
"psychosocial",
|
| 2366 |
+
"pt.",
|
| 2367 |
+
"pto",
|
| 2368 |
+
"pulmonary",
|
| 2369 |
+
"pure",
|
| 2370 |
+
"pyogenes.[13",
|
| 2371 |
+
"q",
|
| 2372 |
+
"q.",
|
| 2373 |
+
"questions",
|
| 2374 |
+
"r",
|
| 2375 |
+
"r.",
|
| 2376 |
+
"r50",
|
| 2377 |
+
"ra",
|
| 2378 |
+
"rabies",
|
| 2379 |
+
"racecadotril",
|
| 2380 |
+
"radiation",
|
| 2381 |
+
"raising",
|
| 2382 |
+
"ral",
|
| 2383 |
+
"ram",
|
| 2384 |
+
"ran",
|
| 2385 |
+
"range",
|
| 2386 |
+
"rare",
|
| 2387 |
+
"rarely",
|
| 2388 |
+
"rasmussen",
|
| 2389 |
+
"rate",
|
| 2390 |
+
"rates",
|
| 2391 |
+
"rates.[94",
|
| 2392 |
+
"rax",
|
| 2393 |
+
"rce",
|
| 2394 |
+
"rds",
|
| 2395 |
+
"re",
|
| 2396 |
+
"re.",
|
| 2397 |
+
"reason",
|
| 2398 |
+
"recommended",
|
| 2399 |
+
"red",
|
| 2400 |
+
"reduce",
|
| 2401 |
+
"reduced",
|
| 2402 |
+
"reducing",
|
| 2403 |
+
"ree",
|
| 2404 |
+
"referred",
|
| 2405 |
+
"refractory",
|
| 2406 |
+
"regularly",
|
| 2407 |
+
"relative",
|
| 2408 |
+
"relatively",
|
| 2409 |
+
"release",
|
| 2410 |
+
"remain",
|
| 2411 |
+
"remedies",
|
| 2412 |
+
"remission",
|
| 2413 |
+
"ren",
|
| 2414 |
+
"rep",
|
| 2415 |
+
"rep.",
|
| 2416 |
+
"repair",
|
| 2417 |
+
"replace",
|
| 2418 |
+
"replication",
|
| 2419 |
+
"reported",
|
| 2420 |
+
"res",
|
| 2421 |
+
"resistance",
|
| 2422 |
+
"resistance.[165",
|
| 2423 |
+
"respiratory",
|
| 2424 |
+
"respond",
|
| 2425 |
+
"responds",
|
| 2426 |
+
"responsible",
|
| 2427 |
+
"responsiveness",
|
| 2428 |
+
"rest",
|
| 2429 |
+
"restless",
|
| 2430 |
+
"restrictions",
|
| 2431 |
+
"result",
|
| 2432 |
+
"resulted",
|
| 2433 |
+
"resulting",
|
| 2434 |
+
"results",
|
| 2435 |
+
"rev",
|
| 2436 |
+
"rev.",
|
| 2437 |
+
"revealed",
|
| 2438 |
+
"rge",
|
| 2439 |
+
"rgo",
|
| 2440 |
+
"rheumatoid",
|
| 2441 |
+
"ria",
|
| 2442 |
+
"ric",
|
| 2443 |
+
"rifampicin",
|
| 2444 |
+
"rifampin",
|
| 2445 |
+
"rifapentine.[90][91][92",
|
| 2446 |
+
"ril",
|
| 2447 |
+
"rima",
|
| 2448 |
+
"rimantadine",
|
| 2449 |
+
"rin",
|
| 2450 |
+
"rio",
|
| 2451 |
+
"ris",
|
| 2452 |
+
"risk",
|
| 2453 |
+
"risks",
|
| 2454 |
+
"rituximab",
|
| 2455 |
+
"river",
|
| 2456 |
+
"riz",
|
| 2457 |
+
"rk.",
|
| 2458 |
+
"rld",
|
| 2459 |
+
"rly",
|
| 2460 |
+
"rms",
|
| 2461 |
+
"rna",
|
| 2462 |
+
"rne",
|
| 2463 |
+
"rns",
|
| 2464 |
+
"rodents",
|
| 2465 |
+
"rof",
|
| 2466 |
+
"rol",
|
| 2467 |
+
"rom",
|
| 2468 |
+
"ros",
|
| 2469 |
+
"rp.",
|
| 2470 |
+
"rra",
|
| 2471 |
+
"rs.",
|
| 2472 |
+
"rse",
|
| 2473 |
+
"rst",
|
| 2474 |
+
"rsy",
|
| 2475 |
+
"rth",
|
| 2476 |
+
"rug",
|
| 2477 |
+
"runny",
|
| 2478 |
+
"rus",
|
| 2479 |
+
"russia,[162",
|
| 2480 |
+
"s",
|
| 2481 |
+
"s's",
|
| 2482 |
+
"s.",
|
| 2483 |
+
"s.c.",
|
| 2484 |
+
"saharan",
|
| 2485 |
+
"sal",
|
| 2486 |
+
"salmonella",
|
| 2487 |
+
"salts",
|
| 2488 |
+
"same",
|
| 2489 |
+
"sars",
|
| 2490 |
+
"saxagliptin",
|
| 2491 |
+
"scarring",
|
| 2492 |
+
"schizophrenia",
|
| 2493 |
+
"sclerosis",
|
| 2494 |
+
"scores",
|
| 2495 |
+
"scrofula",
|
| 2496 |
+
"sea",
|
| 2497 |
+
"season",
|
| 2498 |
+
"secondary",
|
| 2499 |
+
"sed",
|
| 2500 |
+
"seen",
|
| 2501 |
+
"seizures",
|
| 2502 |
+
"sen",
|
| 2503 |
+
"sen.",
|
| 2504 |
+
"sensation",
|
| 2505 |
+
"sense",
|
| 2506 |
+
"sep",
|
| 2507 |
+
"sep.",
|
| 2508 |
+
"sept",
|
| 2509 |
+
"sept.",
|
| 2510 |
+
"serious",
|
| 2511 |
+
"sertraline",
|
| 2512 |
+
"ses",
|
| 2513 |
+
"severe",
|
| 2514 |
+
"severe.[2",
|
| 2515 |
+
"severe.[5",
|
| 2516 |
+
"sh.",
|
| 2517 |
+
"sha",
|
| 2518 |
+
"shall",
|
| 2519 |
+
"she",
|
| 2520 |
+
"she's",
|
| 2521 |
+
"she\u2019s",
|
| 2522 |
+
"shigella",
|
| 2523 |
+
"shingles",
|
| 2524 |
+
"short",
|
| 2525 |
+
"should",
|
| 2526 |
+
"showed",
|
| 2527 |
+
"shown",
|
| 2528 |
+
"shrews",
|
| 2529 |
+
"sia",
|
| 2530 |
+
"side",
|
| 2531 |
+
"sierra",
|
| 2532 |
+
"significant",
|
| 2533 |
+
"signs",
|
| 2534 |
+
"silicate",
|
| 2535 |
+
"similar",
|
| 2536 |
+
"simplex",
|
| 2537 |
+
"single",
|
| 2538 |
+
"sinus",
|
| 2539 |
+
"sis",
|
| 2540 |
+
"sites",
|
| 2541 |
+
"situations.[1",
|
| 2542 |
+
"skin",
|
| 2543 |
+
"sks",
|
| 2544 |
+
"slit",
|
| 2545 |
+
"slow",
|
| 2546 |
+
"sly",
|
| 2547 |
+
"small",
|
| 2548 |
+
"smoking",
|
| 2549 |
+
"sms",
|
| 2550 |
+
"snri",
|
| 2551 |
+
"snris",
|
| 2552 |
+
"so",
|
| 2553 |
+
"social",
|
| 2554 |
+
"sodium",
|
| 2555 |
+
"sol",
|
| 2556 |
+
"some",
|
| 2557 |
+
"somethin",
|
| 2558 |
+
"somethin'",
|
| 2559 |
+
"something",
|
| 2560 |
+
"somethin\u2019",
|
| 2561 |
+
"sometimes",
|
| 2562 |
+
"son",
|
| 2563 |
+
"sore",
|
| 2564 |
+
"sores",
|
| 2565 |
+
"source",
|
| 2566 |
+
"south",
|
| 2567 |
+
"space",
|
| 2568 |
+
"species",
|
| 2569 |
+
"speculated",
|
| 2570 |
+
"spelled",
|
| 2571 |
+
"spinal",
|
| 2572 |
+
"spine",
|
| 2573 |
+
"splints",
|
| 2574 |
+
"spreads",
|
| 2575 |
+
"sputum",
|
| 2576 |
+
"srs",
|
| 2577 |
+
"ss.",
|
| 2578 |
+
"ssris",
|
| 2579 |
+
"st",
|
| 2580 |
+
"st.",
|
| 2581 |
+
"standard",
|
| 2582 |
+
"staphylococcus",
|
| 2583 |
+
"starting",
|
| 2584 |
+
"state",
|
| 2585 |
+
"states",
|
| 2586 |
+
"stating",
|
| 2587 |
+
"ste",
|
| 2588 |
+
"sterile",
|
| 2589 |
+
"steroids",
|
| 2590 |
+
"still",
|
| 2591 |
+
"stomach",
|
| 2592 |
+
"stools",
|
| 2593 |
+
"strain",
|
| 2594 |
+
"strains",
|
| 2595 |
+
"stranded",
|
| 2596 |
+
"streptococcus",
|
| 2597 |
+
"stress",
|
| 2598 |
+
"stretchiness",
|
| 2599 |
+
"strong",
|
| 2600 |
+
"sts",
|
| 2601 |
+
"studies",
|
| 2602 |
+
"sub",
|
| 2603 |
+
"subcutaneous",
|
| 2604 |
+
"such",
|
| 2605 |
+
"sue",
|
| 2606 |
+
"sufferers",
|
| 2607 |
+
"suggest",
|
| 2608 |
+
"sulfasalazine",
|
| 2609 |
+
"support",
|
| 2610 |
+
"supported",
|
| 2611 |
+
"surgery",
|
| 2612 |
+
"surgical",
|
| 2613 |
+
"susceptible",
|
| 2614 |
+
"su\u00e9",
|
| 2615 |
+
"sweats",
|
| 2616 |
+
"symptoms",
|
| 2617 |
+
"symptoms.[1",
|
| 2618 |
+
"syndrome",
|
| 2619 |
+
"syndrome.[11",
|
| 2620 |
+
"syndrome.[151",
|
| 2621 |
+
"syndromes",
|
| 2622 |
+
"synthesis",
|
| 2623 |
+
"syphilis",
|
| 2624 |
+
"system",
|
| 2625 |
+
"s\u2019s",
|
| 2626 |
+
"t",
|
| 2627 |
+
"t's",
|
| 2628 |
+
"t.",
|
| 2629 |
+
"ta",
|
| 2630 |
+
"takes",
|
| 2631 |
+
"taking",
|
| 2632 |
+
"tal",
|
| 2633 |
+
"target.[160",
|
| 2634 |
+
"tb",
|
| 2635 |
+
"tb.[19",
|
| 2636 |
+
"tb.[9",
|
| 2637 |
+
"tca",
|
| 2638 |
+
"td.",
|
| 2639 |
+
"ted",
|
| 2640 |
+
"tem",
|
| 2641 |
+
"ten",
|
| 2642 |
+
"tenn",
|
| 2643 |
+
"tenn.",
|
| 2644 |
+
"tentatively",
|
| 2645 |
+
"ter",
|
| 2646 |
+
"term",
|
| 2647 |
+
"terms",
|
| 2648 |
+
"tes",
|
| 2649 |
+
"testing",
|
| 2650 |
+
"tetanus",
|
| 2651 |
+
"than",
|
| 2652 |
+
"that",
|
| 2653 |
+
"that's",
|
| 2654 |
+
"that\u2019s",
|
| 2655 |
+
"the",
|
| 2656 |
+
"their",
|
| 2657 |
+
"them",
|
| 2658 |
+
"then",
|
| 2659 |
+
"therapy",
|
| 2660 |
+
"there",
|
| 2661 |
+
"there's",
|
| 2662 |
+
"therefore",
|
| 2663 |
+
"there\u2019s",
|
| 2664 |
+
"these",
|
| 2665 |
+
"they",
|
| 2666 |
+
"this",
|
| 2667 |
+
"this's",
|
| 2668 |
+
"this\u2019s",
|
| 2669 |
+
"those",
|
| 2670 |
+
"though",
|
| 2671 |
+
"thought",
|
| 2672 |
+
"three",
|
| 2673 |
+
"throat",
|
| 2674 |
+
"through",
|
| 2675 |
+
"ths",
|
| 2676 |
+
"thus",
|
| 2677 |
+
"thy",
|
| 2678 |
+
"tic",
|
| 2679 |
+
"ties",
|
| 2680 |
+
"times",
|
| 2681 |
+
"tin",
|
| 2682 |
+
"tired.[1",
|
| 2683 |
+
"tis",
|
| 2684 |
+
"tissue",
|
| 2685 |
+
"tissues",
|
| 2686 |
+
"tly",
|
| 2687 |
+
"tnf",
|
| 2688 |
+
"to",
|
| 2689 |
+
"tocilizumab",
|
| 2690 |
+
"tolerability",
|
| 2691 |
+
"tolerated",
|
| 2692 |
+
"tom",
|
| 2693 |
+
"tor",
|
| 2694 |
+
"toxicity",
|
| 2695 |
+
"tract",
|
| 2696 |
+
"transmission",
|
| 2697 |
+
"transmission\".[28",
|
| 2698 |
+
"transmitted",
|
| 2699 |
+
"transplanted",
|
| 2700 |
+
"traumatic",
|
| 2701 |
+
"travelers",
|
| 2702 |
+
"treat",
|
| 2703 |
+
"treated",
|
| 2704 |
+
"treating",
|
| 2705 |
+
"treatment",
|
| 2706 |
+
"treatment.[88",
|
| 2707 |
+
"treatment.[8][5][93",
|
| 2708 |
+
"treatments",
|
| 2709 |
+
"treatments.[8",
|
| 2710 |
+
"tremor",
|
| 2711 |
+
"trials",
|
| 2712 |
+
"trichomonas",
|
| 2713 |
+
"trichomoniasis).[8][9",
|
| 2714 |
+
"triple",
|
| 2715 |
+
"tromantadine",
|
| 2716 |
+
"try",
|
| 2717 |
+
"tuberculosis",
|
| 2718 |
+
"tuberculosis\".[20",
|
| 2719 |
+
"tuberculosis).[9",
|
| 2720 |
+
"tuberculosis.[9",
|
| 2721 |
+
"tuberculous",
|
| 2722 |
+
"tum",
|
| 2723 |
+
"two",
|
| 2724 |
+
"types",
|
| 2725 |
+
"typhoid",
|
| 2726 |
+
"typically",
|
| 2727 |
+
"t\u2019s",
|
| 2728 |
+
"u",
|
| 2729 |
+
"u.",
|
| 2730 |
+
"uce",
|
| 2731 |
+
"uch",
|
| 2732 |
+
"uct",
|
| 2733 |
+
"ude",
|
| 2734 |
+
"ued",
|
| 2735 |
+
"ues",
|
| 2736 |
+
"uff",
|
| 2737 |
+
"ug.",
|
| 2738 |
+
"ugh",
|
| 2739 |
+
"ugs",
|
| 2740 |
+
"uid",
|
| 2741 |
+
"ul.",
|
| 2742 |
+
"ula",
|
| 2743 |
+
"uld",
|
| 2744 |
+
"ult",
|
| 2745 |
+
"un.",
|
| 2746 |
+
"unclear",
|
| 2747 |
+
"und",
|
| 2748 |
+
"under",
|
| 2749 |
+
"undergo",
|
| 2750 |
+
"understand",
|
| 2751 |
+
"une",
|
| 2752 |
+
"ung",
|
| 2753 |
+
"united",
|
| 2754 |
+
"unknowingly",
|
| 2755 |
+
"unknown",
|
| 2756 |
+
"unrelated",
|
| 2757 |
+
"unwanted",
|
| 2758 |
+
"up",
|
| 2759 |
+
"upper",
|
| 2760 |
+
"ups",
|
| 2761 |
+
"ura",
|
| 2762 |
+
"ure",
|
| 2763 |
+
"urge",
|
| 2764 |
+
"urinary",
|
| 2765 |
+
"urinate",
|
| 2766 |
+
"urination",
|
| 2767 |
+
"urine",
|
| 2768 |
+
"urogenital",
|
| 2769 |
+
"urs",
|
| 2770 |
+
"us",
|
| 2771 |
+
"use",
|
| 2772 |
+
"use.[183][185",
|
| 2773 |
+
"used",
|
| 2774 |
+
"used.[51][90][93][92",
|
| 2775 |
+
"useful",
|
| 2776 |
+
"using",
|
| 2777 |
+
"ust",
|
| 2778 |
+
"usually",
|
| 2779 |
+
"ute",
|
| 2780 |
+
"uth",
|
| 2781 |
+
"uts",
|
| 2782 |
+
"v",
|
| 2783 |
+
"v.",
|
| 2784 |
+
"v.s",
|
| 2785 |
+
"v.s.",
|
| 2786 |
+
"v.v",
|
| 2787 |
+
"v_v",
|
| 2788 |
+
"va",
|
| 2789 |
+
"va.",
|
| 2790 |
+
"vaccine",
|
| 2791 |
+
"vaccines",
|
| 2792 |
+
"vaccines.[30",
|
| 2793 |
+
"vaginal",
|
| 2794 |
+
"vaginalis",
|
| 2795 |
+
"vaginosis",
|
| 2796 |
+
"val",
|
| 2797 |
+
"varicella",
|
| 2798 |
+
"variety",
|
| 2799 |
+
"various",
|
| 2800 |
+
"vast",
|
| 2801 |
+
"ve",
|
| 2802 |
+
"ved",
|
| 2803 |
+
"vel",
|
| 2804 |
+
"ven",
|
| 2805 |
+
"venlafaxine",
|
| 2806 |
+
"ventilation",
|
| 2807 |
+
"ver",
|
| 2808 |
+
"very",
|
| 2809 |
+
"ves",
|
| 2810 |
+
"via",
|
| 2811 |
+
"vildagliptin",
|
| 2812 |
+
"village",
|
| 2813 |
+
"vin",
|
| 2814 |
+
"vir",
|
| 2815 |
+
"viral",
|
| 2816 |
+
"viroid",
|
| 2817 |
+
"virulence",
|
| 2818 |
+
"virus",
|
| 2819 |
+
"virus.[1",
|
| 2820 |
+
"virus.[154",
|
| 2821 |
+
"virus.[39",
|
| 2822 |
+
"virus.[86",
|
| 2823 |
+
"viruses",
|
| 2824 |
+
"visible",
|
| 2825 |
+
"vomiting",
|
| 2826 |
+
"vs",
|
| 2827 |
+
"vs.",
|
| 2828 |
+
"w",
|
| 2829 |
+
"w's",
|
| 2830 |
+
"w.",
|
| 2831 |
+
"w/o",
|
| 2832 |
+
"was",
|
| 2833 |
+
"wash",
|
| 2834 |
+
"wash.",
|
| 2835 |
+
"waste",
|
| 2836 |
+
"watery",
|
| 2837 |
+
"we",
|
| 2838 |
+
"weakened",
|
| 2839 |
+
"wed",
|
| 2840 |
+
"week.[1",
|
| 2841 |
+
"weeks.[1",
|
| 2842 |
+
"weight",
|
| 2843 |
+
"wel",
|
| 2844 |
+
"well",
|
| 2845 |
+
"wellbutrin",
|
| 2846 |
+
"wer",
|
| 2847 |
+
"were",
|
| 2848 |
+
"west",
|
| 2849 |
+
"western",
|
| 2850 |
+
"what",
|
| 2851 |
+
"what's",
|
| 2852 |
+
"what\u2019s",
|
| 2853 |
+
"when",
|
| 2854 |
+
"when's",
|
| 2855 |
+
"when\u2019s",
|
| 2856 |
+
"where",
|
| 2857 |
+
"where's",
|
| 2858 |
+
"where\u2019s",
|
| 2859 |
+
"whether",
|
| 2860 |
+
"which",
|
| 2861 |
+
"while",
|
| 2862 |
+
"who",
|
| 2863 |
+
"who's",
|
| 2864 |
+
"whom",
|
| 2865 |
+
"who\u2019s",
|
| 2866 |
+
"why",
|
| 2867 |
+
"why's",
|
| 2868 |
+
"why\u2019s",
|
| 2869 |
+
"widespread",
|
| 2870 |
+
"will",
|
| 2871 |
+
"willing",
|
| 2872 |
+
"wis",
|
| 2873 |
+
"wis.",
|
| 2874 |
+
"with",
|
| 2875 |
+
"within",
|
| 2876 |
+
"without",
|
| 2877 |
+
"wo",
|
| 2878 |
+
"work",
|
| 2879 |
+
"world",
|
| 2880 |
+
"worsening",
|
| 2881 |
+
"would",
|
| 2882 |
+
"wounds",
|
| 2883 |
+
"wth",
|
| 2884 |
+
"w\u2019s",
|
| 2885 |
+
"x",
|
| 2886 |
+
"x'",
|
| 2887 |
+
"x'Xxxxx",
|
| 2888 |
+
"x'x",
|
| 2889 |
+
"x'xxxx",
|
| 2890 |
+
"x.",
|
| 2891 |
+
"x.X",
|
| 2892 |
+
"x.d",
|
| 2893 |
+
"x.x",
|
| 2894 |
+
"x.x.",
|
| 2895 |
+
"x/x",
|
| 2896 |
+
"xD",
|
| 2897 |
+
"xDD",
|
| 2898 |
+
"xX",
|
| 2899 |
+
"xXX",
|
| 2900 |
+
"x_X",
|
| 2901 |
+
"x_d",
|
| 2902 |
+
"x_x",
|
| 2903 |
+
"xd",
|
| 2904 |
+
"xdd",
|
| 2905 |
+
"xdxd",
|
| 2906 |
+
"xed",
|
| 2907 |
+
"xis",
|
| 2908 |
+
"xx",
|
| 2909 |
+
"xx'",
|
| 2910 |
+
"xx'x",
|
| 2911 |
+
"xx'xx",
|
| 2912 |
+
"xx.",
|
| 2913 |
+
"xx.[d",
|
| 2914 |
+
"xx.[dd",
|
| 2915 |
+
"xxx",
|
| 2916 |
+
"xxx\".[d",
|
| 2917 |
+
"xxx'x",
|
| 2918 |
+
"xxx.[d",
|
| 2919 |
+
"xxx.[dd",
|
| 2920 |
+
"xxx.[ddd][ddd",
|
| 2921 |
+
"xxx/xx",
|
| 2922 |
+
"xxx[dd",
|
| 2923 |
+
"xxxd",
|
| 2924 |
+
"xxxdd",
|
| 2925 |
+
"xxxx",
|
| 2926 |
+
"xxxx\").[dd",
|
| 2927 |
+
"xxxx\".[dd",
|
| 2928 |
+
"xxxx'",
|
| 2929 |
+
"xxxx'x",
|
| 2930 |
+
"xxxx).[d",
|
| 2931 |
+
"xxxx).[d][d",
|
| 2932 |
+
"xxxx).[dd][dd",
|
| 2933 |
+
"xxxx,[dd",
|
| 2934 |
+
"xxxx,[ddd",
|
| 2935 |
+
"xxxx.[d",
|
| 2936 |
+
"xxxx.[d][d",
|
| 2937 |
+
"xxxx.[d][d][d",
|
| 2938 |
+
"xxxx.[d][d][dd",
|
| 2939 |
+
"xxxx.[d][dd",
|
| 2940 |
+
"xxxx.[dd",
|
| 2941 |
+
"xxxx.[dd][dd",
|
| 2942 |
+
"xxxx.[dd][dd][dd",
|
| 2943 |
+
"xxxx.[dd][dd][dd][dd",
|
| 2944 |
+
"xxxx.[ddd",
|
| 2945 |
+
"xxxx.[ddd][ddd",
|
| 2946 |
+
"xxxx;[dd",
|
| 2947 |
+
"xxxx[dd",
|
| 2948 |
+
"xxxx[ddd",
|
| 2949 |
+
"xxxxd",
|
| 2950 |
+
"xxxx\u2019",
|
| 2951 |
+
"xxxx\u2019x",
|
| 2952 |
+
"xxx\u2019x",
|
| 2953 |
+
"xx\u2019",
|
| 2954 |
+
"xx\u2019x",
|
| 2955 |
+
"xx\u2019xx",
|
| 2956 |
+
"x\u2019",
|
| 2957 |
+
"x\u2019x",
|
| 2958 |
+
"x\u2019xxxx",
|
| 2959 |
+
"x\ufe35x",
|
| 2960 |
+
"y",
|
| 2961 |
+
"y'",
|
| 2962 |
+
"y's",
|
| 2963 |
+
"y.",
|
| 2964 |
+
"year",
|
| 2965 |
+
"year.[91",
|
| 2966 |
+
"years.[89",
|
| 2967 |
+
"yeast",
|
| 2968 |
+
"yersinia",
|
| 2969 |
+
"you",
|
| 2970 |
+
"young",
|
| 2971 |
+
"ysm",
|
| 2972 |
+
"y\u2019",
|
| 2973 |
+
"y\u2019s",
|
| 2974 |
+
"z",
|
| 2975 |
+
"z.",
|
| 2976 |
+
"zanamivir",
|
| 2977 |
+
"zid",
|
| 2978 |
+
"zoster",
|
| 2979 |
+
"zyban",
|
| 2980 |
+
"|",
|
| 2981 |
+
"}",
|
| 2982 |
+
"\u00a0",
|
| 2983 |
+
"\u00ac",
|
| 2984 |
+
"\u00ac_\u00ac",
|
| 2985 |
+
"\u00af",
|
| 2986 |
+
"\u00af\\(x)/\u00af",
|
| 2987 |
+
"\u00af\\(\u30c4)/\u00af",
|
| 2988 |
+
"\u00b0",
|
| 2989 |
+
"\u00b0C.",
|
| 2990 |
+
"\u00b0F.",
|
| 2991 |
+
"\u00b0K.",
|
| 2992 |
+
"\u00b0X.",
|
| 2993 |
+
"\u00b0c.",
|
| 2994 |
+
"\u00b0f.",
|
| 2995 |
+
"\u00b0k.",
|
| 2996 |
+
"\u00b0x.",
|
| 2997 |
+
"\u00e4",
|
| 2998 |
+
"\u00e4.",
|
| 2999 |
+
"\u00f6",
|
| 3000 |
+
"\u00f6.",
|
| 3001 |
+
"\u00fc",
|
| 3002 |
+
"\u00fc.",
|
| 3003 |
+
"\u0ca0",
|
| 3004 |
+
"\u0ca0_\u0ca0",
|
| 3005 |
+
"\u0ca0\ufe35\u0ca0",
|
| 3006 |
+
"\u2013",
|
| 3007 |
+
"\u201306",
|
| 3008 |
+
"\u201310",
|
| 3009 |
+
"\u201312",
|
| 3010 |
+
"\u201320",
|
| 3011 |
+
"\u2014",
|
| 3012 |
+
"\u2018",
|
| 3013 |
+
"\u2018S",
|
| 3014 |
+
"\u2018X",
|
| 3015 |
+
"\u2018s",
|
| 3016 |
+
"\u2018x",
|
| 3017 |
+
"\u2019",
|
| 3018 |
+
"\u2019-(",
|
| 3019 |
+
"\u2019-)",
|
| 3020 |
+
"\u2019Cause",
|
| 3021 |
+
"\u2019Cos",
|
| 3022 |
+
"\u2019Coz",
|
| 3023 |
+
"\u2019Cuz",
|
| 3024 |
+
"\u2019S",
|
| 3025 |
+
"\u2019X",
|
| 3026 |
+
"\u2019Xxx",
|
| 3027 |
+
"\u2019Xxxxx",
|
| 3028 |
+
"\u2019am",
|
| 3029 |
+
"\u2019bout",
|
| 3030 |
+
"\u2019cause",
|
| 3031 |
+
"\u2019cos",
|
| 3032 |
+
"\u2019coz",
|
| 3033 |
+
"\u2019cuz",
|
| 3034 |
+
"\u2019d",
|
| 3035 |
+
"\u2019em",
|
| 3036 |
+
"\u2019ll",
|
| 3037 |
+
"\u2019m",
|
| 3038 |
+
"\u2019nuff",
|
| 3039 |
+
"\u2019re",
|
| 3040 |
+
"\u2019s",
|
| 3041 |
+
"\u2019ve",
|
| 3042 |
+
"\u2019x",
|
| 3043 |
+
"\u2019xx",
|
| 3044 |
+
"\u2019xxx",
|
| 3045 |
+
"\u2019xxxx",
|
| 3046 |
+
"\u2019y",
|
| 3047 |
+
"\u2019\u2019",
|
| 3048 |
+
"\u2501",
|
| 3049 |
+
"\u253b",
|
| 3050 |
+
"\u253b\u2501\u253b",
|
| 3051 |
+
"\u256f",
|
| 3052 |
+
"\u25a1",
|
| 3053 |
+
"\ufe35",
|
| 3054 |
+
"\uff09"
|
| 3055 |
+
]
|
vocab/vectors
ADDED
|
Binary file (128 Bytes). View file
|
|
|
vocab/vectors.cfg
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"mode":"default"
|
| 3 |
+
}
|