Upload spaCy resume-NER model
Browse files- .gitattributes +5 -0
- model-best/config.cfg +145 -0
- model-best/meta.json +76 -0
- model-best/ner/cfg +13 -0
- model-best/ner/model +3 -0
- model-best/ner/moves +3 -0
- model-best/tok2vec/cfg +3 -0
- model-best/tok2vec/model +3 -0
- model-best/tokenizer +3 -0
- model-best/vocab/key2row +1 -0
- model-best/vocab/lookups.bin +3 -0
- model-best/vocab/strings.json +2239 -0
- model-best/vocab/vectors +3 -0
- model-best/vocab/vectors.cfg +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,8 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
model-best/ner/model filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
model-best/ner/moves filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
model-best/tok2vec/model filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
model-best/tokenizer filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
model-best/vocab/vectors filter=lfs diff=lfs merge=lfs -text
|
model-best/config.cfg
ADDED
|
@@ -0,0 +1,145 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
+
vectors = {"@vectors":"spacy.Vectors.v1"}
|
| 21 |
+
|
| 22 |
+
[components]
|
| 23 |
+
|
| 24 |
+
[components.ner]
|
| 25 |
+
factory = "ner"
|
| 26 |
+
incorrect_spans_key = null
|
| 27 |
+
moves = null
|
| 28 |
+
scorer = {"@scorers":"spacy.ner_scorer.v1"}
|
| 29 |
+
update_with_oracle_cut_size = 100
|
| 30 |
+
|
| 31 |
+
[components.ner.model]
|
| 32 |
+
@architectures = "spacy.TransitionBasedParser.v2"
|
| 33 |
+
state_type = "ner"
|
| 34 |
+
extra_state_tokens = false
|
| 35 |
+
hidden_width = 64
|
| 36 |
+
maxout_pieces = 2
|
| 37 |
+
use_upper = true
|
| 38 |
+
nO = null
|
| 39 |
+
|
| 40 |
+
[components.ner.model.tok2vec]
|
| 41 |
+
@architectures = "spacy.Tok2VecListener.v1"
|
| 42 |
+
width = ${components.tok2vec.model.encode.width}
|
| 43 |
+
upstream = "*"
|
| 44 |
+
|
| 45 |
+
[components.tok2vec]
|
| 46 |
+
factory = "tok2vec"
|
| 47 |
+
|
| 48 |
+
[components.tok2vec.model]
|
| 49 |
+
@architectures = "spacy.Tok2Vec.v2"
|
| 50 |
+
|
| 51 |
+
[components.tok2vec.model.embed]
|
| 52 |
+
@architectures = "spacy.MultiHashEmbed.v2"
|
| 53 |
+
width = ${components.tok2vec.model.encode.width}
|
| 54 |
+
attrs = ["NORM","PREFIX","SUFFIX","SHAPE"]
|
| 55 |
+
rows = [5000,1000,2500,2500]
|
| 56 |
+
include_static_vectors = false
|
| 57 |
+
|
| 58 |
+
[components.tok2vec.model.encode]
|
| 59 |
+
@architectures = "spacy.MaxoutWindowEncoder.v2"
|
| 60 |
+
width = 96
|
| 61 |
+
depth = 4
|
| 62 |
+
window_size = 1
|
| 63 |
+
maxout_pieces = 3
|
| 64 |
+
|
| 65 |
+
[corpora]
|
| 66 |
+
|
| 67 |
+
[corpora.dev]
|
| 68 |
+
@readers = "spacy.Corpus.v1"
|
| 69 |
+
path = ${paths.dev}
|
| 70 |
+
max_length = 0
|
| 71 |
+
gold_preproc = false
|
| 72 |
+
limit = 0
|
| 73 |
+
augmenter = null
|
| 74 |
+
|
| 75 |
+
[corpora.train]
|
| 76 |
+
@readers = "spacy.Corpus.v1"
|
| 77 |
+
path = ${paths.train}
|
| 78 |
+
max_length = 0
|
| 79 |
+
gold_preproc = false
|
| 80 |
+
limit = 0
|
| 81 |
+
augmenter = null
|
| 82 |
+
|
| 83 |
+
[training]
|
| 84 |
+
dev_corpus = "corpora.dev"
|
| 85 |
+
train_corpus = "corpora.train"
|
| 86 |
+
seed = ${system.seed}
|
| 87 |
+
gpu_allocator = ${system.gpu_allocator}
|
| 88 |
+
dropout = 0.1
|
| 89 |
+
accumulate_gradient = 1
|
| 90 |
+
patience = 1600
|
| 91 |
+
max_epochs = 0
|
| 92 |
+
max_steps = 20000
|
| 93 |
+
eval_frequency = 200
|
| 94 |
+
frozen_components = []
|
| 95 |
+
annotating_components = []
|
| 96 |
+
before_to_disk = null
|
| 97 |
+
before_update = null
|
| 98 |
+
|
| 99 |
+
[training.batcher]
|
| 100 |
+
@batchers = "spacy.batch_by_words.v1"
|
| 101 |
+
discard_oversize = false
|
| 102 |
+
tolerance = 0.2
|
| 103 |
+
get_length = null
|
| 104 |
+
|
| 105 |
+
[training.batcher.size]
|
| 106 |
+
@schedules = "compounding.v1"
|
| 107 |
+
start = 100
|
| 108 |
+
stop = 1000
|
| 109 |
+
compound = 1.001
|
| 110 |
+
t = 0.0
|
| 111 |
+
|
| 112 |
+
[training.logger]
|
| 113 |
+
@loggers = "spacy.ConsoleLogger.v1"
|
| 114 |
+
progress_bar = false
|
| 115 |
+
|
| 116 |
+
[training.optimizer]
|
| 117 |
+
@optimizers = "Adam.v1"
|
| 118 |
+
beta1 = 0.9
|
| 119 |
+
beta2 = 0.999
|
| 120 |
+
L2_is_weight_decay = true
|
| 121 |
+
L2 = 0.01
|
| 122 |
+
grad_clip = 1.0
|
| 123 |
+
use_averages = false
|
| 124 |
+
eps = 0.00000001
|
| 125 |
+
learn_rate = 0.001
|
| 126 |
+
|
| 127 |
+
[training.score_weights]
|
| 128 |
+
ents_f = 1.0
|
| 129 |
+
ents_p = 0.0
|
| 130 |
+
ents_r = 0.0
|
| 131 |
+
ents_per_type = null
|
| 132 |
+
|
| 133 |
+
[pretraining]
|
| 134 |
+
|
| 135 |
+
[initialize]
|
| 136 |
+
vectors = ${paths.vectors}
|
| 137 |
+
init_tok2vec = ${paths.init_tok2vec}
|
| 138 |
+
vocab_data = null
|
| 139 |
+
lookups = null
|
| 140 |
+
before_init = null
|
| 141 |
+
after_init = null
|
| 142 |
+
|
| 143 |
+
[initialize.components]
|
| 144 |
+
|
| 145 |
+
[initialize.tokenizer]
|
model-best/meta.json
ADDED
|
@@ -0,0 +1,76 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"lang":"en",
|
| 3 |
+
"name":"pipeline",
|
| 4 |
+
"version":"0.0.0",
|
| 5 |
+
"spacy_version":">=3.8.5,<3.9.0",
|
| 6 |
+
"description":"",
|
| 7 |
+
"author":"",
|
| 8 |
+
"email":"",
|
| 9 |
+
"url":"",
|
| 10 |
+
"license":"",
|
| 11 |
+
"spacy_git_version":"d0c705c",
|
| 12 |
+
"vectors":{
|
| 13 |
+
"width":0,
|
| 14 |
+
"vectors":0,
|
| 15 |
+
"keys":0,
|
| 16 |
+
"name":null,
|
| 17 |
+
"mode":"default"
|
| 18 |
+
},
|
| 19 |
+
"labels":{
|
| 20 |
+
"tok2vec":[
|
| 21 |
+
|
| 22 |
+
],
|
| 23 |
+
"ner":[
|
| 24 |
+
"COMPANY",
|
| 25 |
+
"DEGREE",
|
| 26 |
+
"JOB_TITLE",
|
| 27 |
+
"SKILL",
|
| 28 |
+
"UNIVERSITY"
|
| 29 |
+
]
|
| 30 |
+
},
|
| 31 |
+
"pipeline":[
|
| 32 |
+
"tok2vec",
|
| 33 |
+
"ner"
|
| 34 |
+
],
|
| 35 |
+
"components":[
|
| 36 |
+
"tok2vec",
|
| 37 |
+
"ner"
|
| 38 |
+
],
|
| 39 |
+
"disabled":[
|
| 40 |
+
|
| 41 |
+
],
|
| 42 |
+
"performance":{
|
| 43 |
+
"ents_f":1.0,
|
| 44 |
+
"ents_p":1.0,
|
| 45 |
+
"ents_r":1.0,
|
| 46 |
+
"ents_per_type":{
|
| 47 |
+
"SKILL":{
|
| 48 |
+
"p":1.0,
|
| 49 |
+
"r":1.0,
|
| 50 |
+
"f":1.0
|
| 51 |
+
},
|
| 52 |
+
"DEGREE":{
|
| 53 |
+
"p":1.0,
|
| 54 |
+
"r":1.0,
|
| 55 |
+
"f":1.0
|
| 56 |
+
},
|
| 57 |
+
"COMPANY":{
|
| 58 |
+
"p":1.0,
|
| 59 |
+
"r":1.0,
|
| 60 |
+
"f":1.0
|
| 61 |
+
},
|
| 62 |
+
"UNIVERSITY":{
|
| 63 |
+
"p":1.0,
|
| 64 |
+
"r":1.0,
|
| 65 |
+
"f":1.0
|
| 66 |
+
},
|
| 67 |
+
"JOB_TITLE":{
|
| 68 |
+
"p":1.0,
|
| 69 |
+
"r":1.0,
|
| 70 |
+
"f":1.0
|
| 71 |
+
}
|
| 72 |
+
},
|
| 73 |
+
"tok2vec_loss":0.000221931,
|
| 74 |
+
"ner_loss":0.0002312875
|
| 75 |
+
}
|
| 76 |
+
}
|
model-best/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 |
+
}
|
model-best/ner/model
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4e8e73c6ffe0ff54da961310ba06b5c9f97f879082359e47c95ef830de98e1c0
|
| 3 |
+
size 131668
|
model-best/ner/moves
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3c86604123ef43810a94141548613d3b8a146d0ad0aaf15b5126eeeb6af535c8
|
| 3 |
+
size 344
|
model-best/tok2vec/cfg
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
|
| 3 |
+
}
|
model-best/tok2vec/model
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:338df7eba4100ec2e8105441524ce3c578b537a1bbc7a4236e3b4e24b0f0b8b7
|
| 3 |
+
size 6009091
|
model-best/tokenizer
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b014e8bba4958b120af2d0c1c63eabb7c00379f2bacaf10df7c5325efd2ea467
|
| 3 |
+
size 77066
|
model-best/vocab/key2row
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
�
|
model-best/vocab/lookups.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:76be8b528d0075f7aae98d6fa57a6d3c83ae480a8469e668d7b0af968995ac71
|
| 3 |
+
size 1
|
model-best/vocab/strings.json
ADDED
|
@@ -0,0 +1,2239 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
"\t",
|
| 3 |
+
"\n",
|
| 4 |
+
" ",
|
| 5 |
+
" ",
|
| 6 |
+
"\"",
|
| 7 |
+
"'",
|
| 8 |
+
"''",
|
| 9 |
+
"'-(",
|
| 10 |
+
"'-)",
|
| 11 |
+
"'Cause",
|
| 12 |
+
"'Cos",
|
| 13 |
+
"'Coz",
|
| 14 |
+
"'Cuz",
|
| 15 |
+
"'S",
|
| 16 |
+
"'X",
|
| 17 |
+
"'Xxx",
|
| 18 |
+
"'Xxxxx",
|
| 19 |
+
"'am",
|
| 20 |
+
"'bout",
|
| 21 |
+
"'cause",
|
| 22 |
+
"'cos",
|
| 23 |
+
"'coz",
|
| 24 |
+
"'cuz",
|
| 25 |
+
"'d",
|
| 26 |
+
"'em",
|
| 27 |
+
"'ll",
|
| 28 |
+
"'m",
|
| 29 |
+
"'nuff",
|
| 30 |
+
"'re",
|
| 31 |
+
"'s",
|
| 32 |
+
"'ve",
|
| 33 |
+
"'x",
|
| 34 |
+
"'xx",
|
| 35 |
+
"'xxx",
|
| 36 |
+
"'xxxx",
|
| 37 |
+
"'y",
|
| 38 |
+
"(",
|
| 39 |
+
"(((",
|
| 40 |
+
"(*>",
|
| 41 |
+
"(*_*)",
|
| 42 |
+
"(-8",
|
| 43 |
+
"(-:",
|
| 44 |
+
"(-;",
|
| 45 |
+
"(-_-)",
|
| 46 |
+
"(-d",
|
| 47 |
+
"(._.)",
|
| 48 |
+
"(:",
|
| 49 |
+
"(;",
|
| 50 |
+
"(=",
|
| 51 |
+
"(>_<)",
|
| 52 |
+
"(^_^)",
|
| 53 |
+
"(o:",
|
| 54 |
+
"(x:",
|
| 55 |
+
"(x_x)",
|
| 56 |
+
"(\u00ac_\u00ac)",
|
| 57 |
+
"(\u0ca0_\u0ca0)",
|
| 58 |
+
"(\u256f\u00b0\u25a1\u00b0\uff09\u256f\ufe35\u253b\u2501\u253b",
|
| 59 |
+
")",
|
| 60 |
+
")))",
|
| 61 |
+
")-:",
|
| 62 |
+
")/\u00af",
|
| 63 |
+
"):",
|
| 64 |
+
"*",
|
| 65 |
+
",",
|
| 66 |
+
"-",
|
| 67 |
+
"-((",
|
| 68 |
+
"-))",
|
| 69 |
+
"-/",
|
| 70 |
+
"-0",
|
| 71 |
+
"-3",
|
| 72 |
+
"-8",
|
| 73 |
+
"-D",
|
| 74 |
+
"-Mobile",
|
| 75 |
+
"-O",
|
| 76 |
+
"-P",
|
| 77 |
+
"-X",
|
| 78 |
+
"-Xxxxx",
|
| 79 |
+
"-_-",
|
| 80 |
+
"-__-",
|
| 81 |
+
"-d",
|
| 82 |
+
"-mobile",
|
| 83 |
+
"-o",
|
| 84 |
+
"-p",
|
| 85 |
+
"-x",
|
| 86 |
+
"-xxxx",
|
| 87 |
+
"-|",
|
| 88 |
+
".",
|
| 89 |
+
".C.",
|
| 90 |
+
".D.",
|
| 91 |
+
".E.",
|
| 92 |
+
".G.",
|
| 93 |
+
".H.",
|
| 94 |
+
".J.",
|
| 95 |
+
".M.",
|
| 96 |
+
".N.",
|
| 97 |
+
".Y.",
|
| 98 |
+
"._.",
|
| 99 |
+
".d.",
|
| 100 |
+
".e.",
|
| 101 |
+
".g.",
|
| 102 |
+
".m.",
|
| 103 |
+
".n.",
|
| 104 |
+
".s.",
|
| 105 |
+
"/",
|
| 106 |
+
"/10",
|
| 107 |
+
"/3",
|
| 108 |
+
"/d",
|
| 109 |
+
"/or",
|
| 110 |
+
"0",
|
| 111 |
+
"0.0",
|
| 112 |
+
"0.o",
|
| 113 |
+
"001",
|
| 114 |
+
"005",
|
| 115 |
+
"009",
|
| 116 |
+
"010",
|
| 117 |
+
"011",
|
| 118 |
+
"012",
|
| 119 |
+
"013",
|
| 120 |
+
"015",
|
| 121 |
+
"016",
|
| 122 |
+
"018",
|
| 123 |
+
"0_0",
|
| 124 |
+
"0_o",
|
| 125 |
+
"1",
|
| 126 |
+
"1.5",
|
| 127 |
+
"10",
|
| 128 |
+
"10a.m",
|
| 129 |
+
"10a.m.",
|
| 130 |
+
"10p.m",
|
| 131 |
+
"10p.m.",
|
| 132 |
+
"11",
|
| 133 |
+
"11a.m",
|
| 134 |
+
"11a.m.",
|
| 135 |
+
"11p.m",
|
| 136 |
+
"11p.m.",
|
| 137 |
+
"12",
|
| 138 |
+
"12a.m",
|
| 139 |
+
"12a.m.",
|
| 140 |
+
"12p.m",
|
| 141 |
+
"12p.m.",
|
| 142 |
+
"16.\\n\\n\\n\\nANDROID",
|
| 143 |
+
"16.\\n\\n\\n\\nandroid",
|
| 144 |
+
"1999",
|
| 145 |
+
"1a.m",
|
| 146 |
+
"1a.m.",
|
| 147 |
+
"1p.m",
|
| 148 |
+
"1p.m.",
|
| 149 |
+
"2",
|
| 150 |
+
"2001",
|
| 151 |
+
"2005",
|
| 152 |
+
"2009",
|
| 153 |
+
"2010",
|
| 154 |
+
"2011",
|
| 155 |
+
"2012",
|
| 156 |
+
"2013",
|
| 157 |
+
"2015",
|
| 158 |
+
"2016",
|
| 159 |
+
"2018",
|
| 160 |
+
"24",
|
| 161 |
+
"28",
|
| 162 |
+
"29",
|
| 163 |
+
"2EE",
|
| 164 |
+
"2R2",
|
| 165 |
+
"2a.m",
|
| 166 |
+
"2a.m.",
|
| 167 |
+
"2ee",
|
| 168 |
+
"2p.m",
|
| 169 |
+
"2p.m.",
|
| 170 |
+
"2r2",
|
| 171 |
+
"3",
|
| 172 |
+
"3-",
|
| 173 |
+
"33",
|
| 174 |
+
"333",
|
| 175 |
+
"3a.m",
|
| 176 |
+
"3a.m.",
|
| 177 |
+
"3p.m",
|
| 178 |
+
"3p.m.",
|
| 179 |
+
"4",
|
| 180 |
+
"4a.m",
|
| 181 |
+
"4a.m.",
|
| 182 |
+
"4p.m",
|
| 183 |
+
"4p.m.",
|
| 184 |
+
"5",
|
| 185 |
+
"5a.m",
|
| 186 |
+
"5a.m.",
|
| 187 |
+
"5p.m",
|
| 188 |
+
"5p.m.",
|
| 189 |
+
"6",
|
| 190 |
+
"6a.m",
|
| 191 |
+
"6a.m.",
|
| 192 |
+
"6p.m",
|
| 193 |
+
"6p.m.",
|
| 194 |
+
"7",
|
| 195 |
+
"7a.m",
|
| 196 |
+
"7a.m.",
|
| 197 |
+
"7p.m",
|
| 198 |
+
"7p.m.",
|
| 199 |
+
"8",
|
| 200 |
+
"8)",
|
| 201 |
+
"8-",
|
| 202 |
+
"8-)",
|
| 203 |
+
"8-D",
|
| 204 |
+
"8-d",
|
| 205 |
+
"8D",
|
| 206 |
+
"8a.m",
|
| 207 |
+
"8a.m.",
|
| 208 |
+
"8d",
|
| 209 |
+
"8p.m",
|
| 210 |
+
"8p.m.",
|
| 211 |
+
"9",
|
| 212 |
+
"999",
|
| 213 |
+
"9a.m",
|
| 214 |
+
"9a.m.",
|
| 215 |
+
"9p.m",
|
| 216 |
+
"9p.m.",
|
| 217 |
+
":",
|
| 218 |
+
":'(",
|
| 219 |
+
":')",
|
| 220 |
+
":'-(",
|
| 221 |
+
":'-)",
|
| 222 |
+
":(",
|
| 223 |
+
":((",
|
| 224 |
+
":(((",
|
| 225 |
+
":()",
|
| 226 |
+
":)",
|
| 227 |
+
":))",
|
| 228 |
+
":)))",
|
| 229 |
+
":*",
|
| 230 |
+
":-(",
|
| 231 |
+
":-((",
|
| 232 |
+
":-(((",
|
| 233 |
+
":-)",
|
| 234 |
+
":-))",
|
| 235 |
+
":-)))",
|
| 236 |
+
":-*",
|
| 237 |
+
":-/",
|
| 238 |
+
":-0",
|
| 239 |
+
":-3",
|
| 240 |
+
":->",
|
| 241 |
+
":-D",
|
| 242 |
+
":-O",
|
| 243 |
+
":-P",
|
| 244 |
+
":-X",
|
| 245 |
+
":-]",
|
| 246 |
+
":-d",
|
| 247 |
+
":-o",
|
| 248 |
+
":-p",
|
| 249 |
+
":-x",
|
| 250 |
+
":-|",
|
| 251 |
+
":-}",
|
| 252 |
+
":/",
|
| 253 |
+
":0",
|
| 254 |
+
":1",
|
| 255 |
+
":3",
|
| 256 |
+
":>",
|
| 257 |
+
":D",
|
| 258 |
+
":O",
|
| 259 |
+
":P",
|
| 260 |
+
":X",
|
| 261 |
+
":]",
|
| 262 |
+
":d",
|
| 263 |
+
":o",
|
| 264 |
+
":o)",
|
| 265 |
+
":p",
|
| 266 |
+
":x",
|
| 267 |
+
":x)",
|
| 268 |
+
":|",
|
| 269 |
+
":}",
|
| 270 |
+
":\u2019(",
|
| 271 |
+
":\u2019)",
|
| 272 |
+
":\u2019-(",
|
| 273 |
+
":\u2019-)",
|
| 274 |
+
";",
|
| 275 |
+
";)",
|
| 276 |
+
";-)",
|
| 277 |
+
";-D",
|
| 278 |
+
";-X",
|
| 279 |
+
";-d",
|
| 280 |
+
";D",
|
| 281 |
+
";X",
|
| 282 |
+
";_;",
|
| 283 |
+
";d",
|
| 284 |
+
"<",
|
| 285 |
+
"<.<",
|
| 286 |
+
"</3",
|
| 287 |
+
"</d",
|
| 288 |
+
"<3",
|
| 289 |
+
"<33",
|
| 290 |
+
"<333",
|
| 291 |
+
"<d",
|
| 292 |
+
"<dd",
|
| 293 |
+
"<ddd",
|
| 294 |
+
"<space>",
|
| 295 |
+
"<xxxx>",
|
| 296 |
+
"=",
|
| 297 |
+
"=(",
|
| 298 |
+
"=)",
|
| 299 |
+
"=/",
|
| 300 |
+
"=3",
|
| 301 |
+
"=D",
|
| 302 |
+
"=X",
|
| 303 |
+
"=[",
|
| 304 |
+
"=]",
|
| 305 |
+
"=d",
|
| 306 |
+
"=|",
|
| 307 |
+
">",
|
| 308 |
+
">.<",
|
| 309 |
+
">.>",
|
| 310 |
+
">:(",
|
| 311 |
+
">:o",
|
| 312 |
+
">:x",
|
| 313 |
+
"><(((*>",
|
| 314 |
+
"@",
|
| 315 |
+
"@_@",
|
| 316 |
+
"A",
|
| 317 |
+
"ACHIEVEMENT",
|
| 318 |
+
"AD",
|
| 319 |
+
"AJAX",
|
| 320 |
+
"ANY",
|
| 321 |
+
"ASE",
|
| 322 |
+
"AX-",
|
| 323 |
+
"Abstract",
|
| 324 |
+
"Access",
|
| 325 |
+
"Adm",
|
| 326 |
+
"Adm.",
|
| 327 |
+
"Admin",
|
| 328 |
+
"Advance",
|
| 329 |
+
"Agri",
|
| 330 |
+
"Ai",
|
| 331 |
+
"Ajax",
|
| 332 |
+
"Ak",
|
| 333 |
+
"Ak.",
|
| 334 |
+
"Ala",
|
| 335 |
+
"Ala.",
|
| 336 |
+
"Alabama",
|
| 337 |
+
"Alaska",
|
| 338 |
+
"Amravati",
|
| 339 |
+
"An",
|
| 340 |
+
"And",
|
| 341 |
+
"Andheri",
|
| 342 |
+
"Android",
|
| 343 |
+
"Android)\\n\\n\\n\\nME",
|
| 344 |
+
"Android.\\n\\nDATABASE",
|
| 345 |
+
"Android\\n\\n\\n\\nPROGRAMMING",
|
| 346 |
+
"Angular",
|
| 347 |
+
"AngularJs",
|
| 348 |
+
"ApacheTomcatServer",
|
| 349 |
+
"Api",
|
| 350 |
+
"App",
|
| 351 |
+
"Apr",
|
| 352 |
+
"Apr.",
|
| 353 |
+
"April",
|
| 354 |
+
"Architecture",
|
| 355 |
+
"Are",
|
| 356 |
+
"Ariz",
|
| 357 |
+
"Ariz.",
|
| 358 |
+
"Arizona",
|
| 359 |
+
"Ark",
|
| 360 |
+
"Ark.",
|
| 361 |
+
"Arkansas",
|
| 362 |
+
"Assignment",
|
| 363 |
+
"Assurance",
|
| 364 |
+
"Atom",
|
| 365 |
+
"Aug",
|
| 366 |
+
"Aug.",
|
| 367 |
+
"August",
|
| 368 |
+
"AzureWeb",
|
| 369 |
+
"AzurewebServices",
|
| 370 |
+
"B",
|
| 371 |
+
"B.C.A",
|
| 372 |
+
"BE",
|
| 373 |
+
"Bachelor",
|
| 374 |
+
"Billing",
|
| 375 |
+
"Boot",
|
| 376 |
+
"Boot-",
|
| 377 |
+
"BootStrap.\\n\\nArchitecture",
|
| 378 |
+
"Bootstrap",
|
| 379 |
+
"Bootstrap.\\n\\n\\n\\nPROJECT",
|
| 380 |
+
"Bros",
|
| 381 |
+
"Bros.",
|
| 382 |
+
"C",
|
| 383 |
+
"C'm",
|
| 384 |
+
"C++",
|
| 385 |
+
"C.",
|
| 386 |
+
"C.A",
|
| 387 |
+
"CAL",
|
| 388 |
+
"COE",
|
| 389 |
+
"COMPANY",
|
| 390 |
+
"CONFERENCE",
|
| 391 |
+
"COURSES",
|
| 392 |
+
"CSS3",
|
| 393 |
+
"CTS",
|
| 394 |
+
"Ca",
|
| 395 |
+
"Calif",
|
| 396 |
+
"Calif.",
|
| 397 |
+
"California",
|
| 398 |
+
"Can",
|
| 399 |
+
"Cause",
|
| 400 |
+
"Certificate",
|
| 401 |
+
"Co",
|
| 402 |
+
"Co.",
|
| 403 |
+
"College\\n\\nJanuary",
|
| 404 |
+
"Colo",
|
| 405 |
+
"Colo.",
|
| 406 |
+
"Colorado",
|
| 407 |
+
"Command",
|
| 408 |
+
"Company",
|
| 409 |
+
"Company.\\n\\nDuration",
|
| 410 |
+
"Completed\\n\\n\u00e2\u0080\u00a2",
|
| 411 |
+
"Computer",
|
| 412 |
+
"Computing",
|
| 413 |
+
"Conn",
|
| 414 |
+
"Conn.",
|
| 415 |
+
"Connecticut",
|
| 416 |
+
"Core",
|
| 417 |
+
"Corp",
|
| 418 |
+
"Corp.",
|
| 419 |
+
"Cos",
|
| 420 |
+
"Could",
|
| 421 |
+
"Course",
|
| 422 |
+
"Coz",
|
| 423 |
+
"Currently",
|
| 424 |
+
"Cuz",
|
| 425 |
+
"C\u2019m",
|
| 426 |
+
"D",
|
| 427 |
+
"D.",
|
| 428 |
+
"D.C.",
|
| 429 |
+
"DBC",
|
| 430 |
+
"DEGREE",
|
| 431 |
+
"DETAILS",
|
| 432 |
+
"DETAILS\\n\\n#1",
|
| 433 |
+
"DONE",
|
| 434 |
+
"Dare",
|
| 435 |
+
"Data",
|
| 436 |
+
"Database",
|
| 437 |
+
"Dec",
|
| 438 |
+
"Dec.",
|
| 439 |
+
"December",
|
| 440 |
+
"Deduplication",
|
| 441 |
+
"Del",
|
| 442 |
+
"Del.",
|
| 443 |
+
"Delaware",
|
| 444 |
+
"Details",
|
| 445 |
+
"Detector",
|
| 446 |
+
"Developed",
|
| 447 |
+
"Developer",
|
| 448 |
+
"Developer.\\n\\ncompany",
|
| 449 |
+
"Developer\\n\\nSkill",
|
| 450 |
+
"Development",
|
| 451 |
+
"Devices",
|
| 452 |
+
"Did",
|
| 453 |
+
"Dinman",
|
| 454 |
+
"Diploma",
|
| 455 |
+
"Do",
|
| 456 |
+
"Does",
|
| 457 |
+
"Doin",
|
| 458 |
+
"Doin'",
|
| 459 |
+
"Doin\u2019",
|
| 460 |
+
"Dr",
|
| 461 |
+
"Dr.",
|
| 462 |
+
"Duration",
|
| 463 |
+
"E",
|
| 464 |
+
"E.G.",
|
| 465 |
+
"E.g",
|
| 466 |
+
"E.g.",
|
| 467 |
+
"ECT",
|
| 468 |
+
"EE-",
|
| 469 |
+
"ENT",
|
| 470 |
+
"Eclipse",
|
| 471 |
+
"Education",
|
| 472 |
+
"Employment",
|
| 473 |
+
"Engineering",
|
| 474 |
+
"Exprience",
|
| 475 |
+
"F",
|
| 476 |
+
"F.",
|
| 477 |
+
"Facebook",
|
| 478 |
+
"Feb",
|
| 479 |
+
"Feb.",
|
| 480 |
+
"February",
|
| 481 |
+
"Fla",
|
| 482 |
+
"Fla.",
|
| 483 |
+
"Florida",
|
| 484 |
+
"G",
|
| 485 |
+
"G.N.",
|
| 486 |
+
"GST",
|
| 487 |
+
"Ga",
|
| 488 |
+
"Ga.",
|
| 489 |
+
"Gen",
|
| 490 |
+
"Gen.",
|
| 491 |
+
"Generate",
|
| 492 |
+
"Generation",
|
| 493 |
+
"Georgia",
|
| 494 |
+
"Goin",
|
| 495 |
+
"Goin'",
|
| 496 |
+
"Goin\u2019",
|
| 497 |
+
"Gon",
|
| 498 |
+
"Got",
|
| 499 |
+
"Gov",
|
| 500 |
+
"Gov.",
|
| 501 |
+
"H",
|
| 502 |
+
"H.S.C",
|
| 503 |
+
"HANDLED:\\n\\nMS",
|
| 504 |
+
"HIP",
|
| 505 |
+
"HTML",
|
| 506 |
+
"HTML5",
|
| 507 |
+
"Had",
|
| 508 |
+
"Has",
|
| 509 |
+
"Have",
|
| 510 |
+
"Havin",
|
| 511 |
+
"Havin'",
|
| 512 |
+
"Havin\u2019",
|
| 513 |
+
"He",
|
| 514 |
+
"He's",
|
| 515 |
+
"He\u2019s",
|
| 516 |
+
"Hibernate",
|
| 517 |
+
"High",
|
| 518 |
+
"How",
|
| 519 |
+
"How's",
|
| 520 |
+
"How\u2019s",
|
| 521 |
+
"I",
|
| 522 |
+
"I.E.",
|
| 523 |
+
"I.e",
|
| 524 |
+
"I.e.",
|
| 525 |
+
"IAS",
|
| 526 |
+
"IDE",
|
| 527 |
+
"IIT",
|
| 528 |
+
"ILL",
|
| 529 |
+
"ILS",
|
| 530 |
+
"ING",
|
| 531 |
+
"IONIC",
|
| 532 |
+
"ISO",
|
| 533 |
+
"ITY",
|
| 534 |
+
"Ia",
|
| 535 |
+
"Ia.",
|
| 536 |
+
"Id",
|
| 537 |
+
"Id.",
|
| 538 |
+
"Idaho",
|
| 539 |
+
"Ill",
|
| 540 |
+
"Ill.",
|
| 541 |
+
"Illinois",
|
| 542 |
+
"In",
|
| 543 |
+
"Inc",
|
| 544 |
+
"Inc.",
|
| 545 |
+
"Ind",
|
| 546 |
+
"Ind.",
|
| 547 |
+
"India",
|
| 548 |
+
"Indiana",
|
| 549 |
+
"Information",
|
| 550 |
+
"Infrasoft",
|
| 551 |
+
"Institute",
|
| 552 |
+
"Internettechnologiesand",
|
| 553 |
+
"Iowa",
|
| 554 |
+
"Is",
|
| 555 |
+
"It",
|
| 556 |
+
"It's",
|
| 557 |
+
"It\u2019s",
|
| 558 |
+
"J",
|
| 559 |
+
"J2EE",
|
| 560 |
+
"JAX",
|
| 561 |
+
"JDBC",
|
| 562 |
+
"JOB",
|
| 563 |
+
"JOB_TITLE",
|
| 564 |
+
"JQuery",
|
| 565 |
+
"JS-",
|
| 566 |
+
"JSF",
|
| 567 |
+
"JSON",
|
| 568 |
+
"JSP",
|
| 569 |
+
"Jan",
|
| 570 |
+
"Jan.",
|
| 571 |
+
"January",
|
| 572 |
+
"Java",
|
| 573 |
+
"Java)\\n\\n\\n\\nSUBJECTS",
|
| 574 |
+
"Java,\\n\\nAdvance",
|
| 575 |
+
"JavaScript",
|
| 576 |
+
"Javascript",
|
| 577 |
+
"Jquery",
|
| 578 |
+
"Jquery\\n\\nAjax",
|
| 579 |
+
"Jr",
|
| 580 |
+
"Jr.",
|
| 581 |
+
"Js",
|
| 582 |
+
"Jul",
|
| 583 |
+
"Jul.",
|
| 584 |
+
"July",
|
| 585 |
+
"Jun",
|
| 586 |
+
"Jun.",
|
| 587 |
+
"June",
|
| 588 |
+
"Junior",
|
| 589 |
+
"K",
|
| 590 |
+
"K.",
|
| 591 |
+
"K.D.",
|
| 592 |
+
"Kan",
|
| 593 |
+
"Kan.",
|
| 594 |
+
"Kans",
|
| 595 |
+
"Kans.",
|
| 596 |
+
"Kansas",
|
| 597 |
+
"KendoUI",
|
| 598 |
+
"Kentucky",
|
| 599 |
+
"Ky",
|
| 600 |
+
"Ky.",
|
| 601 |
+
"L",
|
| 602 |
+
"LLP.\\n\\ndescription",
|
| 603 |
+
"LLS",
|
| 604 |
+
"La",
|
| 605 |
+
"La.",
|
| 606 |
+
"Languages",
|
| 607 |
+
"Late",
|
| 608 |
+
"Learn",
|
| 609 |
+
"Less",
|
| 610 |
+
"Let",
|
| 611 |
+
"Let's",
|
| 612 |
+
"Let\u2019s",
|
| 613 |
+
"Linux",
|
| 614 |
+
"Location",
|
| 615 |
+
"Login",
|
| 616 |
+
"Louisiana",
|
| 617 |
+
"Lovin",
|
| 618 |
+
"Lovin'",
|
| 619 |
+
"Lovin\u2019",
|
| 620 |
+
"Ltd",
|
| 621 |
+
"Ltd.",
|
| 622 |
+
"M",
|
| 623 |
+
"M.C.A",
|
| 624 |
+
"M.I.T\\n\\nJanuary",
|
| 625 |
+
"MIS",
|
| 626 |
+
"ML-",
|
| 627 |
+
"ML5",
|
| 628 |
+
"MVC",
|
| 629 |
+
"MVC-",
|
| 630 |
+
"Ma'am",
|
| 631 |
+
"Mac",
|
| 632 |
+
"Maharashtra",
|
| 633 |
+
"Management",
|
| 634 |
+
"Mar",
|
| 635 |
+
"Mar.",
|
| 636 |
+
"March",
|
| 637 |
+
"Mass",
|
| 638 |
+
"Mass.",
|
| 639 |
+
"Massachusetts",
|
| 640 |
+
"Master",
|
| 641 |
+
"Masters",
|
| 642 |
+
"Maxgen",
|
| 643 |
+
"May",
|
| 644 |
+
"Ma\u2019am",
|
| 645 |
+
"Md",
|
| 646 |
+
"Md.",
|
| 647 |
+
"Messrs",
|
| 648 |
+
"Messrs.",
|
| 649 |
+
"Mich",
|
| 650 |
+
"Mich.",
|
| 651 |
+
"Michigan",
|
| 652 |
+
"Might",
|
| 653 |
+
"Minn",
|
| 654 |
+
"Minn.",
|
| 655 |
+
"Minnesota",
|
| 656 |
+
"Miss",
|
| 657 |
+
"Miss.",
|
| 658 |
+
"Mississippi",
|
| 659 |
+
"Mo",
|
| 660 |
+
"Mo.",
|
| 661 |
+
"Mobile",
|
| 662 |
+
"Module",
|
| 663 |
+
"Modules",
|
| 664 |
+
"Mont",
|
| 665 |
+
"Mont.",
|
| 666 |
+
"Months.\\n\\n\u00e2\u0080\u00a2",
|
| 667 |
+
"Mount",
|
| 668 |
+
"Mr",
|
| 669 |
+
"Mr.",
|
| 670 |
+
"Mrs",
|
| 671 |
+
"Mrs.",
|
| 672 |
+
"Ms",
|
| 673 |
+
"Ms.",
|
| 674 |
+
"MsSQL",
|
| 675 |
+
"MsSql",
|
| 676 |
+
"Mt",
|
| 677 |
+
"Mt.",
|
| 678 |
+
"Must",
|
| 679 |
+
"My",
|
| 680 |
+
"MySQL",
|
| 681 |
+
"N",
|
| 682 |
+
"N.",
|
| 683 |
+
"N.C.",
|
| 684 |
+
"N.D.",
|
| 685 |
+
"N.H.",
|
| 686 |
+
"N.J.",
|
| 687 |
+
"N.M.",
|
| 688 |
+
"N.Y.",
|
| 689 |
+
"NAL",
|
| 690 |
+
"NCE",
|
| 691 |
+
"NIC",
|
| 692 |
+
"NIIT",
|
| 693 |
+
"Name",
|
| 694 |
+
"Nashik",
|
| 695 |
+
"Nashik\\n\\nJava",
|
| 696 |
+
"Nashik\\n\\nJuly",
|
| 697 |
+
"Neb",
|
| 698 |
+
"Neb.",
|
| 699 |
+
"Nebr",
|
| 700 |
+
"Nebr.",
|
| 701 |
+
"Nebraska",
|
| 702 |
+
"Need",
|
| 703 |
+
"Net",
|
| 704 |
+
"Nev",
|
| 705 |
+
"Nev.",
|
| 706 |
+
"Nevada",
|
| 707 |
+
"New Hampshire",
|
| 708 |
+
"New Jersey",
|
| 709 |
+
"New Mexico",
|
| 710 |
+
"New York",
|
| 711 |
+
"News",
|
| 712 |
+
"North Carolina",
|
| 713 |
+
"North Dakota",
|
| 714 |
+
"Not",
|
| 715 |
+
"Nothin",
|
| 716 |
+
"Nothin'",
|
| 717 |
+
"Nothin\u2019",
|
| 718 |
+
"Nov",
|
| 719 |
+
"Nov.",
|
| 720 |
+
"November",
|
| 721 |
+
"Nuthin",
|
| 722 |
+
"Nuthin'",
|
| 723 |
+
"Nuthin\u2019",
|
| 724 |
+
"O",
|
| 725 |
+
"O'clock",
|
| 726 |
+
"O.O",
|
| 727 |
+
"O.o",
|
| 728 |
+
"OID",
|
| 729 |
+
"ONE",
|
| 730 |
+
"OOT",
|
| 731 |
+
"OS",
|
| 732 |
+
"O_O",
|
| 733 |
+
"O_o",
|
| 734 |
+
"Object",
|
| 735 |
+
"Oct",
|
| 736 |
+
"Oct.",
|
| 737 |
+
"October",
|
| 738 |
+
"Okla",
|
| 739 |
+
"Okla.",
|
| 740 |
+
"Oklahoma",
|
| 741 |
+
"Ol",
|
| 742 |
+
"Ol'",
|
| 743 |
+
"Ol\u2019",
|
| 744 |
+
"OmegaSoft",
|
| 745 |
+
"On",
|
| 746 |
+
"OnesignalWebPushNotifications",
|
| 747 |
+
"OpenSourceTechnologies",
|
| 748 |
+
"Operating",
|
| 749 |
+
"OperatingSystem",
|
| 750 |
+
"Oracle",
|
| 751 |
+
"Oracle\\n\\n\\n\\nNATIONAL",
|
| 752 |
+
"Ore",
|
| 753 |
+
"Ore.",
|
| 754 |
+
"Oregon",
|
| 755 |
+
"Oriented",
|
| 756 |
+
"Ought",
|
| 757 |
+
"O\u2019clock",
|
| 758 |
+
"P",
|
| 759 |
+
"P.",
|
| 760 |
+
"PHP",
|
| 761 |
+
"PPS",
|
| 762 |
+
"PROJECT",
|
| 763 |
+
"Pa",
|
| 764 |
+
"Pa.",
|
| 765 |
+
"Panel",
|
| 766 |
+
"Payment",
|
| 767 |
+
"Payments.\\n\\n\\n\\nINTERNSHIP",
|
| 768 |
+
"Pennsylvania",
|
| 769 |
+
"Ph",
|
| 770 |
+
"Ph.D.",
|
| 771 |
+
"Pimpri",
|
| 772 |
+
"Polytechnic",
|
| 773 |
+
"Posting",
|
| 774 |
+
"Power\\n\\ndescription",
|
| 775 |
+
"Prof",
|
| 776 |
+
"Prof.",
|
| 777 |
+
"Programming",
|
| 778 |
+
"Programming.\\n\\nProject",
|
| 779 |
+
"Pune",
|
| 780 |
+
"Pusad",
|
| 781 |
+
"R",
|
| 782 |
+
"REE",
|
| 783 |
+
"ROOT",
|
| 784 |
+
"Registration",
|
| 785 |
+
"Rep",
|
| 786 |
+
"Rep.",
|
| 787 |
+
"Replete",
|
| 788 |
+
"RestApi",
|
| 789 |
+
"Rev",
|
| 790 |
+
"Rev.",
|
| 791 |
+
"Role",
|
| 792 |
+
"S",
|
| 793 |
+
"S.C",
|
| 794 |
+
"S.C.",
|
| 795 |
+
"S.S.C",
|
| 796 |
+
"SE-",
|
| 797 |
+
"SES",
|
| 798 |
+
"SKILL",
|
| 799 |
+
"SKILLS",
|
| 800 |
+
"SON",
|
| 801 |
+
"SQL",
|
| 802 |
+
"SS3",
|
| 803 |
+
"Salcluster",
|
| 804 |
+
"Sales",
|
| 805 |
+
"Sapkal",
|
| 806 |
+
"School\\n\\nJava",
|
| 807 |
+
"Scripting",
|
| 808 |
+
"Sen",
|
| 809 |
+
"Sen.",
|
| 810 |
+
"Sep",
|
| 811 |
+
"Sep.",
|
| 812 |
+
"Sept",
|
| 813 |
+
"Sept.",
|
| 814 |
+
"September",
|
| 815 |
+
"Service",
|
| 816 |
+
"Services",
|
| 817 |
+
"Servlet",
|
| 818 |
+
"Sha",
|
| 819 |
+
"She",
|
| 820 |
+
"She's",
|
| 821 |
+
"She\u2019s",
|
| 822 |
+
"Should",
|
| 823 |
+
"Sky",
|
| 824 |
+
"Softwares\\n\\n\u00e2\u0080\u00a2",
|
| 825 |
+
"Somethin",
|
| 826 |
+
"Somethin'",
|
| 827 |
+
"Somethin\u2019",
|
| 828 |
+
"South Carolina",
|
| 829 |
+
"Spring",
|
| 830 |
+
"SpringMVC",
|
| 831 |
+
"Sql",
|
| 832 |
+
"St",
|
| 833 |
+
"St.",
|
| 834 |
+
"Stack",
|
| 835 |
+
"Status",
|
| 836 |
+
"Struts",
|
| 837 |
+
"Sublime",
|
| 838 |
+
"Subscriptions",
|
| 839 |
+
"Suit",
|
| 840 |
+
"SunTechnologies",
|
| 841 |
+
"System",
|
| 842 |
+
"T",
|
| 843 |
+
"TAUGHT:\\n\\nC",
|
| 844 |
+
"TECHNICAL",
|
| 845 |
+
"TECHNICALSKILLS",
|
| 846 |
+
"TLE",
|
| 847 |
+
"TML",
|
| 848 |
+
"Tata",
|
| 849 |
+
"Technical",
|
| 850 |
+
"Technologies",
|
| 851 |
+
"Technologies\\n\\nSkill",
|
| 852 |
+
"Technologies\\n\\ndescription",
|
| 853 |
+
"Technology",
|
| 854 |
+
"Tenn",
|
| 855 |
+
"Tenn.",
|
| 856 |
+
"Tennessee",
|
| 857 |
+
"Text",
|
| 858 |
+
"That",
|
| 859 |
+
"That's",
|
| 860 |
+
"That\u2019s",
|
| 861 |
+
"There",
|
| 862 |
+
"There's",
|
| 863 |
+
"There\u2019s",
|
| 864 |
+
"These",
|
| 865 |
+
"They",
|
| 866 |
+
"This",
|
| 867 |
+
"This's",
|
| 868 |
+
"This\u2019s",
|
| 869 |
+
"Those",
|
| 870 |
+
"Times\\n\\n\u00e2\u0080\u00a2",
|
| 871 |
+
"Title",
|
| 872 |
+
"Tool",
|
| 873 |
+
"U",
|
| 874 |
+
"UNIVERSITY",
|
| 875 |
+
"Udemy",
|
| 876 |
+
"Unanth",
|
| 877 |
+
"University\\n\\nJanuary",
|
| 878 |
+
"University\\n\\nJava",
|
| 879 |
+
"V",
|
| 880 |
+
"V.V",
|
| 881 |
+
"VA-",
|
| 882 |
+
"VC-",
|
| 883 |
+
"V_V",
|
| 884 |
+
"Va",
|
| 885 |
+
"Va.",
|
| 886 |
+
"Virginia",
|
| 887 |
+
"W",
|
| 888 |
+
"Wagh",
|
| 889 |
+
"Wallet",
|
| 890 |
+
"Was",
|
| 891 |
+
"Wash",
|
| 892 |
+
"Wash.",
|
| 893 |
+
"Washington",
|
| 894 |
+
"We",
|
| 895 |
+
"Web",
|
| 896 |
+
"WebServers",
|
| 897 |
+
"Website",
|
| 898 |
+
"Website\\n\\n\u00e2\u0080\u00a2",
|
| 899 |
+
"Were",
|
| 900 |
+
"What",
|
| 901 |
+
"What's",
|
| 902 |
+
"What\u2019s",
|
| 903 |
+
"When",
|
| 904 |
+
"When's",
|
| 905 |
+
"When\u2019s",
|
| 906 |
+
"Where",
|
| 907 |
+
"Where's",
|
| 908 |
+
"Where\u2019s",
|
| 909 |
+
"Who",
|
| 910 |
+
"Who's",
|
| 911 |
+
"Who\u2019s",
|
| 912 |
+
"Why",
|
| 913 |
+
"Why's",
|
| 914 |
+
"Why\u2019s",
|
| 915 |
+
"WinXP/7/8.1/10",
|
| 916 |
+
"Windows",
|
| 917 |
+
"WindowsServer2012R2",
|
| 918 |
+
"Wis",
|
| 919 |
+
"Wis.",
|
| 920 |
+
"Wisconsin",
|
| 921 |
+
"Wo",
|
| 922 |
+
"Worked",
|
| 923 |
+
"Working",
|
| 924 |
+
"Would",
|
| 925 |
+
"X'x",
|
| 926 |
+
"X'xxxx",
|
| 927 |
+
"X++",
|
| 928 |
+
"X.",
|
| 929 |
+
"X.X",
|
| 930 |
+
"X.X.",
|
| 931 |
+
"X.X.X",
|
| 932 |
+
"X.X.X\\x\\xXxxxx",
|
| 933 |
+
"X.x",
|
| 934 |
+
"X.x.",
|
| 935 |
+
"XD",
|
| 936 |
+
"XDD",
|
| 937 |
+
"XP",
|
| 938 |
+
"XX",
|
| 939 |
+
"XX-",
|
| 940 |
+
"XXX",
|
| 941 |
+
"XXX-",
|
| 942 |
+
"XXX.\\x\\xxxx",
|
| 943 |
+
"XXXX",
|
| 944 |
+
"XXXX:\\x\\xX",
|
| 945 |
+
"XXXX:\\x\\xXX",
|
| 946 |
+
"XXXX\\x\\x#d",
|
| 947 |
+
"XXXXd",
|
| 948 |
+
"XXX_XXXX",
|
| 949 |
+
"XXXd",
|
| 950 |
+
"XXxxxx",
|
| 951 |
+
"X_X",
|
| 952 |
+
"X_x",
|
| 953 |
+
"XdXX",
|
| 954 |
+
"Xx",
|
| 955 |
+
"Xx'",
|
| 956 |
+
"Xx'x",
|
| 957 |
+
"Xx'xx",
|
| 958 |
+
"Xx.",
|
| 959 |
+
"Xx.X.",
|
| 960 |
+
"XxXXX",
|
| 961 |
+
"XxXxx",
|
| 962 |
+
"Xxx",
|
| 963 |
+
"Xxx'x",
|
| 964 |
+
"Xxx.",
|
| 965 |
+
"XxxXX/d/d.d/dd",
|
| 966 |
+
"XxxXxxxx",
|
| 967 |
+
"Xxxx",
|
| 968 |
+
"Xxxx'",
|
| 969 |
+
"Xxxx'x",
|
| 970 |
+
"Xxxx)\\x\\x\\x\\xXXXX",
|
| 971 |
+
"Xxxx,\\x\\xXxxxx",
|
| 972 |
+
"Xxxx-",
|
| 973 |
+
"Xxxx.",
|
| 974 |
+
"XxxxXxx",
|
| 975 |
+
"XxxxXxxxx",
|
| 976 |
+
"XxxxXxxxx.\\x\\xXxxxx",
|
| 977 |
+
"XxxxXxxxxXxxxx",
|
| 978 |
+
"Xxxxx",
|
| 979 |
+
"Xxxxx'",
|
| 980 |
+
"Xxxxx'x",
|
| 981 |
+
"Xxxxx)\\x\\x\\x\\xXX",
|
| 982 |
+
"Xxxxx.",
|
| 983 |
+
"Xxxxx.\\x\\xXXXX",
|
| 984 |
+
"Xxxxx.\\x\\xXxxxx",
|
| 985 |
+
"Xxxxx.\\x\\x\\x\\xXXXX",
|
| 986 |
+
"Xxxxx.\\x\\xxxx",
|
| 987 |
+
"Xxxxx.\\x\\xx\u0080\u00a2",
|
| 988 |
+
"XxxxxXX",
|
| 989 |
+
"XxxxxXXX",
|
| 990 |
+
"XxxxxXx",
|
| 991 |
+
"XxxxxXxx",
|
| 992 |
+
"XxxxxXxxXxxxXxxxx",
|
| 993 |
+
"XxxxxXxxx",
|
| 994 |
+
"XxxxxXxxxx",
|
| 995 |
+
"XxxxxXxxxxXxxxx",
|
| 996 |
+
"XxxxxXxxxxddddXd",
|
| 997 |
+
"Xxxxx\\x\\xXxxx",
|
| 998 |
+
"Xxxxx\\x\\xXxxxx",
|
| 999 |
+
"Xxxxx\\x\\x\\x\\xXXXX",
|
| 1000 |
+
"Xxxxx\\x\\xxxx",
|
| 1001 |
+
"Xxxxx\\x\\xx\u0080\u00a2",
|
| 1002 |
+
"Xxxxx\u2019",
|
| 1003 |
+
"Xxxxx\u2019x",
|
| 1004 |
+
"Xxxx\u2019",
|
| 1005 |
+
"Xxxx\u2019x",
|
| 1006 |
+
"Xxx\u2019x",
|
| 1007 |
+
"Xx\u2019",
|
| 1008 |
+
"Xx\u2019x",
|
| 1009 |
+
"Xx\u2019xx",
|
| 1010 |
+
"X\u2019x",
|
| 1011 |
+
"X\u2019xxxx",
|
| 1012 |
+
"Y",
|
| 1013 |
+
"You",
|
| 1014 |
+
"[",
|
| 1015 |
+
"[-:",
|
| 1016 |
+
"[:",
|
| 1017 |
+
"[=",
|
| 1018 |
+
"\\",
|
| 1019 |
+
"\\\")",
|
| 1020 |
+
"\\n",
|
| 1021 |
+
"\\nC",
|
| 1022 |
+
"\\n\\nAJAX-",
|
| 1023 |
+
"\\n\\nAugust",
|
| 1024 |
+
"\\n\\nCompany",
|
| 1025 |
+
"\\n\\nCss-",
|
| 1026 |
+
"\\n\\nJanuary",
|
| 1027 |
+
"\\n\\n\\n\\nFull",
|
| 1028 |
+
"\\n\\n\\n\\nJava",
|
| 1029 |
+
"\\n\\n\\n\\nfull",
|
| 1030 |
+
"\\n\\n\\n\\njava",
|
| 1031 |
+
"\\n\\najax-",
|
| 1032 |
+
"\\n\\naugust",
|
| 1033 |
+
"\\n\\ncompany",
|
| 1034 |
+
"\\n\\ncss-",
|
| 1035 |
+
"\\n\\njanuary",
|
| 1036 |
+
"\\nc",
|
| 1037 |
+
"\\t",
|
| 1038 |
+
"\\x",
|
| 1039 |
+
"\\x\\xXXXX-",
|
| 1040 |
+
"\\x\\xXxx-",
|
| 1041 |
+
"\\x\\xXxxxx",
|
| 1042 |
+
"\\x\\x\\x\\xXxxx",
|
| 1043 |
+
"\\x\\x\\x\\xxxx",
|
| 1044 |
+
"\\x\\xxxx",
|
| 1045 |
+
"\\x\\xxxx-",
|
| 1046 |
+
"]",
|
| 1047 |
+
"]=",
|
| 1048 |
+
"^",
|
| 1049 |
+
"^_^",
|
| 1050 |
+
"^__^",
|
| 1051 |
+
"^___^",
|
| 1052 |
+
"_*)",
|
| 1053 |
+
"_-)",
|
| 1054 |
+
"_.)",
|
| 1055 |
+
"_<)",
|
| 1056 |
+
"_^)",
|
| 1057 |
+
"__-",
|
| 1058 |
+
"__^",
|
| 1059 |
+
"_\u00ac)",
|
| 1060 |
+
"_\u0ca0)",
|
| 1061 |
+
"a",
|
| 1062 |
+
"a.",
|
| 1063 |
+
"a.m",
|
| 1064 |
+
"a.m.",
|
| 1065 |
+
"able",
|
| 1066 |
+
"about",
|
| 1067 |
+
"abstract",
|
| 1068 |
+
"access",
|
| 1069 |
+
"ace",
|
| 1070 |
+
"achievement",
|
| 1071 |
+
"ack",
|
| 1072 |
+
"act",
|
| 1073 |
+
"ad",
|
| 1074 |
+
"ade",
|
| 1075 |
+
"adm",
|
| 1076 |
+
"adm.",
|
| 1077 |
+
"admin",
|
| 1078 |
+
"advance",
|
| 1079 |
+
"advertisements",
|
| 1080 |
+
"age",
|
| 1081 |
+
"agh",
|
| 1082 |
+
"agri",
|
| 1083 |
+
"ai",
|
| 1084 |
+
"ajax",
|
| 1085 |
+
"ak",
|
| 1086 |
+
"ak.",
|
| 1087 |
+
"ake",
|
| 1088 |
+
"ala",
|
| 1089 |
+
"ala.",
|
| 1090 |
+
"all",
|
| 1091 |
+
"also",
|
| 1092 |
+
"am",
|
| 1093 |
+
"ame",
|
| 1094 |
+
"amravati",
|
| 1095 |
+
"an",
|
| 1096 |
+
"an.",
|
| 1097 |
+
"and",
|
| 1098 |
+
"and/or",
|
| 1099 |
+
"andheri",
|
| 1100 |
+
"android",
|
| 1101 |
+
"android)\\n\\n\\n\\nme",
|
| 1102 |
+
"android.\\n\\ndatabase",
|
| 1103 |
+
"android\\n\\n\\n\\nprogramming",
|
| 1104 |
+
"angular",
|
| 1105 |
+
"angularjs",
|
| 1106 |
+
"ans",
|
| 1107 |
+
"ant",
|
| 1108 |
+
"any",
|
| 1109 |
+
"ap-",
|
| 1110 |
+
"apachetomcatserver",
|
| 1111 |
+
"api",
|
| 1112 |
+
"app",
|
| 1113 |
+
"application",
|
| 1114 |
+
"apr",
|
| 1115 |
+
"apr.",
|
| 1116 |
+
"april",
|
| 1117 |
+
"ar.",
|
| 1118 |
+
"architecture",
|
| 1119 |
+
"ard",
|
| 1120 |
+
"are",
|
| 1121 |
+
"ariz",
|
| 1122 |
+
"ariz.",
|
| 1123 |
+
"ark",
|
| 1124 |
+
"ark.",
|
| 1125 |
+
"arn",
|
| 1126 |
+
"ary",
|
| 1127 |
+
"as",
|
| 1128 |
+
"ase",
|
| 1129 |
+
"ash",
|
| 1130 |
+
"ass",
|
| 1131 |
+
"assignment",
|
| 1132 |
+
"assurance",
|
| 1133 |
+
"at",
|
| 1134 |
+
"ata",
|
| 1135 |
+
"ate",
|
| 1136 |
+
"ati",
|
| 1137 |
+
"atom",
|
| 1138 |
+
"aug",
|
| 1139 |
+
"aug.",
|
| 1140 |
+
"ava",
|
| 1141 |
+
"ave",
|
| 1142 |
+
"ax-",
|
| 1143 |
+
"azureweb",
|
| 1144 |
+
"azurewebservices",
|
| 1145 |
+
"b",
|
| 1146 |
+
"b.",
|
| 1147 |
+
"b.c.a",
|
| 1148 |
+
"bachelor",
|
| 1149 |
+
"back",
|
| 1150 |
+
"based",
|
| 1151 |
+
"be",
|
| 1152 |
+
"beans",
|
| 1153 |
+
"because",
|
| 1154 |
+
"billing",
|
| 1155 |
+
"bit",
|
| 1156 |
+
"ble",
|
| 1157 |
+
"boot",
|
| 1158 |
+
"boot-",
|
| 1159 |
+
"bootstrap",
|
| 1160 |
+
"bootstrap.\\n\\n\\n\\nproject",
|
| 1161 |
+
"bootstrap.\\n\\narchitecture",
|
| 1162 |
+
"bout",
|
| 1163 |
+
"br.",
|
| 1164 |
+
"bros",
|
| 1165 |
+
"bros.",
|
| 1166 |
+
"built",
|
| 1167 |
+
"business",
|
| 1168 |
+
"by",
|
| 1169 |
+
"c",
|
| 1170 |
+
"c'm",
|
| 1171 |
+
"c++",
|
| 1172 |
+
"c.",
|
| 1173 |
+
"c.a",
|
| 1174 |
+
"ca",
|
| 1175 |
+
"cal",
|
| 1176 |
+
"calif",
|
| 1177 |
+
"calif.",
|
| 1178 |
+
"can",
|
| 1179 |
+
"card",
|
| 1180 |
+
"cause",
|
| 1181 |
+
"ce>",
|
| 1182 |
+
"certificate",
|
| 1183 |
+
"certified",
|
| 1184 |
+
"ces",
|
| 1185 |
+
"ch.",
|
| 1186 |
+
"character",
|
| 1187 |
+
"chinchwad",
|
| 1188 |
+
"cipher",
|
| 1189 |
+
"cle",
|
| 1190 |
+
"client",
|
| 1191 |
+
"clients",
|
| 1192 |
+
"co",
|
| 1193 |
+
"co.",
|
| 1194 |
+
"coe",
|
| 1195 |
+
"college",
|
| 1196 |
+
"college\\n\\njanuary",
|
| 1197 |
+
"colo",
|
| 1198 |
+
"colo.",
|
| 1199 |
+
"come",
|
| 1200 |
+
"command",
|
| 1201 |
+
"common",
|
| 1202 |
+
"company",
|
| 1203 |
+
"company.\\n\\nduration",
|
| 1204 |
+
"completed\\n\\n\u00e2\u0080\u00a2",
|
| 1205 |
+
"computer",
|
| 1206 |
+
"computing",
|
| 1207 |
+
"conference",
|
| 1208 |
+
"conn",
|
| 1209 |
+
"conn.",
|
| 1210 |
+
"copy",
|
| 1211 |
+
"core",
|
| 1212 |
+
"corp",
|
| 1213 |
+
"corp.",
|
| 1214 |
+
"cos",
|
| 1215 |
+
"could",
|
| 1216 |
+
"course",
|
| 1217 |
+
"courses",
|
| 1218 |
+
"coz",
|
| 1219 |
+
"crash",
|
| 1220 |
+
"credit",
|
| 1221 |
+
"css3",
|
| 1222 |
+
"ct.",
|
| 1223 |
+
"cts",
|
| 1224 |
+
"currently",
|
| 1225 |
+
"customer",
|
| 1226 |
+
"cuz",
|
| 1227 |
+
"c\u2019m",
|
| 1228 |
+
"d",
|
| 1229 |
+
"d)",
|
| 1230 |
+
"d-",
|
| 1231 |
+
"d-)",
|
| 1232 |
+
"d-X",
|
| 1233 |
+
"d.",
|
| 1234 |
+
"d.c.",
|
| 1235 |
+
"d.d",
|
| 1236 |
+
"d.x",
|
| 1237 |
+
"dX",
|
| 1238 |
+
"d_d",
|
| 1239 |
+
"d_x",
|
| 1240 |
+
"dare",
|
| 1241 |
+
"data",
|
| 1242 |
+
"database",
|
| 1243 |
+
"dated",
|
| 1244 |
+
"dbc",
|
| 1245 |
+
"dd",
|
| 1246 |
+
"dd.\\x\\x\\x\\xXXXX",
|
| 1247 |
+
"dd.\\x\\x\\x\\xxxx",
|
| 1248 |
+
"ddd",
|
| 1249 |
+
"dddd",
|
| 1250 |
+
"ddx.x",
|
| 1251 |
+
"ddx.x.",
|
| 1252 |
+
"debit",
|
| 1253 |
+
"dec",
|
| 1254 |
+
"dec.",
|
| 1255 |
+
"deduplication",
|
| 1256 |
+
"degree",
|
| 1257 |
+
"del",
|
| 1258 |
+
"del.",
|
| 1259 |
+
"deo",
|
| 1260 |
+
"der",
|
| 1261 |
+
"des",
|
| 1262 |
+
"details",
|
| 1263 |
+
"details\\n\\n#1",
|
| 1264 |
+
"detector",
|
| 1265 |
+
"developed",
|
| 1266 |
+
"developer",
|
| 1267 |
+
"developer.\\n\\ncompany",
|
| 1268 |
+
"developer\\n\\nskill",
|
| 1269 |
+
"development",
|
| 1270 |
+
"devices",
|
| 1271 |
+
"dex",
|
| 1272 |
+
"dia",
|
| 1273 |
+
"did",
|
| 1274 |
+
"dinman",
|
| 1275 |
+
"diploma",
|
| 1276 |
+
"directly",
|
| 1277 |
+
"displaying",
|
| 1278 |
+
"dit",
|
| 1279 |
+
"dm.",
|
| 1280 |
+
"do",
|
| 1281 |
+
"does",
|
| 1282 |
+
"doin",
|
| 1283 |
+
"doin'",
|
| 1284 |
+
"doing",
|
| 1285 |
+
"doin\u2019",
|
| 1286 |
+
"done",
|
| 1287 |
+
"dr",
|
| 1288 |
+
"dr.",
|
| 1289 |
+
"duration",
|
| 1290 |
+
"dx.x",
|
| 1291 |
+
"dx.x.",
|
| 1292 |
+
"e",
|
| 1293 |
+
"e's",
|
| 1294 |
+
"e.",
|
| 1295 |
+
"e.g",
|
| 1296 |
+
"e.g.",
|
| 1297 |
+
"ear",
|
| 1298 |
+
"eb.",
|
| 1299 |
+
"ebr",
|
| 1300 |
+
"ec.",
|
| 1301 |
+
"eclipse",
|
| 1302 |
+
"ect",
|
| 1303 |
+
"education",
|
| 1304 |
+
"ee-",
|
| 1305 |
+
"eed",
|
| 1306 |
+
"ege",
|
| 1307 |
+
"el.",
|
| 1308 |
+
"elp",
|
| 1309 |
+
"em",
|
| 1310 |
+
"employment",
|
| 1311 |
+
"emy",
|
| 1312 |
+
"en",
|
| 1313 |
+
"en.",
|
| 1314 |
+
"encrypted",
|
| 1315 |
+
"end",
|
| 1316 |
+
"engineering",
|
| 1317 |
+
"enn",
|
| 1318 |
+
"enough",
|
| 1319 |
+
"ent",
|
| 1320 |
+
"ep.",
|
| 1321 |
+
"ept",
|
| 1322 |
+
"ere",
|
| 1323 |
+
"eri",
|
| 1324 |
+
"ers",
|
| 1325 |
+
"ery",
|
| 1326 |
+
"ese",
|
| 1327 |
+
"ess",
|
| 1328 |
+
"et-",
|
| 1329 |
+
"etc",
|
| 1330 |
+
"ete",
|
| 1331 |
+
"ev.",
|
| 1332 |
+
"ews",
|
| 1333 |
+
"exprience",
|
| 1334 |
+
"ext",
|
| 1335 |
+
"e\u2019s",
|
| 1336 |
+
"f",
|
| 1337 |
+
"f.",
|
| 1338 |
+
"facebook",
|
| 1339 |
+
"feb",
|
| 1340 |
+
"feb.",
|
| 1341 |
+
"five",
|
| 1342 |
+
"fla",
|
| 1343 |
+
"fla.",
|
| 1344 |
+
"for",
|
| 1345 |
+
"four",
|
| 1346 |
+
"framework",
|
| 1347 |
+
"frameworks",
|
| 1348 |
+
"free",
|
| 1349 |
+
"from",
|
| 1350 |
+
"g",
|
| 1351 |
+
"g.",
|
| 1352 |
+
"g.n.",
|
| 1353 |
+
"ga",
|
| 1354 |
+
"ga.",
|
| 1355 |
+
"gen",
|
| 1356 |
+
"gen.",
|
| 1357 |
+
"generate",
|
| 1358 |
+
"generation",
|
| 1359 |
+
"ges",
|
| 1360 |
+
"ght",
|
| 1361 |
+
"gin",
|
| 1362 |
+
"goin",
|
| 1363 |
+
"goin'",
|
| 1364 |
+
"going",
|
| 1365 |
+
"goin\u2019",
|
| 1366 |
+
"gon",
|
| 1367 |
+
"gonna",
|
| 1368 |
+
"got",
|
| 1369 |
+
"gov",
|
| 1370 |
+
"gov.",
|
| 1371 |
+
"gri",
|
| 1372 |
+
"gst",
|
| 1373 |
+
"h",
|
| 1374 |
+
"h.",
|
| 1375 |
+
"h.s.c",
|
| 1376 |
+
"had",
|
| 1377 |
+
"han",
|
| 1378 |
+
"handled:\\n\\nms",
|
| 1379 |
+
"has",
|
| 1380 |
+
"hat",
|
| 1381 |
+
"have",
|
| 1382 |
+
"havin",
|
| 1383 |
+
"havin'",
|
| 1384 |
+
"having",
|
| 1385 |
+
"havin\u2019",
|
| 1386 |
+
"he",
|
| 1387 |
+
"he's",
|
| 1388 |
+
"help",
|
| 1389 |
+
"hen",
|
| 1390 |
+
"her",
|
| 1391 |
+
"hey",
|
| 1392 |
+
"he\u2019s",
|
| 1393 |
+
"hibernate",
|
| 1394 |
+
"high",
|
| 1395 |
+
"hik",
|
| 1396 |
+
"hin",
|
| 1397 |
+
"hip",
|
| 1398 |
+
"his",
|
| 1399 |
+
"how",
|
| 1400 |
+
"how's",
|
| 1401 |
+
"how\u2019s",
|
| 1402 |
+
"html",
|
| 1403 |
+
"html5",
|
| 1404 |
+
"i",
|
| 1405 |
+
"i.",
|
| 1406 |
+
"i.e",
|
| 1407 |
+
"i.e.",
|
| 1408 |
+
"ia",
|
| 1409 |
+
"ia.",
|
| 1410 |
+
"ial",
|
| 1411 |
+
"ias",
|
| 1412 |
+
"ice",
|
| 1413 |
+
"ich",
|
| 1414 |
+
"id",
|
| 1415 |
+
"id.",
|
| 1416 |
+
"ide",
|
| 1417 |
+
"ied",
|
| 1418 |
+
"ies",
|
| 1419 |
+
"if.",
|
| 1420 |
+
"igh",
|
| 1421 |
+
"iit",
|
| 1422 |
+
"ike",
|
| 1423 |
+
"ile",
|
| 1424 |
+
"ill",
|
| 1425 |
+
"ill.",
|
| 1426 |
+
"ils",
|
| 1427 |
+
"ilt",
|
| 1428 |
+
"ime",
|
| 1429 |
+
"in",
|
| 1430 |
+
"in'",
|
| 1431 |
+
"inc",
|
| 1432 |
+
"inc.",
|
| 1433 |
+
"include",
|
| 1434 |
+
"includes",
|
| 1435 |
+
"ind",
|
| 1436 |
+
"ind.",
|
| 1437 |
+
"index",
|
| 1438 |
+
"india",
|
| 1439 |
+
"india.\\n\\ncompany",
|
| 1440 |
+
"ine",
|
| 1441 |
+
"information",
|
| 1442 |
+
"infrasoft",
|
| 1443 |
+
"ing",
|
| 1444 |
+
"inn",
|
| 1445 |
+
"institute",
|
| 1446 |
+
"int",
|
| 1447 |
+
"internettechnologiesand",
|
| 1448 |
+
"invoice",
|
| 1449 |
+
"invoice.\\n\\n\\n\\n#2",
|
| 1450 |
+
"in\u2019",
|
| 1451 |
+
"ion",
|
| 1452 |
+
"ionic",
|
| 1453 |
+
"ior",
|
| 1454 |
+
"ipt",
|
| 1455 |
+
"is",
|
| 1456 |
+
"is.",
|
| 1457 |
+
"iso",
|
| 1458 |
+
"iss",
|
| 1459 |
+
"it",
|
| 1460 |
+
"it's",
|
| 1461 |
+
"ite",
|
| 1462 |
+
"item",
|
| 1463 |
+
"ith",
|
| 1464 |
+
"ity",
|
| 1465 |
+
"it\u2019s",
|
| 1466 |
+
"ive",
|
| 1467 |
+
"iz.",
|
| 1468 |
+
"j",
|
| 1469 |
+
"j.",
|
| 1470 |
+
"j2ee",
|
| 1471 |
+
"jan",
|
| 1472 |
+
"jan.",
|
| 1473 |
+
"java",
|
| 1474 |
+
"java)\\n\\n\\n\\nsubjects",
|
| 1475 |
+
"java,\\n\\nadvance",
|
| 1476 |
+
"javascript",
|
| 1477 |
+
"jax",
|
| 1478 |
+
"jdbc",
|
| 1479 |
+
"job",
|
| 1480 |
+
"job_title",
|
| 1481 |
+
"jquery",
|
| 1482 |
+
"jquery\\n\\najax",
|
| 1483 |
+
"jr",
|
| 1484 |
+
"jr.",
|
| 1485 |
+
"js",
|
| 1486 |
+
"js-",
|
| 1487 |
+
"jsf",
|
| 1488 |
+
"json",
|
| 1489 |
+
"jsp",
|
| 1490 |
+
"jul",
|
| 1491 |
+
"jul.",
|
| 1492 |
+
"july",
|
| 1493 |
+
"jun",
|
| 1494 |
+
"jun.",
|
| 1495 |
+
"june",
|
| 1496 |
+
"junior",
|
| 1497 |
+
"k",
|
| 1498 |
+
"k.",
|
| 1499 |
+
"k.d.",
|
| 1500 |
+
"kal",
|
| 1501 |
+
"kan",
|
| 1502 |
+
"kan.",
|
| 1503 |
+
"kans",
|
| 1504 |
+
"kans.",
|
| 1505 |
+
"ked",
|
| 1506 |
+
"kendoui",
|
| 1507 |
+
"kla",
|
| 1508 |
+
"ky",
|
| 1509 |
+
"ky.",
|
| 1510 |
+
"l",
|
| 1511 |
+
"l.",
|
| 1512 |
+
"l5-",
|
| 1513 |
+
"la",
|
| 1514 |
+
"la.",
|
| 1515 |
+
"language",
|
| 1516 |
+
"languages",
|
| 1517 |
+
"lar",
|
| 1518 |
+
"late",
|
| 1519 |
+
"learn",
|
| 1520 |
+
"lem",
|
| 1521 |
+
"les",
|
| 1522 |
+
"less",
|
| 1523 |
+
"let",
|
| 1524 |
+
"let's",
|
| 1525 |
+
"let\u2019s",
|
| 1526 |
+
"lif",
|
| 1527 |
+
"light",
|
| 1528 |
+
"like",
|
| 1529 |
+
"line",
|
| 1530 |
+
"linux",
|
| 1531 |
+
"ll",
|
| 1532 |
+
"ll.",
|
| 1533 |
+
"llp.\\n\\ndescription",
|
| 1534 |
+
"lls",
|
| 1535 |
+
"lo.",
|
| 1536 |
+
"location",
|
| 1537 |
+
"login",
|
| 1538 |
+
"lor",
|
| 1539 |
+
"lovin",
|
| 1540 |
+
"lovin'",
|
| 1541 |
+
"loving",
|
| 1542 |
+
"lovin\u2019",
|
| 1543 |
+
"lso",
|
| 1544 |
+
"ltd",
|
| 1545 |
+
"ltd.",
|
| 1546 |
+
"ltd\\n\\ndescription",
|
| 1547 |
+
"m",
|
| 1548 |
+
"m.",
|
| 1549 |
+
"m.c.a",
|
| 1550 |
+
"m.i.t\\n\\njanuary",
|
| 1551 |
+
"ma'am",
|
| 1552 |
+
"mac",
|
| 1553 |
+
"madam",
|
| 1554 |
+
"made",
|
| 1555 |
+
"maharashtra",
|
| 1556 |
+
"make",
|
| 1557 |
+
"man",
|
| 1558 |
+
"management",
|
| 1559 |
+
"many",
|
| 1560 |
+
"mar",
|
| 1561 |
+
"mar.",
|
| 1562 |
+
"mass",
|
| 1563 |
+
"mass.",
|
| 1564 |
+
"master",
|
| 1565 |
+
"masters",
|
| 1566 |
+
"maxgen",
|
| 1567 |
+
"may",
|
| 1568 |
+
"ma\u2019am",
|
| 1569 |
+
"md",
|
| 1570 |
+
"md.",
|
| 1571 |
+
"media",
|
| 1572 |
+
"memory",
|
| 1573 |
+
"mer",
|
| 1574 |
+
"messrs",
|
| 1575 |
+
"messrs.",
|
| 1576 |
+
"mich",
|
| 1577 |
+
"mich.",
|
| 1578 |
+
"might",
|
| 1579 |
+
"min",
|
| 1580 |
+
"minn",
|
| 1581 |
+
"minn.",
|
| 1582 |
+
"mis",
|
| 1583 |
+
"miss",
|
| 1584 |
+
"miss.",
|
| 1585 |
+
"ml-",
|
| 1586 |
+
"ml5",
|
| 1587 |
+
"mo",
|
| 1588 |
+
"mo.",
|
| 1589 |
+
"mobile",
|
| 1590 |
+
"module",
|
| 1591 |
+
"modules",
|
| 1592 |
+
"mon",
|
| 1593 |
+
"mont",
|
| 1594 |
+
"mont.",
|
| 1595 |
+
"months.\\n\\nTechnology",
|
| 1596 |
+
"months.\\n\\ntechnology",
|
| 1597 |
+
"months.\\n\\n\u00e2\u0080\u00a2",
|
| 1598 |
+
"monthsCompany",
|
| 1599 |
+
"months\\n\\nAjax-",
|
| 1600 |
+
"months\\n\\nAngular",
|
| 1601 |
+
"months\\n\\nBootstrap-",
|
| 1602 |
+
"months\\n\\nDATABASE-",
|
| 1603 |
+
"months\\n\\nHTML-",
|
| 1604 |
+
"months\\n\\nHtml5-",
|
| 1605 |
+
"months\\n\\nIonic",
|
| 1606 |
+
"months\\n\\nJ2EE-",
|
| 1607 |
+
"months\\n\\nJAVA-",
|
| 1608 |
+
"months\\n\\nJava-",
|
| 1609 |
+
"months\\n\\nJavascript-",
|
| 1610 |
+
"months\\n\\nJquery-",
|
| 1611 |
+
"months\\n\\nJsp-",
|
| 1612 |
+
"months\\n\\nServlet-",
|
| 1613 |
+
"months\\n\\nSpring",
|
| 1614 |
+
"months\\n\\nSpring-",
|
| 1615 |
+
"months\\n\\najax-",
|
| 1616 |
+
"months\\n\\nangular",
|
| 1617 |
+
"months\\n\\nbootstrap-",
|
| 1618 |
+
"months\\n\\ndatabase-",
|
| 1619 |
+
"months\\n\\nhtml-",
|
| 1620 |
+
"months\\n\\nhtml5-",
|
| 1621 |
+
"months\\n\\nionic",
|
| 1622 |
+
"months\\n\\nj2ee-",
|
| 1623 |
+
"months\\n\\njava-",
|
| 1624 |
+
"months\\n\\njavascript-",
|
| 1625 |
+
"months\\n\\njquery-",
|
| 1626 |
+
"months\\n\\njsp-",
|
| 1627 |
+
"months\\n\\nservlet-",
|
| 1628 |
+
"months\\n\\nspring",
|
| 1629 |
+
"months\\n\\nspring-",
|
| 1630 |
+
"monthscompany",
|
| 1631 |
+
"more",
|
| 1632 |
+
"mr",
|
| 1633 |
+
"mr.",
|
| 1634 |
+
"mrs",
|
| 1635 |
+
"mrs.",
|
| 1636 |
+
"ms",
|
| 1637 |
+
"ms.",
|
| 1638 |
+
"mssql",
|
| 1639 |
+
"mt",
|
| 1640 |
+
"mt.",
|
| 1641 |
+
"must",
|
| 1642 |
+
"mvc",
|
| 1643 |
+
"mvc-",
|
| 1644 |
+
"my",
|
| 1645 |
+
"mysql",
|
| 1646 |
+
"n",
|
| 1647 |
+
"n#1",
|
| 1648 |
+
"n#2",
|
| 1649 |
+
"n's",
|
| 1650 |
+
"n't",
|
| 1651 |
+
"n.",
|
| 1652 |
+
"n.c.",
|
| 1653 |
+
"n.d.",
|
| 1654 |
+
"n.h.",
|
| 1655 |
+
"n.j.",
|
| 1656 |
+
"n.m.",
|
| 1657 |
+
"n.y.",
|
| 1658 |
+
"nME",
|
| 1659 |
+
"nMS",
|
| 1660 |
+
"na",
|
| 1661 |
+
"nal",
|
| 1662 |
+
"name",
|
| 1663 |
+
"nashik",
|
| 1664 |
+
"nashik\\n\\njava",
|
| 1665 |
+
"nashik\\n\\njuly",
|
| 1666 |
+
"nc.",
|
| 1667 |
+
"nce",
|
| 1668 |
+
"nd.",
|
| 1669 |
+
"neb",
|
| 1670 |
+
"neb.",
|
| 1671 |
+
"nebr",
|
| 1672 |
+
"nebr.",
|
| 1673 |
+
"need",
|
| 1674 |
+
"nel",
|
| 1675 |
+
"net",
|
| 1676 |
+
"nev",
|
| 1677 |
+
"nev.",
|
| 1678 |
+
"news",
|
| 1679 |
+
"news.\\n\\n\\n\\n#2",
|
| 1680 |
+
"newspapers",
|
| 1681 |
+
"ng-",
|
| 1682 |
+
"nic",
|
| 1683 |
+
"niit",
|
| 1684 |
+
"nme",
|
| 1685 |
+
"nms",
|
| 1686 |
+
"nn.",
|
| 1687 |
+
"not",
|
| 1688 |
+
"nothin",
|
| 1689 |
+
"nothin'",
|
| 1690 |
+
"nothing",
|
| 1691 |
+
"nothin\u2019",
|
| 1692 |
+
"nov",
|
| 1693 |
+
"nov.",
|
| 1694 |
+
"ns.",
|
| 1695 |
+
"nt",
|
| 1696 |
+
"nt.",
|
| 1697 |
+
"nth",
|
| 1698 |
+
"nts",
|
| 1699 |
+
"nuff",
|
| 1700 |
+
"nuthin",
|
| 1701 |
+
"nuthin'",
|
| 1702 |
+
"nuthin\u2019",
|
| 1703 |
+
"nux",
|
| 1704 |
+
"n\u2019s",
|
| 1705 |
+
"n\u2019t",
|
| 1706 |
+
"o",
|
| 1707 |
+
"o'clock",
|
| 1708 |
+
"o's",
|
| 1709 |
+
"o.",
|
| 1710 |
+
"o.0",
|
| 1711 |
+
"o.O",
|
| 1712 |
+
"o.o",
|
| 1713 |
+
"oUI",
|
| 1714 |
+
"o_0",
|
| 1715 |
+
"o_O",
|
| 1716 |
+
"o_o",
|
| 1717 |
+
"object",
|
| 1718 |
+
"ock",
|
| 1719 |
+
"oct",
|
| 1720 |
+
"oct.",
|
| 1721 |
+
"oes",
|
| 1722 |
+
"of",
|
| 1723 |
+
"of.",
|
| 1724 |
+
"oft",
|
| 1725 |
+
"ogy",
|
| 1726 |
+
"oid",
|
| 1727 |
+
"oin",
|
| 1728 |
+
"okla",
|
| 1729 |
+
"okla.",
|
| 1730 |
+
"ol",
|
| 1731 |
+
"ol'",
|
| 1732 |
+
"old",
|
| 1733 |
+
"ole",
|
| 1734 |
+
"olo",
|
| 1735 |
+
"ol\u2019",
|
| 1736 |
+
"oma",
|
| 1737 |
+
"omegasoft",
|
| 1738 |
+
"on",
|
| 1739 |
+
"one",
|
| 1740 |
+
"onesignalwebpushnotifications",
|
| 1741 |
+
"online",
|
| 1742 |
+
"onn",
|
| 1743 |
+
"ons",
|
| 1744 |
+
"ont",
|
| 1745 |
+
"ook",
|
| 1746 |
+
"ool",
|
| 1747 |
+
"oot",
|
| 1748 |
+
"opensourcetechnologies",
|
| 1749 |
+
"operating",
|
| 1750 |
+
"operatingsystem",
|
| 1751 |
+
"opy",
|
| 1752 |
+
"or",
|
| 1753 |
+
"oracle",
|
| 1754 |
+
"oracle\\n\\n\\n\\nnational",
|
| 1755 |
+
"order",
|
| 1756 |
+
"ore",
|
| 1757 |
+
"ore.",
|
| 1758 |
+
"oriented",
|
| 1759 |
+
"ork",
|
| 1760 |
+
"orp",
|
| 1761 |
+
"ory",
|
| 1762 |
+
"os",
|
| 1763 |
+
"os.",
|
| 1764 |
+
"ose",
|
| 1765 |
+
"ost",
|
| 1766 |
+
"ot-",
|
| 1767 |
+
"other",
|
| 1768 |
+
"ought",
|
| 1769 |
+
"oui",
|
| 1770 |
+
"our",
|
| 1771 |
+
"out",
|
| 1772 |
+
"ov.",
|
| 1773 |
+
"over",
|
| 1774 |
+
"ows",
|
| 1775 |
+
"o\u2019clock",
|
| 1776 |
+
"o\u2019s",
|
| 1777 |
+
"p",
|
| 1778 |
+
"p.",
|
| 1779 |
+
"p.m",
|
| 1780 |
+
"p.m.",
|
| 1781 |
+
"pa",
|
| 1782 |
+
"pa.",
|
| 1783 |
+
"pages",
|
| 1784 |
+
"panel",
|
| 1785 |
+
"paper",
|
| 1786 |
+
"payment",
|
| 1787 |
+
"payments",
|
| 1788 |
+
"payments.\\n\\n\\n\\ninternship",
|
| 1789 |
+
"ped",
|
| 1790 |
+
"per",
|
| 1791 |
+
"ph",
|
| 1792 |
+
"ph.d.",
|
| 1793 |
+
"php",
|
| 1794 |
+
"pimpri",
|
| 1795 |
+
"pm",
|
| 1796 |
+
"pointers",
|
| 1797 |
+
"polytechnic",
|
| 1798 |
+
"post",
|
| 1799 |
+
"posting",
|
| 1800 |
+
"power\\n\\ndescription",
|
| 1801 |
+
"pps",
|
| 1802 |
+
"pr.",
|
| 1803 |
+
"presented",
|
| 1804 |
+
"pri",
|
| 1805 |
+
"print",
|
| 1806 |
+
"problem",
|
| 1807 |
+
"prof",
|
| 1808 |
+
"prof.",
|
| 1809 |
+
"programming",
|
| 1810 |
+
"programming.\\n\\nproject",
|
| 1811 |
+
"project",
|
| 1812 |
+
"projects",
|
| 1813 |
+
"pse",
|
| 1814 |
+
"pt-",
|
| 1815 |
+
"pt.",
|
| 1816 |
+
"pune",
|
| 1817 |
+
"purchasing",
|
| 1818 |
+
"pusad",
|
| 1819 |
+
"pvt",
|
| 1820 |
+
"pvt.ltd",
|
| 1821 |
+
"pvt.ltd\\n\\ndescription",
|
| 1822 |
+
"q",
|
| 1823 |
+
"q.",
|
| 1824 |
+
"que",
|
| 1825 |
+
"r",
|
| 1826 |
+
"r.",
|
| 1827 |
+
"rJs",
|
| 1828 |
+
"rap",
|
| 1829 |
+
"re",
|
| 1830 |
+
"re.",
|
| 1831 |
+
"reason",
|
| 1832 |
+
"reduce",
|
| 1833 |
+
"redundant",
|
| 1834 |
+
"ree",
|
| 1835 |
+
"registration",
|
| 1836 |
+
"rep",
|
| 1837 |
+
"rep.",
|
| 1838 |
+
"replete",
|
| 1839 |
+
"res",
|
| 1840 |
+
"restapi",
|
| 1841 |
+
"return",
|
| 1842 |
+
"rev",
|
| 1843 |
+
"rev.",
|
| 1844 |
+
"ril",
|
| 1845 |
+
"riz",
|
| 1846 |
+
"rjs",
|
| 1847 |
+
"rk.",
|
| 1848 |
+
"rks",
|
| 1849 |
+
"rof",
|
| 1850 |
+
"role",
|
| 1851 |
+
"rom",
|
| 1852 |
+
"ros",
|
| 1853 |
+
"rp.",
|
| 1854 |
+
"rs.",
|
| 1855 |
+
"rse",
|
| 1856 |
+
"ry-",
|
| 1857 |
+
"s",
|
| 1858 |
+
"s's",
|
| 1859 |
+
"s.",
|
| 1860 |
+
"s.c",
|
| 1861 |
+
"s.c.",
|
| 1862 |
+
"s.s.c",
|
| 1863 |
+
"sad",
|
| 1864 |
+
"salcluster",
|
| 1865 |
+
"sales",
|
| 1866 |
+
"same",
|
| 1867 |
+
"sapkal",
|
| 1868 |
+
"school\\n\\njava",
|
| 1869 |
+
"scripting",
|
| 1870 |
+
"se-",
|
| 1871 |
+
"secure",
|
| 1872 |
+
"security",
|
| 1873 |
+
"sed",
|
| 1874 |
+
"selling",
|
| 1875 |
+
"sen",
|
| 1876 |
+
"sen.",
|
| 1877 |
+
"sep",
|
| 1878 |
+
"sep.",
|
| 1879 |
+
"sept",
|
| 1880 |
+
"sept.",
|
| 1881 |
+
"service",
|
| 1882 |
+
"services",
|
| 1883 |
+
"servlet",
|
| 1884 |
+
"ses",
|
| 1885 |
+
"setup",
|
| 1886 |
+
"sh.",
|
| 1887 |
+
"sha",
|
| 1888 |
+
"shall",
|
| 1889 |
+
"share",
|
| 1890 |
+
"she",
|
| 1891 |
+
"she's",
|
| 1892 |
+
"she\u2019s",
|
| 1893 |
+
"should",
|
| 1894 |
+
"skill",
|
| 1895 |
+
"skills",
|
| 1896 |
+
"sky",
|
| 1897 |
+
"social",
|
| 1898 |
+
"softwares\\n\\n\u00e2\u0080\u00a2",
|
| 1899 |
+
"solo",
|
| 1900 |
+
"solutions",
|
| 1901 |
+
"solving",
|
| 1902 |
+
"somethin",
|
| 1903 |
+
"somethin'",
|
| 1904 |
+
"something",
|
| 1905 |
+
"somethin\u2019",
|
| 1906 |
+
"son",
|
| 1907 |
+
"sp-",
|
| 1908 |
+
"space",
|
| 1909 |
+
"spring",
|
| 1910 |
+
"springmvc",
|
| 1911 |
+
"sql",
|
| 1912 |
+
"srs",
|
| 1913 |
+
"ss-",
|
| 1914 |
+
"ss.",
|
| 1915 |
+
"ss3",
|
| 1916 |
+
"st",
|
| 1917 |
+
"st.",
|
| 1918 |
+
"stack",
|
| 1919 |
+
"status",
|
| 1920 |
+
"stores",
|
| 1921 |
+
"struts",
|
| 1922 |
+
"sublime",
|
| 1923 |
+
"subscriptions",
|
| 1924 |
+
"suit",
|
| 1925 |
+
"suntechnologies",
|
| 1926 |
+
"system",
|
| 1927 |
+
"s\u2019s",
|
| 1928 |
+
"t",
|
| 1929 |
+
"t's",
|
| 1930 |
+
"t.",
|
| 1931 |
+
"ta",
|
| 1932 |
+
"tata",
|
| 1933 |
+
"taught:\\n\\nc",
|
| 1934 |
+
"td.",
|
| 1935 |
+
"technical",
|
| 1936 |
+
"technicalskills",
|
| 1937 |
+
"technologies",
|
| 1938 |
+
"technologies.\\n\\ncompany",
|
| 1939 |
+
"technologies\\n\\ndescription",
|
| 1940 |
+
"technologies\\n\\nskill",
|
| 1941 |
+
"technology",
|
| 1942 |
+
"ted",
|
| 1943 |
+
"tem",
|
| 1944 |
+
"tenn",
|
| 1945 |
+
"tenn.",
|
| 1946 |
+
"ter",
|
| 1947 |
+
"text",
|
| 1948 |
+
"than",
|
| 1949 |
+
"that",
|
| 1950 |
+
"that's",
|
| 1951 |
+
"that\u2019s",
|
| 1952 |
+
"the",
|
| 1953 |
+
"them",
|
| 1954 |
+
"there",
|
| 1955 |
+
"there's",
|
| 1956 |
+
"there\u2019s",
|
| 1957 |
+
"these",
|
| 1958 |
+
"they",
|
| 1959 |
+
"this",
|
| 1960 |
+
"this's",
|
| 1961 |
+
"this\u2019s",
|
| 1962 |
+
"those",
|
| 1963 |
+
"through",
|
| 1964 |
+
"times\\n\\n\u00e2\u0080\u00a2",
|
| 1965 |
+
"title",
|
| 1966 |
+
"tle",
|
| 1967 |
+
"tly",
|
| 1968 |
+
"tml",
|
| 1969 |
+
"to",
|
| 1970 |
+
"tom",
|
| 1971 |
+
"tool",
|
| 1972 |
+
"tor",
|
| 1973 |
+
"tra",
|
| 1974 |
+
"tup",
|
| 1975 |
+
"tus",
|
| 1976 |
+
"t\u2019s",
|
| 1977 |
+
"u",
|
| 1978 |
+
"u.",
|
| 1979 |
+
"uce",
|
| 1980 |
+
"ude",
|
| 1981 |
+
"udemy",
|
| 1982 |
+
"uff",
|
| 1983 |
+
"ug.",
|
| 1984 |
+
"ugh",
|
| 1985 |
+
"uit",
|
| 1986 |
+
"ul.",
|
| 1987 |
+
"uld",
|
| 1988 |
+
"ule",
|
| 1989 |
+
"ull",
|
| 1990 |
+
"uly",
|
| 1991 |
+
"un.",
|
| 1992 |
+
"unanth",
|
| 1993 |
+
"une",
|
| 1994 |
+
"unique",
|
| 1995 |
+
"university",
|
| 1996 |
+
"university\\n\\njanuary",
|
| 1997 |
+
"university\\n\\njava",
|
| 1998 |
+
"uom",
|
| 1999 |
+
"up",
|
| 2000 |
+
"ure",
|
| 2001 |
+
"urn",
|
| 2002 |
+
"us",
|
| 2003 |
+
"use",
|
| 2004 |
+
"used",
|
| 2005 |
+
"users",
|
| 2006 |
+
"using",
|
| 2007 |
+
"ust",
|
| 2008 |
+
"ute",
|
| 2009 |
+
"uts",
|
| 2010 |
+
"v",
|
| 2011 |
+
"v.",
|
| 2012 |
+
"v.s",
|
| 2013 |
+
"v.s.",
|
| 2014 |
+
"v.v",
|
| 2015 |
+
"v_v",
|
| 2016 |
+
"va",
|
| 2017 |
+
"va-",
|
| 2018 |
+
"va.",
|
| 2019 |
+
"vc-",
|
| 2020 |
+
"ve",
|
| 2021 |
+
"vegetables",
|
| 2022 |
+
"ver",
|
| 2023 |
+
"very",
|
| 2024 |
+
"video",
|
| 2025 |
+
"vin",
|
| 2026 |
+
"vs",
|
| 2027 |
+
"vs.",
|
| 2028 |
+
"w",
|
| 2029 |
+
"w's",
|
| 2030 |
+
"w.",
|
| 2031 |
+
"w/o",
|
| 2032 |
+
"wad",
|
| 2033 |
+
"wagh",
|
| 2034 |
+
"wallet",
|
| 2035 |
+
"was",
|
| 2036 |
+
"wash",
|
| 2037 |
+
"wash.",
|
| 2038 |
+
"we",
|
| 2039 |
+
"web",
|
| 2040 |
+
"webservers",
|
| 2041 |
+
"website",
|
| 2042 |
+
"website\\n\\n\u00e2\u0080\u00a2",
|
| 2043 |
+
"weight",
|
| 2044 |
+
"were",
|
| 2045 |
+
"what",
|
| 2046 |
+
"what's",
|
| 2047 |
+
"what\u2019s",
|
| 2048 |
+
"when",
|
| 2049 |
+
"when's",
|
| 2050 |
+
"when\u2019s",
|
| 2051 |
+
"where",
|
| 2052 |
+
"where's",
|
| 2053 |
+
"where\u2019s",
|
| 2054 |
+
"which",
|
| 2055 |
+
"who",
|
| 2056 |
+
"who's",
|
| 2057 |
+
"who\u2019s",
|
| 2058 |
+
"why",
|
| 2059 |
+
"why's",
|
| 2060 |
+
"why\u2019s",
|
| 2061 |
+
"will",
|
| 2062 |
+
"windows",
|
| 2063 |
+
"windowsserver2012r2",
|
| 2064 |
+
"winxp/7/8.1/10",
|
| 2065 |
+
"wis",
|
| 2066 |
+
"wis.",
|
| 2067 |
+
"with",
|
| 2068 |
+
"without",
|
| 2069 |
+
"wo",
|
| 2070 |
+
"worked",
|
| 2071 |
+
"working",
|
| 2072 |
+
"works",
|
| 2073 |
+
"would",
|
| 2074 |
+
"w\u2019s",
|
| 2075 |
+
"x",
|
| 2076 |
+
"x'",
|
| 2077 |
+
"x'x",
|
| 2078 |
+
"x'xxxx",
|
| 2079 |
+
"x++",
|
| 2080 |
+
"x.",
|
| 2081 |
+
"x.X",
|
| 2082 |
+
"x.d",
|
| 2083 |
+
"x.x",
|
| 2084 |
+
"x.x.",
|
| 2085 |
+
"x.x.x",
|
| 2086 |
+
"x.x.x\\x\\xxxx",
|
| 2087 |
+
"x/x",
|
| 2088 |
+
"xD",
|
| 2089 |
+
"xDD",
|
| 2090 |
+
"xX",
|
| 2091 |
+
"xXX",
|
| 2092 |
+
"x_X",
|
| 2093 |
+
"x_d",
|
| 2094 |
+
"x_x",
|
| 2095 |
+
"xd",
|
| 2096 |
+
"xdd",
|
| 2097 |
+
"xdxx",
|
| 2098 |
+
"xp",
|
| 2099 |
+
"xx",
|
| 2100 |
+
"xx'",
|
| 2101 |
+
"xx'x",
|
| 2102 |
+
"xx'xx",
|
| 2103 |
+
"xx-",
|
| 2104 |
+
"xx.",
|
| 2105 |
+
"xxx",
|
| 2106 |
+
"xxx'x",
|
| 2107 |
+
"xxx-",
|
| 2108 |
+
"xxx.\\x\\xxxx",
|
| 2109 |
+
"xxx.xxx",
|
| 2110 |
+
"xxx.xxx\\x\\xxxx",
|
| 2111 |
+
"xxx/xx",
|
| 2112 |
+
"xxx\\x\\xxxx",
|
| 2113 |
+
"xxxd",
|
| 2114 |
+
"xxxx",
|
| 2115 |
+
"xxxx'",
|
| 2116 |
+
"xxxx'x",
|
| 2117 |
+
"xxxx)\\x\\x\\x\\xxx",
|
| 2118 |
+
"xxxx)\\x\\x\\x\\xxxx",
|
| 2119 |
+
"xxxx,\\x\\xxxx",
|
| 2120 |
+
"xxxx-",
|
| 2121 |
+
"xxxx.\\x\\xXxxxx",
|
| 2122 |
+
"xxxx.\\x\\x\\x\\x#d",
|
| 2123 |
+
"xxxx.\\x\\x\\x\\xxxx",
|
| 2124 |
+
"xxxx.\\x\\xxxx",
|
| 2125 |
+
"xxxx.\\x\\xx\u0080\u00a2",
|
| 2126 |
+
"xxxx/d/d.d/dd",
|
| 2127 |
+
"xxxx:\\x\\xx",
|
| 2128 |
+
"xxxx:\\x\\xxx",
|
| 2129 |
+
"xxxxXxxxx",
|
| 2130 |
+
"xxxx\\x\\x#d",
|
| 2131 |
+
"xxxx\\x\\xXXXX-",
|
| 2132 |
+
"xxxx\\x\\xXdXX-",
|
| 2133 |
+
"xxxx\\x\\xXxx-",
|
| 2134 |
+
"xxxx\\x\\xXxxx-",
|
| 2135 |
+
"xxxx\\x\\xXxxxd-",
|
| 2136 |
+
"xxxx\\x\\xXxxxx",
|
| 2137 |
+
"xxxx\\x\\xXxxxx-",
|
| 2138 |
+
"xxxx\\x\\x\\x\\xxxx",
|
| 2139 |
+
"xxxx\\x\\xxdxx-",
|
| 2140 |
+
"xxxx\\x\\xxxx",
|
| 2141 |
+
"xxxx\\x\\xxxx-",
|
| 2142 |
+
"xxxx\\x\\xxxxd-",
|
| 2143 |
+
"xxxx\\x\\xx\u0080\u00a2",
|
| 2144 |
+
"xxxxd",
|
| 2145 |
+
"xxxxddddxd",
|
| 2146 |
+
"xxxx\u2019",
|
| 2147 |
+
"xxxx\u2019x",
|
| 2148 |
+
"xxx\u2019x",
|
| 2149 |
+
"xx\u2019",
|
| 2150 |
+
"xx\u2019x",
|
| 2151 |
+
"xx\u2019xx",
|
| 2152 |
+
"x\u0080\u00a2",
|
| 2153 |
+
"x\u2019",
|
| 2154 |
+
"x\u2019x",
|
| 2155 |
+
"x\u2019xxxx",
|
| 2156 |
+
"x\ufe35x",
|
| 2157 |
+
"y",
|
| 2158 |
+
"y'",
|
| 2159 |
+
"y's",
|
| 2160 |
+
"y.",
|
| 2161 |
+
"year",
|
| 2162 |
+
"you",
|
| 2163 |
+
"y\u2019",
|
| 2164 |
+
"y\u2019s",
|
| 2165 |
+
"z",
|
| 2166 |
+
"z.",
|
| 2167 |
+
"|",
|
| 2168 |
+
"}",
|
| 2169 |
+
"\u00a0",
|
| 2170 |
+
"\u00ac",
|
| 2171 |
+
"\u00ac_\u00ac",
|
| 2172 |
+
"\u00af",
|
| 2173 |
+
"\u00af\\(x)/\u00af",
|
| 2174 |
+
"\u00af\\(\u30c4)/\u00af",
|
| 2175 |
+
"\u00b0",
|
| 2176 |
+
"\u00b0C.",
|
| 2177 |
+
"\u00b0F.",
|
| 2178 |
+
"\u00b0K.",
|
| 2179 |
+
"\u00b0X.",
|
| 2180 |
+
"\u00b0c.",
|
| 2181 |
+
"\u00b0f.",
|
| 2182 |
+
"\u00b0k.",
|
| 2183 |
+
"\u00b0x.",
|
| 2184 |
+
"\u00e2",
|
| 2185 |
+
"\u00e2\u0080\u00a2",
|
| 2186 |
+
"\u00e4",
|
| 2187 |
+
"\u00e4.",
|
| 2188 |
+
"\u00f6",
|
| 2189 |
+
"\u00f6.",
|
| 2190 |
+
"\u00fc",
|
| 2191 |
+
"\u00fc.",
|
| 2192 |
+
"\u0ca0",
|
| 2193 |
+
"\u0ca0_\u0ca0",
|
| 2194 |
+
"\u0ca0\ufe35\u0ca0",
|
| 2195 |
+
"\u2014",
|
| 2196 |
+
"\u2018",
|
| 2197 |
+
"\u2018S",
|
| 2198 |
+
"\u2018X",
|
| 2199 |
+
"\u2018s",
|
| 2200 |
+
"\u2018x",
|
| 2201 |
+
"\u2019",
|
| 2202 |
+
"\u2019-(",
|
| 2203 |
+
"\u2019-)",
|
| 2204 |
+
"\u2019Cause",
|
| 2205 |
+
"\u2019Cos",
|
| 2206 |
+
"\u2019Coz",
|
| 2207 |
+
"\u2019Cuz",
|
| 2208 |
+
"\u2019S",
|
| 2209 |
+
"\u2019X",
|
| 2210 |
+
"\u2019Xxx",
|
| 2211 |
+
"\u2019Xxxxx",
|
| 2212 |
+
"\u2019am",
|
| 2213 |
+
"\u2019bout",
|
| 2214 |
+
"\u2019cause",
|
| 2215 |
+
"\u2019cos",
|
| 2216 |
+
"\u2019coz",
|
| 2217 |
+
"\u2019cuz",
|
| 2218 |
+
"\u2019d",
|
| 2219 |
+
"\u2019em",
|
| 2220 |
+
"\u2019ll",
|
| 2221 |
+
"\u2019m",
|
| 2222 |
+
"\u2019nuff",
|
| 2223 |
+
"\u2019re",
|
| 2224 |
+
"\u2019s",
|
| 2225 |
+
"\u2019ve",
|
| 2226 |
+
"\u2019x",
|
| 2227 |
+
"\u2019xx",
|
| 2228 |
+
"\u2019xxx",
|
| 2229 |
+
"\u2019xxxx",
|
| 2230 |
+
"\u2019y",
|
| 2231 |
+
"\u2019\u2019",
|
| 2232 |
+
"\u2501",
|
| 2233 |
+
"\u253b",
|
| 2234 |
+
"\u253b\u2501\u253b",
|
| 2235 |
+
"\u256f",
|
| 2236 |
+
"\u25a1",
|
| 2237 |
+
"\ufe35",
|
| 2238 |
+
"\uff09"
|
| 2239 |
+
]
|
model-best/vocab/vectors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:14772b683e726436d5948ad3fff2b43d036ef2ebbe3458aafed6004e05a40706
|
| 3 |
+
size 128
|
model-best/vocab/vectors.cfg
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"mode":"default"
|
| 3 |
+
}
|