adrianeboyd commited on
Commit
e0d1490
1 Parent(s): 5d36e82

Add sk_udv25_slovaksnk_trf-0.0.1

Browse files
.gitattributes CHANGED
@@ -25,3 +25,8 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
25
  *.zip filter=lfs diff=lfs merge=lfs -text
26
  *.zstandard filter=lfs diff=lfs merge=lfs -text
27
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
 
 
 
25
  *.zip filter=lfs diff=lfs merge=lfs -text
26
  *.zstandard filter=lfs diff=lfs merge=lfs -text
27
  *tfevents* filter=lfs diff=lfs merge=lfs -text
28
+ *.whl filter=lfs diff=lfs merge=lfs -text
29
+ *.npz filter=lfs diff=lfs merge=lfs -text
30
+ *strings.json filter=lfs diff=lfs merge=lfs -text
31
+ vectors filter=lfs diff=lfs merge=lfs -text
32
+ model filter=lfs diff=lfs merge=lfs -text
LICENSE.txt ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ The treebank is licensed under the Creative Commons License Attribution-ShareAlike 4.0 International.
2
+
3
+ The complete license text is available at:
4
+ http://creativecommons.org/licenses/by-sa/4.0/legalcode
README.md ADDED
The diff for this file is too large to render. See raw diff
 
config.cfg ADDED
@@ -0,0 +1,254 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [paths]
2
+ train = "corpus/UD_Slovak-SNK/train.spacy"
3
+ dev = "corpus/UD_Slovak-SNK/dev.spacy"
4
+ vectors = null
5
+ init_tok2vec = null
6
+ tokenizer_source = "training/UD_Slovak-SNK/tokenizer/model-best"
7
+ transformer_source = "training/UD_Slovak-SNK/transformer/model-best"
8
+
9
+ [system]
10
+ gpu_allocator = "pytorch"
11
+ seed = 0
12
+
13
+ [nlp]
14
+ lang = "sk"
15
+ pipeline = ["experimental_char_ner_tokenizer","transformer","senter","tagger","morphologizer","parser","experimental_edit_tree_lemmatizer"]
16
+ batch_size = 64
17
+ disabled = ["senter"]
18
+ before_creation = null
19
+ after_creation = null
20
+ after_pipeline_creation = null
21
+ tokenizer = {"@tokenizers":"spacy-experimental.char_pretokenizer.v1"}
22
+
23
+ [components]
24
+
25
+ [components.experimental_char_ner_tokenizer]
26
+ factory = "experimental_char_ner_tokenizer"
27
+ scorer = {"@scorers":"spacy-experimental.tokenizer_scorer.v1"}
28
+
29
+ [components.experimental_char_ner_tokenizer.model]
30
+ @architectures = "spacy.TransitionBasedParser.v2"
31
+ state_type = "ner"
32
+ extra_state_tokens = false
33
+ hidden_width = 64
34
+ maxout_pieces = 2
35
+ use_upper = true
36
+ nO = null
37
+
38
+ [components.experimental_char_ner_tokenizer.model.tok2vec]
39
+ @architectures = "spacy.Tok2Vec.v2"
40
+
41
+ [components.experimental_char_ner_tokenizer.model.tok2vec.embed]
42
+ @architectures = "spacy.MultiHashEmbed.v2"
43
+ width = 128
44
+ attrs = ["ORTH","LOWER","IS_DIGIT","IS_ALPHA","IS_SPACE","IS_PUNCT"]
45
+ rows = [1000,500,50,50,50,50]
46
+ include_static_vectors = false
47
+
48
+ [components.experimental_char_ner_tokenizer.model.tok2vec.encode]
49
+ @architectures = "spacy.MaxoutWindowEncoder.v2"
50
+ width = 128
51
+ depth = 4
52
+ window_size = 4
53
+ maxout_pieces = 2
54
+
55
+ [components.experimental_edit_tree_lemmatizer]
56
+ factory = "experimental_edit_tree_lemmatizer"
57
+ backoff = "orth"
58
+ min_tree_freq = 1
59
+ overwrite = false
60
+ scorer = {"@scorers":"spacy.lemmatizer_scorer.v1"}
61
+ top_k = 1
62
+
63
+ [components.experimental_edit_tree_lemmatizer.model]
64
+ @architectures = "spacy.Tagger.v1"
65
+ nO = null
66
+
67
+ [components.experimental_edit_tree_lemmatizer.model.tok2vec]
68
+ @architectures = "spacy-transformers.TransformerListener.v1"
69
+ grad_factor = 1.0
70
+ upstream = "transformer"
71
+ pooling = {"@layers":"reduce_mean.v1"}
72
+
73
+ [components.morphologizer]
74
+ factory = "morphologizer"
75
+ extend = false
76
+ overwrite = false
77
+ scorer = {"@scorers":"spacy.morphologizer_scorer.v1"}
78
+
79
+ [components.morphologizer.model]
80
+ @architectures = "spacy.Tagger.v1"
81
+ nO = null
82
+
83
+ [components.morphologizer.model.tok2vec]
84
+ @architectures = "spacy-transformers.TransformerListener.v1"
85
+ grad_factor = 1.0
86
+ upstream = "transformer"
87
+ pooling = {"@layers":"reduce_mean.v1"}
88
+
89
+ [components.parser]
90
+ factory = "parser"
91
+ learn_tokens = false
92
+ min_action_freq = 5
93
+ moves = null
94
+ scorer = {"@scorers":"spacy.parser_scorer.v1"}
95
+ update_with_oracle_cut_size = 100
96
+
97
+ [components.parser.model]
98
+ @architectures = "spacy.TransitionBasedParser.v2"
99
+ state_type = "parser"
100
+ extra_state_tokens = false
101
+ hidden_width = 64
102
+ maxout_pieces = 3
103
+ use_upper = false
104
+ nO = null
105
+
106
+ [components.parser.model.tok2vec]
107
+ @architectures = "spacy-transformers.TransformerListener.v1"
108
+ grad_factor = 1.0
109
+ upstream = "transformer"
110
+ pooling = {"@layers":"reduce_mean.v1"}
111
+
112
+ [components.senter]
113
+ factory = "senter"
114
+ overwrite = false
115
+ scorer = {"@scorers":"spacy.senter_scorer.v1"}
116
+
117
+ [components.senter.model]
118
+ @architectures = "spacy.Tagger.v1"
119
+ nO = null
120
+
121
+ [components.senter.model.tok2vec]
122
+ @architectures = "spacy-transformers.TransformerListener.v1"
123
+ grad_factor = 1.0
124
+ upstream = "transformer"
125
+ pooling = {"@layers":"reduce_mean.v1"}
126
+
127
+ [components.tagger]
128
+ factory = "tagger"
129
+ neg_prefix = "!"
130
+ overwrite = false
131
+ scorer = {"@scorers":"spacy.tagger_scorer.v1"}
132
+
133
+ [components.tagger.model]
134
+ @architectures = "spacy.Tagger.v1"
135
+ nO = null
136
+
137
+ [components.tagger.model.tok2vec]
138
+ @architectures = "spacy-transformers.TransformerListener.v1"
139
+ grad_factor = 1.0
140
+ upstream = "transformer"
141
+ pooling = {"@layers":"reduce_mean.v1"}
142
+
143
+ [components.transformer]
144
+ factory = "transformer"
145
+ max_batch_items = 4096
146
+ set_extra_annotations = {"@annotation_setters":"spacy-transformers.null_annotation_setter.v1"}
147
+
148
+ [components.transformer.model]
149
+ @architectures = "spacy-transformers.TransformerModel.v3"
150
+ name = "xlm-roberta-base"
151
+ mixed_precision = true
152
+
153
+ [components.transformer.model.get_spans]
154
+ @span_getters = "spacy-transformers.strided_spans.v1"
155
+ window = 128
156
+ stride = 96
157
+
158
+ [components.transformer.model.grad_scaler_config]
159
+
160
+ [components.transformer.model.tokenizer_config]
161
+ use_fast = true
162
+
163
+ [components.transformer.model.transformer_config]
164
+
165
+ [corpora]
166
+
167
+ [corpora.dev]
168
+ @readers = "spacy.Corpus.v1"
169
+ path = ${paths.dev}
170
+ max_length = 0
171
+ gold_preproc = false
172
+ limit = 0
173
+ augmenter = null
174
+
175
+ [corpora.train]
176
+ @readers = "spacy.Corpus.v1"
177
+ path = ${paths.train}
178
+ max_length = 0
179
+ gold_preproc = false
180
+ limit = 0
181
+ augmenter = null
182
+
183
+ [training]
184
+ train_corpus = "corpora.train"
185
+ dev_corpus = "corpora.dev"
186
+ seed = ${system:seed}
187
+ gpu_allocator = ${system:gpu_allocator}
188
+ dropout = 0.1
189
+ accumulate_gradient = 3
190
+ patience = 5000
191
+ max_epochs = 0
192
+ max_steps = 20000
193
+ eval_frequency = 200
194
+ frozen_components = []
195
+ before_to_disk = null
196
+ annotating_components = []
197
+
198
+ [training.batcher]
199
+ @batchers = "spacy.batch_by_padded.v1"
200
+ discard_oversize = true
201
+ get_length = null
202
+ size = 2000
203
+ buffer = 256
204
+
205
+ [training.logger]
206
+ @loggers = "spacy.ConsoleLogger.v1"
207
+ progress_bar = false
208
+
209
+ [training.optimizer]
210
+ @optimizers = "Adam.v1"
211
+ beta1 = 0.9
212
+ beta2 = 0.999
213
+ L2_is_weight_decay = true
214
+ L2 = 0.01
215
+ grad_clip = 1.0
216
+ use_averages = true
217
+ eps = 0.00000001
218
+
219
+ [training.optimizer.learn_rate]
220
+ @schedules = "warmup_linear.v1"
221
+ warmup_steps = 250
222
+ total_steps = 20000
223
+ initial_rate = 0.00005
224
+
225
+ [training.score_weights]
226
+ token_f = 0.0
227
+ token_p = null
228
+ token_r = null
229
+ token_acc = null
230
+ sents_f = 0.05
231
+ sents_p = 0.0
232
+ sents_r = 0.0
233
+ tag_acc = 0.11
234
+ pos_acc = 0.05
235
+ morph_acc = 0.05
236
+ morph_per_feat = null
237
+ dep_uas = 0.11
238
+ dep_las = 0.11
239
+ dep_las_per_type = null
240
+ lemma_acc = 0.52
241
+
242
+ [pretraining]
243
+
244
+ [initialize]
245
+ vectors = ${paths.vectors}
246
+ init_tok2vec = ${paths.init_tok2vec}
247
+ vocab_data = null
248
+ lookups = null
249
+ before_init = null
250
+ after_init = null
251
+
252
+ [initialize.components]
253
+
254
+ [initialize.tokenizer]
experimental_char_ner_tokenizer/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
+ }
experimental_char_ner_tokenizer/model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8ea15bdef764d3c4049f8041ba326a974602a3d1e6da124170091a0e264ad66b
3
+ size 6922248
experimental_char_ner_tokenizer/moves ADDED
@@ -0,0 +1 @@
 
 
1
+ ��moves�l{"0":{},"1":{"TOKEN":355350},"2":{"TOKEN":355350},"3":{"TOKEN":355350},"4":{"TOKEN":355350,"":1},"5":{"":1}}�cfg��neg_key�
experimental_edit_tree_lemmatizer/cfg ADDED
@@ -0,0 +1,2676 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "labels":[
3
+ 1,
4
+ 2,
5
+ 4,
6
+ 6,
7
+ 8,
8
+ 10,
9
+ 11,
10
+ 13,
11
+ 14,
12
+ 16,
13
+ 17,
14
+ 19,
15
+ 20,
16
+ 23,
17
+ 25,
18
+ 27,
19
+ 29,
20
+ 32,
21
+ 34,
22
+ 36,
23
+ 40,
24
+ 42,
25
+ 44,
26
+ 46,
27
+ 48,
28
+ 50,
29
+ 52,
30
+ 54,
31
+ 55,
32
+ 57,
33
+ 59,
34
+ 61,
35
+ 64,
36
+ 66,
37
+ 67,
38
+ 71,
39
+ 73,
40
+ 74,
41
+ 75,
42
+ 77,
43
+ 79,
44
+ 81,
45
+ 83,
46
+ 86,
47
+ 87,
48
+ 89,
49
+ 91,
50
+ 95,
51
+ 97,
52
+ 99,
53
+ 102,
54
+ 12,
55
+ 104,
56
+ 106,
57
+ 108,
58
+ 110,
59
+ 112,
60
+ 114,
61
+ 116,
62
+ 117,
63
+ 119,
64
+ 121,
65
+ 123,
66
+ 125,
67
+ 127,
68
+ 129,
69
+ 131,
70
+ 133,
71
+ 136,
72
+ 138,
73
+ 141,
74
+ 143,
75
+ 146,
76
+ 150,
77
+ 151,
78
+ 153,
79
+ 156,
80
+ 157,
81
+ 159,
82
+ 160,
83
+ 162,
84
+ 163,
85
+ 165,
86
+ 167,
87
+ 168,
88
+ 170,
89
+ 173,
90
+ 174,
91
+ 176,
92
+ 178,
93
+ 180,
94
+ 181,
95
+ 182,
96
+ 183,
97
+ 185,
98
+ 187,
99
+ 190,
100
+ 191,
101
+ 193,
102
+ 195,
103
+ 28,
104
+ 198,
105
+ 200,
106
+ 202,
107
+ 204,
108
+ 206,
109
+ 209,
110
+ 210,
111
+ 212,
112
+ 213,
113
+ 216,
114
+ 219,
115
+ 220,
116
+ 222,
117
+ 223,
118
+ 225,
119
+ 228,
120
+ 230,
121
+ 232,
122
+ 235,
123
+ 237,
124
+ 238,
125
+ 240,
126
+ 241,
127
+ 242,
128
+ 243,
129
+ 244,
130
+ 247,
131
+ 249,
132
+ 251,
133
+ 252,
134
+ 255,
135
+ 257,
136
+ 258,
137
+ 260,
138
+ 262,
139
+ 264,
140
+ 266,
141
+ 267,
142
+ 269,
143
+ 270,
144
+ 271,
145
+ 272,
146
+ 62,
147
+ 274,
148
+ 275,
149
+ 277,
150
+ 278,
151
+ 279,
152
+ 280,
153
+ 281,
154
+ 282,
155
+ 284,
156
+ 286,
157
+ 287,
158
+ 31,
159
+ 289,
160
+ 290,
161
+ 291,
162
+ 293,
163
+ 294,
164
+ 295,
165
+ 297,
166
+ 299,
167
+ 300,
168
+ 301,
169
+ 303,
170
+ 304,
171
+ 305,
172
+ 306,
173
+ 307,
174
+ 308,
175
+ 309,
176
+ 310,
177
+ 312,
178
+ 313,
179
+ 314,
180
+ 315,
181
+ 318,
182
+ 319,
183
+ 321,
184
+ 323,
185
+ 324,
186
+ 326,
187
+ 328,
188
+ 330,
189
+ 331,
190
+ 333,
191
+ 334,
192
+ 335,
193
+ 336,
194
+ 337,
195
+ 338,
196
+ 339,
197
+ 341,
198
+ 343,
199
+ 345,
200
+ 346,
201
+ 348,
202
+ 349,
203
+ 350,
204
+ 351,
205
+ 352,
206
+ 353,
207
+ 354,
208
+ 357,
209
+ 359,
210
+ 360,
211
+ 361,
212
+ 362,
213
+ 364,
214
+ 366,
215
+ 368,
216
+ 369,
217
+ 370,
218
+ 372,
219
+ 373,
220
+ 374,
221
+ 375,
222
+ 376,
223
+ 377,
224
+ 378,
225
+ 379,
226
+ 380,
227
+ 381,
228
+ 382,
229
+ 384,
230
+ 385,
231
+ 386,
232
+ 387,
233
+ 388,
234
+ 389,
235
+ 391,
236
+ 394,
237
+ 397,
238
+ 398,
239
+ 399,
240
+ 401,
241
+ 402,
242
+ 403,
243
+ 404,
244
+ 405,
245
+ 406,
246
+ 407,
247
+ 408,
248
+ 409,
249
+ 410,
250
+ 412,
251
+ 413,
252
+ 415,
253
+ 417,
254
+ 418,
255
+ 420,
256
+ 422,
257
+ 423,
258
+ 424,
259
+ 427,
260
+ 428,
261
+ 430,
262
+ 432,
263
+ 433,
264
+ 434,
265
+ 435,
266
+ 436,
267
+ 439,
268
+ 440,
269
+ 441,
270
+ 442,
271
+ 443,
272
+ 444,
273
+ 445,
274
+ 447,
275
+ 449,
276
+ 452,
277
+ 454,
278
+ 456,
279
+ 457,
280
+ 458,
281
+ 459,
282
+ 460,
283
+ 461,
284
+ 462,
285
+ 464,
286
+ 465,
287
+ 466,
288
+ 468,
289
+ 469,
290
+ 471,
291
+ 473,
292
+ 474,
293
+ 476,
294
+ 478,
295
+ 480,
296
+ 481,
297
+ 482,
298
+ 483,
299
+ 486,
300
+ 488,
301
+ 489,
302
+ 490,
303
+ 491,
304
+ 492,
305
+ 493,
306
+ 495,
307
+ 496,
308
+ 497,
309
+ 256,
310
+ 498,
311
+ 499,
312
+ 500,
313
+ 501,
314
+ 502,
315
+ 503,
316
+ 504,
317
+ 505,
318
+ 506,
319
+ 507,
320
+ 508,
321
+ 509,
322
+ 510,
323
+ 512,
324
+ 513,
325
+ 514,
326
+ 515,
327
+ 516,
328
+ 517,
329
+ 518,
330
+ 519,
331
+ 520,
332
+ 521,
333
+ 522,
334
+ 523,
335
+ 524,
336
+ 525,
337
+ 0,
338
+ 526,
339
+ 528,
340
+ 529,
341
+ 530,
342
+ 533,
343
+ 534,
344
+ 536,
345
+ 537,
346
+ 538,
347
+ 539,
348
+ 540,
349
+ 541,
350
+ 542,
351
+ 543,
352
+ 544,
353
+ 545,
354
+ 547,
355
+ 548,
356
+ 549,
357
+ 550,
358
+ 552,
359
+ 553,
360
+ 554,
361
+ 555,
362
+ 557,
363
+ 558,
364
+ 559,
365
+ 561,
366
+ 563,
367
+ 564,
368
+ 565,
369
+ 566,
370
+ 567,
371
+ 568,
372
+ 569,
373
+ 570,
374
+ 571,
375
+ 572,
376
+ 573,
377
+ 574,
378
+ 575,
379
+ 576,
380
+ 577,
381
+ 578,
382
+ 579,
383
+ 580,
384
+ 581,
385
+ 583,
386
+ 584,
387
+ 586,
388
+ 587,
389
+ 588,
390
+ 589,
391
+ 590,
392
+ 591,
393
+ 592,
394
+ 594,
395
+ 596,
396
+ 597,
397
+ 599,
398
+ 601,
399
+ 603,
400
+ 605,
401
+ 607,
402
+ 609,
403
+ 612,
404
+ 614,
405
+ 616,
406
+ 618,
407
+ 619,
408
+ 41,
409
+ 621,
410
+ 623,
411
+ 625,
412
+ 626,
413
+ 627,
414
+ 628,
415
+ 630,
416
+ 633,
417
+ 634,
418
+ 636,
419
+ 640,
420
+ 641,
421
+ 643,
422
+ 644,
423
+ 646,
424
+ 647,
425
+ 649,
426
+ 651,
427
+ 653,
428
+ 655,
429
+ 657,
430
+ 659,
431
+ 661,
432
+ 663,
433
+ 665,
434
+ 666,
435
+ 667,
436
+ 669,
437
+ 671,
438
+ 672,
439
+ 673,
440
+ 674,
441
+ 675,
442
+ 677,
443
+ 679,
444
+ 680,
445
+ 681,
446
+ 684,
447
+ 685,
448
+ 686,
449
+ 687,
450
+ 688,
451
+ 690,
452
+ 691,
453
+ 692,
454
+ 694,
455
+ 695,
456
+ 696,
457
+ 697,
458
+ 698,
459
+ 700,
460
+ 703,
461
+ 705,
462
+ 707,
463
+ 708,
464
+ 710,
465
+ 711,
466
+ 712,
467
+ 713,
468
+ 714,
469
+ 113,
470
+ 716,
471
+ 717,
472
+ 719,
473
+ 84,
474
+ 721,
475
+ 723,
476
+ 724,
477
+ 726,
478
+ 727,
479
+ 728,
480
+ 729,
481
+ 730,
482
+ 732,
483
+ 734,
484
+ 735,
485
+ 737,
486
+ 740,
487
+ 742,
488
+ 744,
489
+ 747,
490
+ 748,
491
+ 750,
492
+ 751,
493
+ 753,
494
+ 755,
495
+ 757,
496
+ 760,
497
+ 764,
498
+ 47,
499
+ 765,
500
+ 766,
501
+ 768,
502
+ 769,
503
+ 771,
504
+ 772,
505
+ 773,
506
+ 774,
507
+ 777,
508
+ 234,
509
+ 779,
510
+ 781,
511
+ 782,
512
+ 783,
513
+ 785,
514
+ 786,
515
+ 788,
516
+ 790,
517
+ 792,
518
+ 793,
519
+ 794,
520
+ 797,
521
+ 798,
522
+ 800,
523
+ 802,
524
+ 804,
525
+ 805,
526
+ 806,
527
+ 807,
528
+ 809,
529
+ 810,
530
+ 812,
531
+ 815,
532
+ 816,
533
+ 817,
534
+ 818,
535
+ 820,
536
+ 821,
537
+ 822,
538
+ 824,
539
+ 825,
540
+ 826,
541
+ 827,
542
+ 828,
543
+ 830,
544
+ 832,
545
+ 834,
546
+ 835,
547
+ 836,
548
+ 837,
549
+ 838,
550
+ 839,
551
+ 840,
552
+ 842,
553
+ 844,
554
+ 846,
555
+ 848,
556
+ 850,
557
+ 852,
558
+ 855,
559
+ 857,
560
+ 859,
561
+ 861,
562
+ 862,
563
+ 863,
564
+ 864,
565
+ 865,
566
+ 866,
567
+ 867,
568
+ 98,
569
+ 868,
570
+ 869,
571
+ 870,
572
+ 873,
573
+ 263,
574
+ 874,
575
+ 875,
576
+ 876,
577
+ 877,
578
+ 878,
579
+ 879,
580
+ 881,
581
+ 882,
582
+ 884,
583
+ 885,
584
+ 887,
585
+ 888,
586
+ 889,
587
+ 891,
588
+ 892,
589
+ 896,
590
+ 897,
591
+ 898,
592
+ 899,
593
+ 900,
594
+ 901,
595
+ 902,
596
+ 903,
597
+ 904,
598
+ 905,
599
+ 906,
600
+ 907,
601
+ 908,
602
+ 909,
603
+ 910,
604
+ 911,
605
+ 913,
606
+ 914,
607
+ 915,
608
+ 917,
609
+ 919,
610
+ 920,
611
+ 921,
612
+ 922,
613
+ 923,
614
+ 926,
615
+ 927,
616
+ 928,
617
+ 929,
618
+ 931,
619
+ 932,
620
+ 934,
621
+ 936,
622
+ 939,
623
+ 941,
624
+ 943,
625
+ 945,
626
+ 946,
627
+ 947,
628
+ 949,
629
+ 951,
630
+ 952,
631
+ 953,
632
+ 955,
633
+ 958,
634
+ 959,
635
+ 960,
636
+ 961,
637
+ 962,
638
+ 964,
639
+ 965,
640
+ 967,
641
+ 968,
642
+ 969,
643
+ 971,
644
+ 973,
645
+ 975,
646
+ 976,
647
+ 977,
648
+ 978,
649
+ 980,
650
+ 982,
651
+ 983,
652
+ 984,
653
+ 985,
654
+ 986,
655
+ 987,
656
+ 989,
657
+ 992,
658
+ 993,
659
+ 996,
660
+ 998,
661
+ 999,
662
+ 1000,
663
+ 1001,
664
+ 1003,
665
+ 1004,
666
+ 1005,
667
+ 1006,
668
+ 1007,
669
+ 1008,
670
+ 1009,
671
+ 1010,
672
+ 1011,
673
+ 1012,
674
+ 1013,
675
+ 1015,
676
+ 1017,
677
+ 1019,
678
+ 1021,
679
+ 1022,
680
+ 1023,
681
+ 1024,
682
+ 1025,
683
+ 1027,
684
+ 1028,
685
+ 1030,
686
+ 1031,
687
+ 1035,
688
+ 1037,
689
+ 1038,
690
+ 1039,
691
+ 1042,
692
+ 1043,
693
+ 1045,
694
+ 1046,
695
+ 1047,
696
+ 1049,
697
+ 1051,
698
+ 1052,
699
+ 1054,
700
+ 1056,
701
+ 1057,
702
+ 1058,
703
+ 1060,
704
+ 1061,
705
+ 1062,
706
+ 1064,
707
+ 1065,
708
+ 1066,
709
+ 1067,
710
+ 1068,
711
+ 1069,
712
+ 1071,
713
+ 1073,
714
+ 1074,
715
+ 1076,
716
+ 1078,
717
+ 1079,
718
+ 1080,
719
+ 1081,
720
+ 1082,
721
+ 1083,
722
+ 1086,
723
+ 1088,
724
+ 1090,
725
+ 1091,
726
+ 1092,
727
+ 1094,
728
+ 1095,
729
+ 1096,
730
+ 1099,
731
+ 1100,
732
+ 1101,
733
+ 1102,
734
+ 1103,
735
+ 1104,
736
+ 1106,
737
+ 1107,
738
+ 1108,
739
+ 1109,
740
+ 1110,
741
+ 1112,
742
+ 1114,
743
+ 1116,
744
+ 1118,
745
+ 1119,
746
+ 1121,
747
+ 1122,
748
+ 1124,
749
+ 1125,
750
+ 1126,
751
+ 1127,
752
+ 107,
753
+ 1128,
754
+ 1129,
755
+ 1130,
756
+ 1132,
757
+ 1133,
758
+ 1136,
759
+ 1137,
760
+ 1139,
761
+ 1141,
762
+ 1143,
763
+ 1145,
764
+ 1146,
765
+ 1147,
766
+ 1148,
767
+ 1150,
768
+ 1151,
769
+ 1153,
770
+ 1155,
771
+ 1156,
772
+ 1157,
773
+ 1160,
774
+ 1161,
775
+ 1162,
776
+ 1163,
777
+ 1164,
778
+ 1167,
779
+ 1169,
780
+ 1170,
781
+ 1171,
782
+ 1172,
783
+ 1173,
784
+ 1174,
785
+ 1175,
786
+ 1176,
787
+ 1177,
788
+ 1178,
789
+ 1180,
790
+ 1181,
791
+ 1182,
792
+ 1183,
793
+ 1184,
794
+ 1186,
795
+ 1188,
796
+ 1189,
797
+ 1191,
798
+ 1193,
799
+ 1194,
800
+ 1195,
801
+ 1196,
802
+ 1198,
803
+ 1201,
804
+ 1203,
805
+ 1204,
806
+ 1205,
807
+ 7,
808
+ 80,
809
+ 1207,
810
+ 1209,
811
+ 1210,
812
+ 1212,
813
+ 1213,
814
+ 1215,
815
+ 1216,
816
+ 1217,
817
+ 1218,
818
+ 1219,
819
+ 1220,
820
+ 1221,
821
+ 1223,
822
+ 1225,
823
+ 1226,
824
+ 1228,
825
+ 1229,
826
+ 1232,
827
+ 1234,
828
+ 1236,
829
+ 1238,
830
+ 1239,
831
+ 1240,
832
+ 1241,
833
+ 1242,
834
+ 1243,
835
+ 1244,
836
+ 1246,
837
+ 1248,
838
+ 1250,
839
+ 1252,
840
+ 1254,
841
+ 1256,
842
+ 1257,
843
+ 1259,
844
+ 1260,
845
+ 1263,
846
+ 1265,
847
+ 1266,
848
+ 1267,
849
+ 1269,
850
+ 1272,
851
+ 1274,
852
+ 1275,
853
+ 1276,
854
+ 1277,
855
+ 1279,
856
+ 1281,
857
+ 1284,
858
+ 1285,
859
+ 1288,
860
+ 1289,
861
+ 1290,
862
+ 1291,
863
+ 1292,
864
+ 1293,
865
+ 1294,
866
+ 1295,
867
+ 1297,
868
+ 1298,
869
+ 1299,
870
+ 1301,
871
+ 1302,
872
+ 1303,
873
+ 1305,
874
+ 1307,
875
+ 1308,
876
+ 1309,
877
+ 1310,
878
+ 1311,
879
+ 1312,
880
+ 1314,
881
+ 1315,
882
+ 1316,
883
+ 1317,
884
+ 1318,
885
+ 1320,
886
+ 1322,
887
+ 1323,
888
+ 1325,
889
+ 1326,
890
+ 1328,
891
+ 1329,
892
+ 1331,
893
+ 194,
894
+ 1333,
895
+ 1335,
896
+ 1337,
897
+ 1339,
898
+ 1341,
899
+ 1342,
900
+ 1343,
901
+ 1344,
902
+ 1345,
903
+ 1347,
904
+ 1348,
905
+ 1350,
906
+ 1351,
907
+ 1353,
908
+ 1354,
909
+ 1356,
910
+ 1358,
911
+ 1359,
912
+ 1360,
913
+ 1361,
914
+ 1363,
915
+ 1364,
916
+ 1365,
917
+ 1366,
918
+ 1368,
919
+ 1370,
920
+ 1372,
921
+ 1374,
922
+ 1375,
923
+ 1377,
924
+ 1378,
925
+ 1380,
926
+ 1382,
927
+ 1383,
928
+ 1384,
929
+ 1385,
930
+ 1386,
931
+ 1387,
932
+ 1388,
933
+ 1392,
934
+ 1395,
935
+ 1397,
936
+ 1398,
937
+ 1400,
938
+ 1401,
939
+ 1402,
940
+ 1403,
941
+ 1404,
942
+ 1405,
943
+ 1406,
944
+ 1408,
945
+ 1410,
946
+ 1412,
947
+ 1413,
948
+ 1414,
949
+ 1235,
950
+ 1415,
951
+ 1417,
952
+ 1418,
953
+ 1419,
954
+ 1420,
955
+ 1421,
956
+ 1422,
957
+ 1423,
958
+ 1425,
959
+ 1426,
960
+ 1427,
961
+ 1428,
962
+ 1283,
963
+ 1430,
964
+ 1431,
965
+ 1432,
966
+ 1434,
967
+ 1435,
968
+ 1437,
969
+ 1439,
970
+ 1440,
971
+ 1442,
972
+ 1443,
973
+ 1444,
974
+ 1446,
975
+ 1447,
976
+ 1448,
977
+ 1449,
978
+ 1450,
979
+ 1452,
980
+ 1453,
981
+ 1454,
982
+ 1457,
983
+ 1458,
984
+ 1459,
985
+ 1461,
986
+ 1462,
987
+ 1464,
988
+ 1465,
989
+ 1466,
990
+ 1467,
991
+ 1469,
992
+ 1470,
993
+ 1471,
994
+ 1472,
995
+ 1473,
996
+ 1474,
997
+ 1475,
998
+ 1477,
999
+ 1478,
1000
+ 1479,
1001
+ 1480,
1002
+ 1481,
1003
+ 1483,
1004
+ 1485,
1005
+ 1487,
1006
+ 1488,
1007
+ 1489,
1008
+ 1491,
1009
+ 1493,
1010
+ 1494,
1011
+ 1496,
1012
+ 1498,
1013
+ 1500,
1014
+ 1501,
1015
+ 1503,
1016
+ 1504,
1017
+ 1271,
1018
+ 1505,
1019
+ 1506,
1020
+ 1507,
1021
+ 1508,
1022
+ 1509,
1023
+ 1511,
1024
+ 1512,
1025
+ 1513,
1026
+ 1516,
1027
+ 1517,
1028
+ 1518,
1029
+ 1519,
1030
+ 1521,
1031
+ 1522,
1032
+ 1523,
1033
+ 1526,
1034
+ 1528,
1035
+ 1530,
1036
+ 1531,
1037
+ 1532,
1038
+ 1534,
1039
+ 1535,
1040
+ 1536,
1041
+ 1537,
1042
+ 1538,
1043
+ 1539,
1044
+ 1540,
1045
+ 1542,
1046
+ 966,
1047
+ 1544,
1048
+ 1545,
1049
+ 1546,
1050
+ 1547,
1051
+ 1549,
1052
+ 1551,
1053
+ 1552,
1054
+ 1553,
1055
+ 1554,
1056
+ 1555,
1057
+ 1556,
1058
+ 1557,
1059
+ 1558,
1060
+ 1559,
1061
+ 950,
1062
+ 1561,
1063
+ 1562,
1064
+ 1563,
1065
+ 1564,
1066
+ 1565,
1067
+ 1567,
1068
+ 1568,
1069
+ 1569,
1070
+ 1570,
1071
+ 1571,
1072
+ 1572,
1073
+ 1574,
1074
+ 1575,
1075
+ 1577,
1076
+ 1578,
1077
+ 1580,
1078
+ 1582,
1079
+ 1584,
1080
+ 1587,
1081
+ 1590,
1082
+ 1592,
1083
+ 1593,
1084
+ 1596,
1085
+ 1598,
1086
+ 1599,
1087
+ 1600,
1088
+ 1601,
1089
+ 1602,
1090
+ 1603,
1091
+ 1604,
1092
+ 1606,
1093
+ 1607,
1094
+ 1609,
1095
+ 1610,
1096
+ 1611,
1097
+ 1612,
1098
+ 1613,
1099
+ 1615,
1100
+ 1616,
1101
+ 1618,
1102
+ 1619,
1103
+ 1620,
1104
+ 1622,
1105
+ 1624,
1106
+ 1626,
1107
+ 1628,
1108
+ 1629,
1109
+ 1631,
1110
+ 1632,
1111
+ 1633,
1112
+ 1634,
1113
+ 1635,
1114
+ 1636,
1115
+ 1637,
1116
+ 1639,
1117
+ 1640,
1118
+ 1642,
1119
+ 1646,
1120
+ 1647,
1121
+ 1648,
1122
+ 1650,
1123
+ 1651,
1124
+ 1653,
1125
+ 1654,
1126
+ 1655,
1127
+ 1656,
1128
+ 1658,
1129
+ 1660,
1130
+ 1662,
1131
+ 1664,
1132
+ 1665,
1133
+ 1666,
1134
+ 1669,
1135
+ 1671,
1136
+ 1672,
1137
+ 1673,
1138
+ 1674,
1139
+ 1676,
1140
+ 1677,
1141
+ 1678,
1142
+ 1679,
1143
+ 1680,
1144
+ 1681,
1145
+ 1683,
1146
+ 1685,
1147
+ 1686,
1148
+ 1687,
1149
+ 1688,
1150
+ 1689,
1151
+ 1690,
1152
+ 1691,
1153
+ 1692,
1154
+ 1694,
1155
+ 1695,
1156
+ 1696,
1157
+ 1700,
1158
+ 1702,
1159
+ 1703,
1160
+ 1705,
1161
+ 1706,
1162
+ 1709,
1163
+ 1710,
1164
+ 1711,
1165
+ 1712,
1166
+ 1713,
1167
+ 1714,
1168
+ 1715,
1169
+ 1716,
1170
+ 1717,
1171
+ 1721,
1172
+ 1723,
1173
+ 1725,
1174
+ 1726,
1175
+ 1727,
1176
+ 1728,
1177
+ 1729,
1178
+ 1730,
1179
+ 1731,
1180
+ 1732,
1181
+ 1733,
1182
+ 1734,
1183
+ 1736,
1184
+ 1737,
1185
+ 1738,
1186
+ 1739,
1187
+ 1741,
1188
+ 1742,
1189
+ 1745,
1190
+ 1746,
1191
+ 1747,
1192
+ 1749,
1193
+ 1751,
1194
+ 1752,
1195
+ 1753,
1196
+ 1754,
1197
+ 1755,
1198
+ 1756,
1199
+ 1758,
1200
+ 1759,
1201
+ 1760,
1202
+ 1761,
1203
+ 1763,
1204
+ 1766,
1205
+ 1767,
1206
+ 1768,
1207
+ 1770,
1208
+ 1771,
1209
+ 1772,
1210
+ 1773,
1211
+ 1774,
1212
+ 1775,
1213
+ 1777,
1214
+ 1778,
1215
+ 1779,
1216
+ 1780,
1217
+ 1781,
1218
+ 1783,
1219
+ 1785,
1220
+ 1787,
1221
+ 1789,
1222
+ 1792,
1223
+ 1793,
1224
+ 1795,
1225
+ 1797,
1226
+ 1798,
1227
+ 1799,
1228
+ 1801,
1229
+ 1802,
1230
+ 1804,
1231
+ 1805,
1232
+ 1806,
1233
+ 1807,
1234
+ 1808,
1235
+ 1809,
1236
+ 1811,
1237
+ 1813,
1238
+ 1815,
1239
+ 1816,
1240
+ 1818,
1241
+ 1819,
1242
+ 1820,
1243
+ 1822,
1244
+ 1824,
1245
+ 1826,
1246
+ 1828,
1247
+ 1829,
1248
+ 1831,
1249
+ 1832,
1250
+ 1833,
1251
+ 1835,
1252
+ 1837,
1253
+ 1839,
1254
+ 1841,
1255
+ 1842,
1256
+ 1843,
1257
+ 1844,
1258
+ 1845,
1259
+ 1846,
1260
+ 1847,
1261
+ 1848,
1262
+ 1849,
1263
+ 1850,
1264
+ 1851,
1265
+ 1852,
1266
+ 1853,
1267
+ 1855,
1268
+ 1856,
1269
+ 1857,
1270
+ 1858,
1271
+ 1859,
1272
+ 1860,
1273
+ 1862,
1274
+ 1863,
1275
+ 1864,
1276
+ 1865,
1277
+ 1866,
1278
+ 1868,
1279
+ 1869,
1280
+ 1871,
1281
+ 1873,
1282
+ 1874,
1283
+ 1876,
1284
+ 1877,
1285
+ 1878,
1286
+ 1880,
1287
+ 1882,
1288
+ 1884,
1289
+ 1885,
1290
+ 1886,
1291
+ 1887,
1292
+ 1888,
1293
+ 1889,
1294
+ 1890,
1295
+ 1891,
1296
+ 1892,
1297
+ 1894,
1298
+ 1895,
1299
+ 1897,
1300
+ 1898,
1301
+ 1900,
1302
+ 1901,
1303
+ 1903,
1304
+ 1905,
1305
+ 1906,
1306
+ 1907,
1307
+ 1909,
1308
+ 1910,
1309
+ 1911,
1310
+ 1912,
1311
+ 1913,
1312
+ 1914,
1313
+ 1915,
1314
+ 1916,
1315
+ 1917,
1316
+ 1918,
1317
+ 1919,
1318
+ 1920,
1319
+ 1923,
1320
+ 1924,
1321
+ 1925,
1322
+ 1926,
1323
+ 1928,
1324
+ 1929,
1325
+ 1930,
1326
+ 1932,
1327
+ 1934,
1328
+ 1935,
1329
+ 1938,
1330
+ 1939,
1331
+ 1940,
1332
+ 1942,
1333
+ 1943,
1334
+ 1945,
1335
+ 1946,
1336
+ 1947,
1337
+ 1949,
1338
+ 1950,
1339
+ 1951,
1340
+ 1953,
1341
+ 1954,
1342
+ 1955,
1343
+ 1956,
1344
+ 1957,
1345
+ 1958,
1346
+ 1960,
1347
+ 1961,
1348
+ 1962,
1349
+ 1963,
1350
+ 1964,
1351
+ 1965,
1352
+ 1967,
1353
+ 1968,
1354
+ 1969,
1355
+ 1970,
1356
+ 1973,
1357
+ 1975,
1358
+ 1976,
1359
+ 1977,
1360
+ 1978,
1361
+ 1979,
1362
+ 1981,
1363
+ 1983,
1364
+ 1984,
1365
+ 1985,
1366
+ 1987,
1367
+ 1989,
1368
+ 1990,
1369
+ 1991,
1370
+ 1992,
1371
+ 1994,
1372
+ 1995,
1373
+ 1996,
1374
+ 1997,
1375
+ 1998,
1376
+ 2000,
1377
+ 2002,
1378
+ 2003,
1379
+ 2004,
1380
+ 2005,
1381
+ 2007,
1382
+ 2008,
1383
+ 2010,
1384
+ 2012,
1385
+ 2013,
1386
+ 2014,
1387
+ 2015,
1388
+ 1367,
1389
+ 2017,
1390
+ 2018,
1391
+ 2019,
1392
+ 2021,
1393
+ 2023,
1394
+ 2025,
1395
+ 2026,
1396
+ 2028,
1397
+ 2029,
1398
+ 2030,
1399
+ 2031,
1400
+ 2033,
1401
+ 2035,
1402
+ 2038,
1403
+ 2040,
1404
+ 2041,
1405
+ 2042,
1406
+ 2044,
1407
+ 2046,
1408
+ 2048,
1409
+ 2051,
1410
+ 2052,
1411
+ 2053,
1412
+ 2054,
1413
+ 2055,
1414
+ 2057,
1415
+ 2058,
1416
+ 2059,
1417
+ 2061,
1418
+ 2063,
1419
+ 2064,
1420
+ 2066,
1421
+ 2067,
1422
+ 2068,
1423
+ 2070,
1424
+ 2071,
1425
+ 2072,
1426
+ 2073,
1427
+ 2074,
1428
+ 2075,
1429
+ 2076,
1430
+ 2077,
1431
+ 2078,
1432
+ 2080,
1433
+ 2081,
1434
+ 2084,
1435
+ 2085,
1436
+ 2086,
1437
+ 2087,
1438
+ 2088,
1439
+ 2089,
1440
+ 2090,
1441
+ 2091,
1442
+ 2092,
1443
+ 2094,
1444
+ 2096,
1445
+ 2097,
1446
+ 2098,
1447
+ 2099,
1448
+ 2100,
1449
+ 2101,
1450
+ 2102,
1451
+ 2103,
1452
+ 2104,
1453
+ 2105,
1454
+ 2106,
1455
+ 2108,
1456
+ 2109,
1457
+ 2111,
1458
+ 2112,
1459
+ 2113,
1460
+ 2116,
1461
+ 2117,
1462
+ 2118,
1463
+ 2119,
1464
+ 2120,
1465
+ 2121,
1466
+ 2122,
1467
+ 2123,
1468
+ 2124,
1469
+ 2126,
1470
+ 2127,
1471
+ 2128,
1472
+ 2129,
1473
+ 2130,
1474
+ 2131,
1475
+ 2133,
1476
+ 2134,
1477
+ 2135,
1478
+ 2136,
1479
+ 2139,
1480
+ 2141,
1481
+ 2142,
1482
+ 2143,
1483
+ 2144,
1484
+ 2145,
1485
+ 2146,
1486
+ 2147,
1487
+ 2148,
1488
+ 2149,
1489
+ 2150,
1490
+ 2151,
1491
+ 2152,
1492
+ 2153,
1493
+ 2154,
1494
+ 2155,
1495
+ 2156,
1496
+ 2157,
1497
+ 2158,
1498
+ 2159,
1499
+ 2160,
1500
+ 2161,
1501
+ 2162,
1502
+ 2163,
1503
+ 2164,
1504
+ 2165,
1505
+ 2166,
1506
+ 2168,
1507
+ 2169,
1508
+ 2170,
1509
+ 2171,
1510
+ 2172,
1511
+ 2174,
1512
+ 2175,
1513
+ 2176,
1514
+ 2178,
1515
+ 2180,
1516
+ 2181,
1517
+ 2183,
1518
+ 2184,
1519
+ 2185,
1520
+ 2186,
1521
+ 2187,
1522
+ 2188,
1523
+ 2190,
1524
+ 2193,
1525
+ 2194,
1526
+ 2195,
1527
+ 2196,
1528
+ 2198,
1529
+ 2199,
1530
+ 2201,
1531
+ 2202,
1532
+ 2203,
1533
+ 2205,
1534
+ 2206,
1535
+ 2207,
1536
+ 2210,
1537
+ 2211,
1538
+ 2212,
1539
+ 2214,
1540
+ 2215,
1541
+ 2216,
1542
+ 2217,
1543
+ 2219,
1544
+ 2222,
1545
+ 2225,
1546
+ 2226,
1547
+ 2227,
1548
+ 2228,
1549
+ 2229,
1550
+ 2231,
1551
+ 2233,
1552
+ 2234,
1553
+ 2235,
1554
+ 2237,
1555
+ 2238,
1556
+ 2239,
1557
+ 2240,
1558
+ 2241,
1559
+ 2242,
1560
+ 2243,
1561
+ 2244,
1562
+ 2245,
1563
+ 2246,
1564
+ 2247,
1565
+ 2249,
1566
+ 2251,
1567
+ 2252,
1568
+ 2253,
1569
+ 2254,
1570
+ 2256,
1571
+ 2258,
1572
+ 2259,
1573
+ 2261,
1574
+ 2262,
1575
+ 2264,
1576
+ 2265,
1577
+ 2266,
1578
+ 2267,
1579
+ 2268,
1580
+ 2269,
1581
+ 2270,
1582
+ 2272,
1583
+ 2274,
1584
+ 2275,
1585
+ 2276,
1586
+ 2277,
1587
+ 2279,
1588
+ 2281,
1589
+ 2282,
1590
+ 2284,
1591
+ 2286,
1592
+ 2290,
1593
+ 2292,
1594
+ 2293,
1595
+ 2294,
1596
+ 2295,
1597
+ 2296,
1598
+ 2297,
1599
+ 2298,
1600
+ 2299,
1601
+ 2300,
1602
+ 2301,
1603
+ 2302,
1604
+ 2303,
1605
+ 2304,
1606
+ 2306,
1607
+ 2307,
1608
+ 2308,
1609
+ 2310,
1610
+ 2311,
1611
+ 2312,
1612
+ 2313,
1613
+ 2314,
1614
+ 2315,
1615
+ 2316,
1616
+ 2317,
1617
+ 2318,
1618
+ 2319,
1619
+ 2320,
1620
+ 2322,
1621
+ 2323,
1622
+ 2324,
1623
+ 2325,
1624
+ 2326,
1625
+ 2327,
1626
+ 2328,
1627
+ 2329,
1628
+ 2330,
1629
+ 2331,
1630
+ 2332,
1631
+ 2334,
1632
+ 2336,
1633
+ 2338,
1634
+ 2339,
1635
+ 2342,
1636
+ 2343,
1637
+ 2344,
1638
+ 2345,
1639
+ 2346,
1640
+ 2347,
1641
+ 2348,
1642
+ 2349,
1643
+ 2350,
1644
+ 2351,
1645
+ 2353,
1646
+ 2355,
1647
+ 2356,
1648
+ 2357,
1649
+ 2358,
1650
+ 2359,
1651
+ 2360,
1652
+ 2361,
1653
+ 2362,
1654
+ 2363,
1655
+ 2364,
1656
+ 2365,
1657
+ 2366,
1658
+ 2368,
1659
+ 2369,
1660
+ 2370,
1661
+ 2372,
1662
+ 2373,
1663
+ 2375,
1664
+ 2376,
1665
+ 2377,
1666
+ 2378,
1667
+ 2380,
1668
+ 2381,
1669
+ 2383,
1670
+ 2385,
1671
+ 2386,
1672
+ 2387,
1673
+ 2389,
1674
+ 2391,
1675
+ 2392,
1676
+ 2393,
1677
+ 2396,
1678
+ 2397,
1679
+ 2398,
1680
+ 2399,
1681
+ 2400,
1682
+ 2401,
1683
+ 2403,
1684
+ 2405,
1685
+ 2407,
1686
+ 2408,
1687
+ 2409,
1688
+ 2410,
1689
+ 2411,
1690
+ 2413,
1691
+ 2414,
1692
+ 2415,
1693
+ 2417,
1694
+ 2419,
1695
+ 2420,
1696
+ 2422,
1697
+ 2423,
1698
+ 2424,
1699
+ 2426,
1700
+ 2427,
1701
+ 2428,
1702
+ 2429,
1703
+ 2430,
1704
+ 2431,
1705
+ 2432,
1706
+ 2433,
1707
+ 2434,
1708
+ 2435,
1709
+ 2436,
1710
+ 2438,
1711
+ 2439,
1712
+ 2441,
1713
+ 2443,
1714
+ 2444,
1715
+ 2445,
1716
+ 2448,
1717
+ 2449,
1718
+ 2451,
1719
+ 2452,
1720
+ 2453,
1721
+ 2454,
1722
+ 2455,
1723
+ 2456,
1724
+ 2457,
1725
+ 2458,
1726
+ 2459,
1727
+ 2460,
1728
+ 2461,
1729
+ 2462,
1730
+ 2463,
1731
+ 2464,
1732
+ 2466,
1733
+ 2467,
1734
+ 2469,
1735
+ 2470,
1736
+ 2471,
1737
+ 2472,
1738
+ 2475,
1739
+ 2476,
1740
+ 2477,
1741
+ 2478,
1742
+ 2479,
1743
+ 2482,
1744
+ 2483,
1745
+ 2484,
1746
+ 2485,
1747
+ 2486,
1748
+ 2487,
1749
+ 2488,
1750
+ 2489,
1751
+ 2490,
1752
+ 400,
1753
+ 2491,
1754
+ 2492,
1755
+ 2494,
1756
+ 2495,
1757
+ 2497,
1758
+ 2498,
1759
+ 2500,
1760
+ 2501,
1761
+ 2503,
1762
+ 2504,
1763
+ 2506,
1764
+ 2507,
1765
+ 2508,
1766
+ 2509,
1767
+ 2510,
1768
+ 2511,
1769
+ 2513,
1770
+ 2515,
1771
+ 2516,
1772
+ 2517,
1773
+ 2518,
1774
+ 2519,
1775
+ 51,
1776
+ 2521,
1777
+ 2523,
1778
+ 2524,
1779
+ 2525,
1780
+ 2526,
1781
+ 2527,
1782
+ 2528,
1783
+ 2530,
1784
+ 2531,
1785
+ 2532,
1786
+ 2534,
1787
+ 2535,
1788
+ 2536,
1789
+ 2537,
1790
+ 2539,
1791
+ 2540,
1792
+ 2541,
1793
+ 2542,
1794
+ 2543,
1795
+ 2544,
1796
+ 2545,
1797
+ 2546,
1798
+ 2547,
1799
+ 2549,
1800
+ 2550,
1801
+ 2551,
1802
+ 2552,
1803
+ 2553,
1804
+ 2555,
1805
+ 2556,
1806
+ 2557,
1807
+ 2558,
1808
+ 2559,
1809
+ 2560,
1810
+ 2561,
1811
+ 2562,
1812
+ 2563,
1813
+ 2564,
1814
+ 2566,
1815
+ 2569,
1816
+ 2571,
1817
+ 2572,
1818
+ 2573,
1819
+ 2576,
1820
+ 2577,
1821
+ 2578,
1822
+ 2580,
1823
+ 2581,
1824
+ 2582,
1825
+ 2584,
1826
+ 2585,
1827
+ 2586,
1828
+ 2587,
1829
+ 2588,
1830
+ 2589,
1831
+ 2592,
1832
+ 2593,
1833
+ 2594,
1834
+ 2595,
1835
+ 2596,
1836
+ 2598,
1837
+ 2599,
1838
+ 2600,
1839
+ 203,
1840
+ 2601,
1841
+ 2602,
1842
+ 2603,
1843
+ 2604,
1844
+ 2605,
1845
+ 2606,
1846
+ 2607,
1847
+ 2609,
1848
+ 2611,
1849
+ 2612,
1850
+ 2613,
1851
+ 2614,
1852
+ 2615,
1853
+ 2616,
1854
+ 2617,
1855
+ 2618,
1856
+ 2619,
1857
+ 2620,
1858
+ 2622,
1859
+ 2624,
1860
+ 2625,
1861
+ 2626,
1862
+ 2627,
1863
+ 2628,
1864
+ 2630,
1865
+ 2632,
1866
+ 2633,
1867
+ 2634,
1868
+ 2635,
1869
+ 2636,
1870
+ 2637,
1871
+ 2638,
1872
+ 2639,
1873
+ 2640,
1874
+ 2641,
1875
+ 2642,
1876
+ 2643,
1877
+ 2644,
1878
+ 2645,
1879
+ 2646,
1880
+ 2647,
1881
+ 2648,
1882
+ 2649,
1883
+ 2651,
1884
+ 2652,
1885
+ 2654,
1886
+ 2657,
1887
+ 2658,
1888
+ 2660,
1889
+ 2661,
1890
+ 2662,
1891
+ 2663,
1892
+ 2664,
1893
+ 2665,
1894
+ 2666,
1895
+ 2667,
1896
+ 2668,
1897
+ 2669,
1898
+ 2670,
1899
+ 2672,
1900
+ 2673,
1901
+ 2675,
1902
+ 2676,
1903
+ 2677,
1904
+ 2678,
1905
+ 472,
1906
+ 2679,
1907
+ 2680,
1908
+ 2681,
1909
+ 2682,
1910
+ 115,
1911
+ 2683,
1912
+ 2685,
1913
+ 2686,
1914
+ 2687,
1915
+ 2688,
1916
+ 2689,
1917
+ 2690,
1918
+ 2691,
1919
+ 2692,
1920
+ 2693,
1921
+ 2694,
1922
+ 2695,
1923
+ 2697,
1924
+ 2698,
1925
+ 2335,
1926
+ 2700,
1927
+ 2701,
1928
+ 2702,
1929
+ 2703,
1930
+ 2704,
1931
+ 2705,
1932
+ 2707,
1933
+ 2708,
1934
+ 2709,
1935
+ 2710,
1936
+ 2711,
1937
+ 2712,
1938
+ 2713,
1939
+ 152,
1940
+ 2714,
1941
+ 2715,
1942
+ 2716,
1943
+ 2717,
1944
+ 2718,
1945
+ 2719,
1946
+ 2722,
1947
+ 2723,
1948
+ 2724,
1949
+ 2725,
1950
+ 2728,
1951
+ 2730,
1952
+ 2731,
1953
+ 2732,
1954
+ 2733,
1955
+ 2734,
1956
+ 2736,
1957
+ 2737,
1958
+ 2738,
1959
+ 2740,
1960
+ 2741,
1961
+ 2743,
1962
+ 2744,
1963
+ 2745,
1964
+ 2746,
1965
+ 2747,
1966
+ 2749,
1967
+ 2750,
1968
+ 2751,
1969
+ 2753,
1970
+ 2755,
1971
+ 2758,
1972
+ 2759,
1973
+ 2760,
1974
+ 2761,
1975
+ 2763,
1976
+ 2764,
1977
+ 2765,
1978
+ 2766,
1979
+ 2767,
1980
+ 2768,
1981
+ 2769,
1982
+ 2770,
1983
+ 2771,
1984
+ 2772,
1985
+ 2773,
1986
+ 2775,
1987
+ 2776,
1988
+ 2777,
1989
+ 2778,
1990
+ 2779,
1991
+ 2780,
1992
+ 2781,
1993
+ 2782,
1994
+ 2783,
1995
+ 2785,
1996
+ 2786,
1997
+ 2787,
1998
+ 2790,
1999
+ 2791,
2000
+ 2792,
2001
+ 2793,
2002
+ 2794,
2003
+ 2795,
2004
+ 2798,
2005
+ 2799,
2006
+ 2800,
2007
+ 2801,
2008
+ 2802,
2009
+ 2803,
2010
+ 2804,
2011
+ 2807,
2012
+ 2808,
2013
+ 2809,
2014
+ 2810,
2015
+ 2811,
2016
+ 2814,
2017
+ 2815,
2018
+ 2816,
2019
+ 2817,
2020
+ 2818,
2021
+ 2819,
2022
+ 2821,
2023
+ 2822,
2024
+ 2823,
2025
+ 2824,
2026
+ 2825,
2027
+ 2827,
2028
+ 2829,
2029
+ 2830,
2030
+ 2831,
2031
+ 2832,
2032
+ 2833,
2033
+ 2836,
2034
+ 2837,
2035
+ 2838,
2036
+ 2839,
2037
+ 2841,
2038
+ 2842,
2039
+ 2843,
2040
+ 2844,
2041
+ 2845,
2042
+ 2847,
2043
+ 2848,
2044
+ 2849,
2045
+ 2850,
2046
+ 2851,
2047
+ 2852,
2048
+ 2853,
2049
+ 2855,
2050
+ 2857,
2051
+ 2859,
2052
+ 2860,
2053
+ 2864,
2054
+ 2865,
2055
+ 2866,
2056
+ 2867,
2057
+ 2868,
2058
+ 2870,
2059
+ 2871,
2060
+ 2872,
2061
+ 2873,
2062
+ 2875,
2063
+ 2876,
2064
+ 2878,
2065
+ 2879,
2066
+ 2880,
2067
+ 2881,
2068
+ 2882,
2069
+ 2884,
2070
+ 2885,
2071
+ 2889,
2072
+ 2890,
2073
+ 2891,
2074
+ 2892,
2075
+ 2893,
2076
+ 2894,
2077
+ 2895,
2078
+ 2896,
2079
+ 2897,
2080
+ 2898,
2081
+ 2900,
2082
+ 2901,
2083
+ 2902,
2084
+ 2903,
2085
+ 2904,
2086
+ 2905,
2087
+ 2906,
2088
+ 2907,
2089
+ 2908,
2090
+ 2909,
2091
+ 2910,
2092
+ 2911,
2093
+ 2912,
2094
+ 2913,
2095
+ 2914,
2096
+ 2915,
2097
+ 2916,
2098
+ 2917,
2099
+ 2918,
2100
+ 2919,
2101
+ 2921,
2102
+ 2922,
2103
+ 2923,
2104
+ 2925,
2105
+ 2926,
2106
+ 2927,
2107
+ 2929,
2108
+ 2931,
2109
+ 2932,
2110
+ 2934,
2111
+ 2935,
2112
+ 2936,
2113
+ 2937,
2114
+ 2938,
2115
+ 2940,
2116
+ 2941,
2117
+ 2942,
2118
+ 2944,
2119
+ 2945,
2120
+ 2946,
2121
+ 2947,
2122
+ 2948,
2123
+ 2949,
2124
+ 2950,
2125
+ 2951,
2126
+ 2952,
2127
+ 2953,
2128
+ 2954,
2129
+ 2955,
2130
+ 2956,
2131
+ 2957,
2132
+ 2959,
2133
+ 2962,
2134
+ 2963,
2135
+ 2964,
2136
+ 2965,
2137
+ 2966,
2138
+ 2967,
2139
+ 2968,
2140
+ 2969,
2141
+ 2970,
2142
+ 2971,
2143
+ 2972,
2144
+ 2974,
2145
+ 2975,
2146
+ 2976,
2147
+ 2978,
2148
+ 2979,
2149
+ 2980,
2150
+ 2981,
2151
+ 2982,
2152
+ 2983,
2153
+ 2984,
2154
+ 2985,
2155
+ 2987,
2156
+ 2988,
2157
+ 2990,
2158
+ 2991,
2159
+ 2993,
2160
+ 2994,
2161
+ 2995,
2162
+ 2996,
2163
+ 2997,
2164
+ 2998,
2165
+ 2999,
2166
+ 3000,
2167
+ 3004,
2168
+ 3005,
2169
+ 3007,
2170
+ 3008,
2171
+ 3009,
2172
+ 3011,
2173
+ 3012,
2174
+ 3014,
2175
+ 3015,
2176
+ 3016,
2177
+ 3017,
2178
+ 3018,
2179
+ 3019,
2180
+ 3020,
2181
+ 3021,
2182
+ 3022,
2183
+ 3023,
2184
+ 3024,
2185
+ 3025,
2186
+ 3026,
2187
+ 3027,
2188
+ 3028,
2189
+ 3029,
2190
+ 3030,
2191
+ 3031,
2192
+ 3032,
2193
+ 3033,
2194
+ 3034,
2195
+ 3036,
2196
+ 3038,
2197
+ 3039,
2198
+ 3041,
2199
+ 3042,
2200
+ 3043,
2201
+ 3044,
2202
+ 3045,
2203
+ 3046,
2204
+ 3047,
2205
+ 3048,
2206
+ 3049,
2207
+ 3050,
2208
+ 3051,
2209
+ 3052,
2210
+ 3053,
2211
+ 3054,
2212
+ 3055,
2213
+ 3056,
2214
+ 3057,
2215
+ 3059,
2216
+ 3060,
2217
+ 3061,
2218
+ 3063,
2219
+ 3065,
2220
+ 3066,
2221
+ 3067,
2222
+ 3068,
2223
+ 3070,
2224
+ 3071,
2225
+ 3072,
2226
+ 3073,
2227
+ 3074,
2228
+ 3075,
2229
+ 3076,
2230
+ 3077,
2231
+ 3078,
2232
+ 3079,
2233
+ 3080,
2234
+ 3082,
2235
+ 3083,
2236
+ 3084,
2237
+ 3085,
2238
+ 3086,
2239
+ 3087,
2240
+ 3088,
2241
+ 3089,
2242
+ 3092,
2243
+ 3094,
2244
+ 3095,
2245
+ 3097,
2246
+ 3098,
2247
+ 3101,
2248
+ 3102,
2249
+ 3103,
2250
+ 3105,
2251
+ 3107,
2252
+ 3109,
2253
+ 3110,
2254
+ 3111,
2255
+ 3112,
2256
+ 3114,
2257
+ 3115,
2258
+ 3116,
2259
+ 3117,
2260
+ 3118,
2261
+ 3119,
2262
+ 3120,
2263
+ 3122,
2264
+ 3123,
2265
+ 3124,
2266
+ 3125,
2267
+ 3126,
2268
+ 3127,
2269
+ 3128,
2270
+ 3130,
2271
+ 3131,
2272
+ 3132,
2273
+ 3133,
2274
+ 3134,
2275
+ 3135,
2276
+ 3137,
2277
+ 3138,
2278
+ 3140,
2279
+ 3141,
2280
+ 3143,
2281
+ 3144,
2282
+ 3145,
2283
+ 3146,
2284
+ 3147,
2285
+ 3148,
2286
+ 3150,
2287
+ 3151,
2288
+ 3152,
2289
+ 3153,
2290
+ 3155,
2291
+ 3157,
2292
+ 3159,
2293
+ 3160,
2294
+ 3162,
2295
+ 3163,
2296
+ 3165,
2297
+ 3166,
2298
+ 3168,
2299
+ 3169,
2300
+ 3170,
2301
+ 3172,
2302
+ 3173,
2303
+ 3175,
2304
+ 3176,
2305
+ 3177,
2306
+ 3179,
2307
+ 3181,
2308
+ 3182,
2309
+ 3183,
2310
+ 3184,
2311
+ 3185,
2312
+ 3186,
2313
+ 3187,
2314
+ 3188,
2315
+ 3190,
2316
+ 3192,
2317
+ 3194,
2318
+ 3195,
2319
+ 3198,
2320
+ 3200,
2321
+ 3201,
2322
+ 3203,
2323
+ 3205,
2324
+ 3206,
2325
+ 3207,
2326
+ 3208,
2327
+ 3209,
2328
+ 3210,
2329
+ 3211,
2330
+ 3212,
2331
+ 3213,
2332
+ 3214,
2333
+ 3215,
2334
+ 3216,
2335
+ 3217,
2336
+ 3219,
2337
+ 3220,
2338
+ 3222,
2339
+ 3224,
2340
+ 3225,
2341
+ 3226,
2342
+ 3227,
2343
+ 3230,
2344
+ 3231,
2345
+ 3232,
2346
+ 3234,
2347
+ 3235,
2348
+ 3236,
2349
+ 3239,
2350
+ 3241,
2351
+ 3242,
2352
+ 3243,
2353
+ 3244,
2354
+ 3247,
2355
+ 3249,
2356
+ 3250,
2357
+ 3251,
2358
+ 3253,
2359
+ 3255,
2360
+ 3256,
2361
+ 3257,
2362
+ 3259,
2363
+ 3261,
2364
+ 3262,
2365
+ 3264,
2366
+ 3265,
2367
+ 3266,
2368
+ 3267,
2369
+ 3269,
2370
+ 3270,
2371
+ 3271,
2372
+ 3272,
2373
+ 3273,
2374
+ 3274,
2375
+ 3275,
2376
+ 3276,
2377
+ 3278,
2378
+ 3279,
2379
+ 3280,
2380
+ 3281,
2381
+ 3283,
2382
+ 3284,
2383
+ 3285,
2384
+ 3286,
2385
+ 3288,
2386
+ 3289,
2387
+ 3291,
2388
+ 3292,
2389
+ 3295,
2390
+ 3297,
2391
+ 3298,
2392
+ 3300,
2393
+ 3302,
2394
+ 3304,
2395
+ 3305,
2396
+ 3306,
2397
+ 3307,
2398
+ 3308,
2399
+ 3309,
2400
+ 3310,
2401
+ 3311,
2402
+ 3312,
2403
+ 3313,
2404
+ 3314,
2405
+ 3315,
2406
+ 3316,
2407
+ 3318,
2408
+ 3319,
2409
+ 3320,
2410
+ 3321,
2411
+ 3322,
2412
+ 3323,
2413
+ 3324,
2414
+ 3326,
2415
+ 3327,
2416
+ 3328,
2417
+ 3329,
2418
+ 3330,
2419
+ 3331,
2420
+ 3332,
2421
+ 3333,
2422
+ 3334,
2423
+ 3335,
2424
+ 3336,
2425
+ 3338,
2426
+ 3339,
2427
+ 3340,
2428
+ 3341,
2429
+ 3342,
2430
+ 3343,
2431
+ 3344,
2432
+ 3346,
2433
+ 3348,
2434
+ 3349,
2435
+ 3350,
2436
+ 3351,
2437
+ 3354,
2438
+ 3355,
2439
+ 3356,
2440
+ 3357,
2441
+ 3358,
2442
+ 3359,
2443
+ 3361,
2444
+ 3362,
2445
+ 3363,
2446
+ 3364,
2447
+ 3365,
2448
+ 3366,
2449
+ 3367,
2450
+ 3369,
2451
+ 3370,
2452
+ 3371,
2453
+ 3373,
2454
+ 3374,
2455
+ 3375,
2456
+ 3376,
2457
+ 3378,
2458
+ 3379,
2459
+ 3380,
2460
+ 3381,
2461
+ 3382,
2462
+ 3383,
2463
+ 3384,
2464
+ 3385,
2465
+ 3386,
2466
+ 3387,
2467
+ 3389,
2468
+ 1251,
2469
+ 3390,
2470
+ 3391,
2471
+ 3392,
2472
+ 3393,
2473
+ 3394,
2474
+ 3395,
2475
+ 3396,
2476
+ 3399,
2477
+ 3402,
2478
+ 3403,
2479
+ 3404,
2480
+ 3406,
2481
+ 3407,
2482
+ 3408,
2483
+ 3409,
2484
+ 3410,
2485
+ 3411,
2486
+ 3413,
2487
+ 3414,
2488
+ 3415,
2489
+ 3416,
2490
+ 3417,
2491
+ 3418,
2492
+ 3419,
2493
+ 3420,
2494
+ 3421,
2495
+ 3422,
2496
+ 3423,
2497
+ 3425,
2498
+ 3427,
2499
+ 3428,
2500
+ 3430,
2501
+ 3431,
2502
+ 3432,
2503
+ 3435,
2504
+ 3436,
2505
+ 3437,
2506
+ 3438,
2507
+ 3439,
2508
+ 3440,
2509
+ 3441,
2510
+ 3443,
2511
+ 3444,
2512
+ 3445,
2513
+ 3446,
2514
+ 3447,
2515
+ 3449,
2516
+ 3450,
2517
+ 3451,
2518
+ 3452,
2519
+ 3454,
2520
+ 3455,
2521
+ 3458,
2522
+ 3459,
2523
+ 3460,
2524
+ 3461,
2525
+ 3464,
2526
+ 3466,
2527
+ 3467,
2528
+ 3468,
2529
+ 3469,
2530
+ 3470,
2531
+ 3472,
2532
+ 3473,
2533
+ 3475,
2534
+ 3476,
2535
+ 3478,
2536
+ 3480,
2537
+ 3481,
2538
+ 3484,
2539
+ 3485,
2540
+ 3486,
2541
+ 3487,
2542
+ 3488,
2543
+ 3490,
2544
+ 3491,
2545
+ 3492,
2546
+ 3496,
2547
+ 3498,
2548
+ 3499,
2549
+ 3500,
2550
+ 3501,
2551
+ 3502,
2552
+ 3503,
2553
+ 3504,
2554
+ 3505,
2555
+ 3507,
2556
+ 3508,
2557
+ 3509,
2558
+ 3510,
2559
+ 3513,
2560
+ 3514,
2561
+ 3516,
2562
+ 3518,
2563
+ 3522,
2564
+ 3523,
2565
+ 3524,
2566
+ 3526,
2567
+ 3527,
2568
+ 3529,
2569
+ 3531,
2570
+ 3532,
2571
+ 3534,
2572
+ 3535,
2573
+ 3536,
2574
+ 3537,
2575
+ 3538,
2576
+ 3539,
2577
+ 3541,
2578
+ 3542,
2579
+ 3543,
2580
+ 3544,
2581
+ 3545,
2582
+ 3546,
2583
+ 3547,
2584
+ 3549,
2585
+ 3550,
2586
+ 3551,
2587
+ 3552,
2588
+ 3554,
2589
+ 3556,
2590
+ 3558,
2591
+ 3559,
2592
+ 3560,
2593
+ 3561,
2594
+ 3562,
2595
+ 3563,
2596
+ 3565,
2597
+ 3567,
2598
+ 3568,
2599
+ 3569,
2600
+ 3570,
2601
+ 3571,
2602
+ 3573,
2603
+ 3574,
2604
+ 3576,
2605
+ 3577,
2606
+ 3579,
2607
+ 3580,
2608
+ 3581,
2609
+ 3582,
2610
+ 3584,
2611
+ 3586,
2612
+ 3588,
2613
+ 3589,
2614
+ 3590,
2615
+ 3591,
2616
+ 3592,
2617
+ 3593,
2618
+ 3594,
2619
+ 3595,
2620
+ 3596,
2621
+ 3597,
2622
+ 3598,
2623
+ 3601,
2624
+ 3602,
2625
+ 3604,
2626
+ 3605,
2627
+ 3606,
2628
+ 3608,
2629
+ 3609,
2630
+ 3610,
2631
+ 3611,
2632
+ 3612,
2633
+ 3613,
2634
+ 3614,
2635
+ 3615,
2636
+ 3616,
2637
+ 3617,
2638
+ 3618,
2639
+ 3619,
2640
+ 3620,
2641
+ 3621,
2642
+ 3622,
2643
+ 3623,
2644
+ 3625,
2645
+ 3626,
2646
+ 3627,
2647
+ 3628,
2648
+ 3629,
2649
+ 3630,
2650
+ 3631,
2651
+ 3632,
2652
+ 3633,
2653
+ 3634,
2654
+ 3635,
2655
+ 3636,
2656
+ 3637,
2657
+ 3638,
2658
+ 3639,
2659
+ 3640,
2660
+ 3641,
2661
+ 3642,
2662
+ 3643,
2663
+ 3644,
2664
+ 3645,
2665
+ 3646,
2666
+ 3647,
2667
+ 3648,
2668
+ 3650,
2669
+ 3651,
2670
+ 3652,
2671
+ 3653,
2672
+ 3654,
2673
+ 3655,
2674
+ 3656
2675
+ ]
2676
+ }
experimental_edit_tree_lemmatizer/model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d773e0a1236e9dc36966302a5f5640b8712569a961503019961068949be722a3
3
+ size 8219673
experimental_edit_tree_lemmatizer/trees ADDED
Binary file (294 kB). View file
 
meta.json ADDED
The diff for this file is too large to render. See raw diff
 
morphologizer/cfg ADDED
The diff for this file is too large to render. See raw diff
 
morphologizer/model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e2976b3da4bff469a7ef70acdf71a0bf7962ca967df5207ae07c9876b97cbe85
3
+ size 3688725
parser/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":5,
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
+ }
parser/model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b3f9b636b2234a071eaa2b5ce1ff630eabe284b8d7038c501c3df321caa20b1c
3
+ size 691649
parser/moves ADDED
@@ -0,0 +1 @@
 
 
1
+ ��moves�{"0":{"":39448},"1":{"":32646},"2":{"case":6138,"amod":4995,"punct":4800,"nsubj":3675,"advmod":3155,"cc":2438,"det":1908,"obl":1747,"obj":1704,"mark":1632,"expl:pv":1388,"aux":1126,"cop":1009,"advmod:emph":695,"ccomp":554,"nmod":537,"iobj":310,"advcl":293,"nummod":287,"obl:arg":222,"dep":171,"expl:pass":140,"nsubj:pass":89,"obj||xcomp":68,"expl:pv||xcomp":67,"xcomp":59,"aux:pass":40,"discourse":35,"det:numgov":31,"parataxis":18,"iobj||xcomp":15,"obl:arg||xcomp":14,"csubj":11,"vocative":10,"obl||xcomp":9,"nmod||obj":7,"compound":5,"acl":5},"3":{"punct":10732,"nmod":3641,"obj":3265,"conj":2954,"obl":2590,"nsubj":1804,"advmod":872,"xcomp":869,"aux":866,"expl:pv":711,"acl":679,"ccomp":625,"obl:arg":607,"advcl":429,"dep":326,"iobj":324,"amod":237,"appos":159,"cop":148,"fixed":129,"nummod":118,"csubj":109,"orphan":90,"nsubj:pass":55,"det":47,"expl:pass":35,"cc":26,"flat:foreign":25,"vocative":24,"xcomp||nsubj":21,"parataxis":21,"xcomp||obj":15,"case":13,"conj||ccomp":12,"csubj:pass":10,"discourse":8,"flat":6,"cop||xcomp":6},"4":{"ROOT":8483}}�cfg��neg_key�
senter/cfg ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+ "overwrite":false
3
+ }
senter/model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b42a3479596a084adc2a76b25cd58b5fa30f16ad0f707a1582062999f9509d47
3
+ size 6740
sk_udv25_slovaksnk_trf-any-py3-none-any.whl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:be0bab90b7bde8d1b93bfd37c9ffac86ce23361ecbd0a85483076150c834913d
3
+ size 863518810
tagger/cfg ADDED
@@ -0,0 +1,971 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "labels":[
3
+ "#",
4
+ "%",
5
+ "0",
6
+ "?",
7
+ "AAfp1x",
8
+ "AAfp1x:q",
9
+ "AAfp1x:r",
10
+ "AAfp1y",
11
+ "AAfp1z",
12
+ "AAfp2x",
13
+ "AAfp2x:r",
14
+ "AAfp2y",
15
+ "AAfp2z",
16
+ "AAfp3x",
17
+ "AAfp4x",
18
+ "AAfp4y",
19
+ "AAfp6x",
20
+ "AAfp6x:q",
21
+ "AAfp6y",
22
+ "AAfp7x",
23
+ "AAfs1:r",
24
+ "AAfs1x",
25
+ "AAfs1x:q",
26
+ "AAfs1x:r",
27
+ "AAfs1y",
28
+ "AAfs1z",
29
+ "AAfs2x",
30
+ "AAfs2x:q",
31
+ "AAfs2x:r",
32
+ "AAfs2z",
33
+ "AAfs2z:r",
34
+ "AAfs3x",
35
+ "AAfs3x:r",
36
+ "AAfs3y",
37
+ "AAfs4x",
38
+ "AAfs4x:r",
39
+ "AAfs4y",
40
+ "AAfs4z",
41
+ "AAfs6x",
42
+ "AAfs6x:r",
43
+ "AAfs6y",
44
+ "AAfs7x",
45
+ "AAfs7x:r",
46
+ "AAfs7z",
47
+ "AAip1x",
48
+ "AAip1y",
49
+ "AAip2x",
50
+ "AAip2x:r",
51
+ "AAip2y",
52
+ "AAip2z",
53
+ "AAip3x",
54
+ "AAip4x",
55
+ "AAip4y",
56
+ "AAip4z",
57
+ "AAip6x",
58
+ "AAip6x:r",
59
+ "AAip6z",
60
+ "AAip7x",
61
+ "AAis1x",
62
+ "AAis1x:r",
63
+ "AAis1y",
64
+ "AAis1z",
65
+ "AAis2",
66
+ "AAis2x",
67
+ "AAis2x:r",
68
+ "AAis2y",
69
+ "AAis2z",
70
+ "AAis3x",
71
+ "AAis3x:r",
72
+ "AAis3y",
73
+ "AAis3z",
74
+ "AAis4x",
75
+ "AAis4x:r",
76
+ "AAis4y",
77
+ "AAis4z",
78
+ "AAis6x",
79
+ "AAis6x:r",
80
+ "AAis6z",
81
+ "AAis7",
82
+ "AAis7x",
83
+ "AAis7y",
84
+ "AAis7z",
85
+ "AAmp1",
86
+ "AAmp1x",
87
+ "AAmp1y",
88
+ "AAmp1z",
89
+ "AAmp2x",
90
+ "AAmp2y",
91
+ "AAmp2z",
92
+ "AAmp3x",
93
+ "AAmp3z",
94
+ "AAmp4x",
95
+ "AAmp4y",
96
+ "AAmp6x",
97
+ "AAmp7x",
98
+ "AAmp7z",
99
+ "AAms1:r",
100
+ "AAms1x",
101
+ "AAms1x:q",
102
+ "AAms1x:r",
103
+ "AAms1y",
104
+ "AAms1z",
105
+ "AAms2x",
106
+ "AAms2x:r",
107
+ "AAms3x",
108
+ "AAms4x",
109
+ "AAms4y",
110
+ "AAms4z",
111
+ "AAms6x",
112
+ "AAms7x",
113
+ "AAms7x:r",
114
+ "AAms7z",
115
+ "AAnp1x",
116
+ "AAnp1x:r",
117
+ "AAnp1y",
118
+ "AAnp2x",
119
+ "AAnp2z",
120
+ "AAnp3x",
121
+ "AAnp4x",
122
+ "AAnp4z",
123
+ "AAnp6x",
124
+ "AAnp7x",
125
+ "AAns1x",
126
+ "AAns1x:r",
127
+ "AAns1y",
128
+ "AAns1z",
129
+ "AAns2:r",
130
+ "AAns2x",
131
+ "AAns2x:r",
132
+ "AAns2y",
133
+ "AAns3x",
134
+ "AAns3y",
135
+ "AAns4x",
136
+ "AAns4x:q",
137
+ "AAns4x:r",
138
+ "AAns4y",
139
+ "AAns4z",
140
+ "AAns6x",
141
+ "AAns6x:r",
142
+ "AAns6y",
143
+ "AAns7x",
144
+ "AAns7z",
145
+ "AAop2x",
146
+ "AFfp1x:r",
147
+ "AFfp2x",
148
+ "AFfp2x:r",
149
+ "AFfp3x",
150
+ "AFfp4:r",
151
+ "AFfp4x",
152
+ "AFfp4x:r",
153
+ "AFfs1:r",
154
+ "AFfs1x",
155
+ "AFfs1x:r",
156
+ "AFfs2x",
157
+ "AFfs2x:r",
158
+ "AFfs3x:r",
159
+ "AFfs4x",
160
+ "AFfs4x:r",
161
+ "AFfs6x",
162
+ "AFfs6x:r",
163
+ "AFfs7x",
164
+ "AFfs7x:r",
165
+ "AFip1x",
166
+ "AFip1x:r",
167
+ "AFip2x:r",
168
+ "AFip4x",
169
+ "AFip4x:r",
170
+ "AFip6x:r",
171
+ "AFip7x:r",
172
+ "AFis1x",
173
+ "AFis1x:r",
174
+ "AFis2x:r",
175
+ "AFis4x",
176
+ "AFis4x:r",
177
+ "AFis6x:r",
178
+ "AFis7x",
179
+ "AFis7x:r",
180
+ "AFmp1x:r",
181
+ "AFmp1y",
182
+ "AFmp2x",
183
+ "AFmp3x:r",
184
+ "AFmp4x:r",
185
+ "AFmp7x",
186
+ "AFms1x",
187
+ "AFms1x:r",
188
+ "AFms2x",
189
+ "AFms2x:r",
190
+ "AFms4x",
191
+ "AFms4x:r",
192
+ "AFms7x",
193
+ "AFms7x:r",
194
+ "AFnp1x",
195
+ "AFnp1x:r",
196
+ "AFnp2x",
197
+ "AFnp2x:r",
198
+ "AFnp4x:r",
199
+ "AFns1x",
200
+ "AFns1x:r",
201
+ "AFns2x",
202
+ "AFns2x:r",
203
+ "AFns3x:r",
204
+ "AFns4x",
205
+ "AFns4x:r",
206
+ "AFns6x",
207
+ "AFns6x:r",
208
+ "AUfp1x",
209
+ "AUfs1x",
210
+ "AUfs2x",
211
+ "AUmp1x",
212
+ "AUmp1y",
213
+ "AUmp1z",
214
+ "AUms1x",
215
+ "AUms1y",
216
+ "AUms1z",
217
+ "AUns1x",
218
+ "AUns1z",
219
+ "DX",
220
+ "Dx",
221
+ "Dx:q",
222
+ "Dy",
223
+ "Dz",
224
+ "Eu2",
225
+ "Eu2:q",
226
+ "Eu3",
227
+ "Eu4",
228
+ "Eu4:q",
229
+ "Eu6",
230
+ "Eu6:q",
231
+ "Eu7",
232
+ "Eu7:q",
233
+ "Ev2",
234
+ "Ev3",
235
+ "Ev4",
236
+ "Ev6",
237
+ "Ev7",
238
+ "Ev7:q",
239
+ "Gkfp1x",
240
+ "Gkfp2x",
241
+ "Gkfp3x",
242
+ "Gkfp4x",
243
+ "Gkfp6x",
244
+ "Gkfp7x",
245
+ "Gkfs1x",
246
+ "Gkfs1x:r",
247
+ "Gkfs1y",
248
+ "Gkfs2x",
249
+ "Gkfs2x:q",
250
+ "Gkfs4x",
251
+ "Gkfs6x",
252
+ "Gkfs7x",
253
+ "Gkip1x",
254
+ "Gkip2x",
255
+ "Gkip4x",
256
+ "Gkip6x",
257
+ "Gkis1x",
258
+ "Gkis2x",
259
+ "Gkis4x",
260
+ "Gkis7x",
261
+ "Gkmp1x",
262
+ "Gkmp2x",
263
+ "Gkmp4x",
264
+ "Gkmp7x",
265
+ "Gkms1x",
266
+ "Gkms2x",
267
+ "Gkms4x",
268
+ "Gkms7x",
269
+ "Gknp1x",
270
+ "Gknp2x",
271
+ "Gknp4x",
272
+ "Gknp6x",
273
+ "Gkns1x",
274
+ "Gkns2x",
275
+ "Gkns3x",
276
+ "Gkns4x",
277
+ "Gkns6x",
278
+ "Gkop2x",
279
+ "Gtfp1x",
280
+ "Gtfp2x",
281
+ "Gtfp2x:r",
282
+ "Gtfp3x",
283
+ "Gtfp4x",
284
+ "Gtfp6x",
285
+ "Gtfp7x",
286
+ "Gtfs1x",
287
+ "Gtfs2x",
288
+ "Gtfs4x",
289
+ "Gtfs6x",
290
+ "Gtfs7x",
291
+ "Gtip1x",
292
+ "Gtip2x",
293
+ "Gtip4x",
294
+ "Gtip6x",
295
+ "Gtip7x",
296
+ "Gtip7y",
297
+ "Gtis1x",
298
+ "Gtis2x",
299
+ "Gtis3x",
300
+ "Gtis4x",
301
+ "Gtis6x",
302
+ "Gtis7x",
303
+ "Gtmp1x",
304
+ "Gtmp2x",
305
+ "Gtmp3x",
306
+ "Gtmp4x",
307
+ "Gtmp7x",
308
+ "Gtms1x",
309
+ "Gtms1x:r",
310
+ "Gtms1z",
311
+ "Gtms3x",
312
+ "Gtms4x:r",
313
+ "Gtnp1x",
314
+ "Gtnp2x",
315
+ "Gtnp4x",
316
+ "Gtnp6x",
317
+ "Gtnp7x",
318
+ "Gtns1x",
319
+ "Gtns2x",
320
+ "Gtns3x",
321
+ "Gtns4x",
322
+ "Gtns6x",
323
+ "Gtns7x",
324
+ "Gtop1x",
325
+ "Gtop2x",
326
+ "J",
327
+ "NAfp1",
328
+ "NAfp2",
329
+ "NAfp4",
330
+ "NAfp6",
331
+ "NAfs1",
332
+ "NAfs2",
333
+ "NAfs4",
334
+ "NAfs6",
335
+ "NAfs7",
336
+ "NAip1",
337
+ "NAip2",
338
+ "NAip3",
339
+ "NAip4",
340
+ "NAip6",
341
+ "NAis1",
342
+ "NAis2",
343
+ "NAis4",
344
+ "NAis6",
345
+ "NAis7",
346
+ "NAmp1",
347
+ "NAmp3",
348
+ "NAmp4",
349
+ "NAmp6",
350
+ "NAms1",
351
+ "NAms2",
352
+ "NAms3",
353
+ "NAms7",
354
+ "NAnp1",
355
+ "NAnp4",
356
+ "NAns1",
357
+ "NAns2",
358
+ "NAns3",
359
+ "NAns4",
360
+ "NAns6",
361
+ "NAns7",
362
+ "ND",
363
+ "NFfs1",
364
+ "NFfs2",
365
+ "NFfs4",
366
+ "NFfs6",
367
+ "NFfs7",
368
+ "NFis1",
369
+ "NFis2",
370
+ "NFis4",
371
+ "NFis6",
372
+ "NFis7",
373
+ "NFms1",
374
+ "NFms3",
375
+ "NFms4",
376
+ "NFms6",
377
+ "NFms7",
378
+ "NFns1",
379
+ "NFns2",
380
+ "NFns4",
381
+ "NFns6",
382
+ "NFns7",
383
+ "NNfp1",
384
+ "NNfp2",
385
+ "NNfp3",
386
+ "NNfp4",
387
+ "NNfp6",
388
+ "NNfp7",
389
+ "NNfs1",
390
+ "NNip1",
391
+ "NNip1:r",
392
+ "NNip2",
393
+ "NNip4",
394
+ "NNip6",
395
+ "NNip7",
396
+ "NNmp1",
397
+ "NNmp2",
398
+ "NNmp3",
399
+ "NNmp4",
400
+ "NNmp7",
401
+ "NNnp1",
402
+ "NNnp2",
403
+ "NNnp4",
404
+ "NNnp6",
405
+ "NNnp7",
406
+ "NNns1",
407
+ "NNop1",
408
+ "NSfs4",
409
+ "NSip2",
410
+ "NSip4",
411
+ "NSis1",
412
+ "NSis4",
413
+ "NSnp1",
414
+ "NUfp1",
415
+ "NUfp2",
416
+ "NUfp3",
417
+ "NUfp6",
418
+ "NUfp7",
419
+ "NUfs6",
420
+ "NUip2",
421
+ "NUip4",
422
+ "NUip6",
423
+ "NUip7",
424
+ "NUmp1",
425
+ "NUmp2",
426
+ "NUmp3",
427
+ "NUnp1",
428
+ "NUnp2",
429
+ "NUnp4",
430
+ "NUns1",
431
+ "NUns4",
432
+ "NX",
433
+ "O",
434
+ "O:q",
435
+ "O:r",
436
+ "OY",
437
+ "PAfp1",
438
+ "PAfp1:q",
439
+ "PAfp2",
440
+ "PAfp3",
441
+ "PAfp4",
442
+ "PAfp6",
443
+ "PAfp7",
444
+ "PAfs1",
445
+ "PAfs2",
446
+ "PAfs3",
447
+ "PAfs4",
448
+ "PAfs6",
449
+ "PAfs7",
450
+ "PAip1",
451
+ "PAip1:q",
452
+ "PAip2",
453
+ "PAip4",
454
+ "PAip6",
455
+ "PAip7",
456
+ "PAis1",
457
+ "PAis2",
458
+ "PAis3",
459
+ "PAis4",
460
+ "PAis6",
461
+ "PAis7",
462
+ "PAmp1",
463
+ "PAmp2",
464
+ "PAmp3",
465
+ "PAmp4",
466
+ "PAmp7",
467
+ "PAms1",
468
+ "PAms1:q",
469
+ "PAms2",
470
+ "PAms3",
471
+ "PAms4",
472
+ "PAms6",
473
+ "PAms7",
474
+ "PAnp1",
475
+ "PAnp2",
476
+ "PAnp4",
477
+ "PAnp6",
478
+ "PAnp7",
479
+ "PAns1",
480
+ "PAns1:q",
481
+ "PAns2",
482
+ "PAns3",
483
+ "PAns4",
484
+ "PAns6",
485
+ "PAop1",
486
+ "PAop4",
487
+ "PD",
488
+ "PFfp1",
489
+ "PFfp2",
490
+ "PFfp3",
491
+ "PFfp4",
492
+ "PFfp6",
493
+ "PFfp7",
494
+ "PFfs1",
495
+ "PFfs2",
496
+ "PFfs2:r",
497
+ "PFfs3",
498
+ "PFfs4",
499
+ "PFfs4:q",
500
+ "PFfs6",
501
+ "PFfs7",
502
+ "PFfs7:r",
503
+ "PFip1",
504
+ "PFip2",
505
+ "PFip3",
506
+ "PFip4",
507
+ "PFip6",
508
+ "PFip7",
509
+ "PFis1",
510
+ "PFis2",
511
+ "PFis2g",
512
+ "PFis3",
513
+ "PFis4",
514
+ "PFis4g",
515
+ "PFis6",
516
+ "PFis7",
517
+ "PFis7:q",
518
+ "PFis7:r",
519
+ "PFmp1",
520
+ "PFmp2",
521
+ "PFmp3",
522
+ "PFmp3:q",
523
+ "PFmp4",
524
+ "PFmp6",
525
+ "PFmp7",
526
+ "PFms1",
527
+ "PFms1:r",
528
+ "PFms2",
529
+ "PFms2g",
530
+ "PFms3",
531
+ "PFms3:r",
532
+ "PFms4",
533
+ "PFms4:r",
534
+ "PFms4g",
535
+ "PFms6",
536
+ "PFms7",
537
+ "PFms7:q",
538
+ "PFms7:r",
539
+ "PFnp1",
540
+ "PFnp2",
541
+ "PFnp3",
542
+ "PFnp4",
543
+ "PFnp6",
544
+ "PFnp7",
545
+ "PFns1",
546
+ "PFns1:q",
547
+ "PFns2",
548
+ "PFns2g",
549
+ "PFns3",
550
+ "PFns4",
551
+ "PFns4g",
552
+ "PFns6",
553
+ "PFns7",
554
+ "PFop2",
555
+ "PFop4",
556
+ "PFop4:r",
557
+ "PPhp1",
558
+ "PPhp2",
559
+ "PPhp3",
560
+ "PPhp4",
561
+ "PPhp4:r",
562
+ "PPhp6",
563
+ "PPhp7",
564
+ "PPhs1",
565
+ "PPhs2",
566
+ "PPhs3",
567
+ "PPhs3:r",
568
+ "PPhs4",
569
+ "PPhs6",
570
+ "PPhs7",
571
+ "PUfp1",
572
+ "PUfp2",
573
+ "PUfp4",
574
+ "PUfp6",
575
+ "PUfp7",
576
+ "PUfs1",
577
+ "PUfs2",
578
+ "PUfs3",
579
+ "PUfs4",
580
+ "PUfs6",
581
+ "PUfs7",
582
+ "PUip1",
583
+ "PUip2",
584
+ "PUip4",
585
+ "PUip6",
586
+ "PUip7",
587
+ "PUis1",
588
+ "PUis2",
589
+ "PUis3",
590
+ "PUis4",
591
+ "PUis6",
592
+ "PUis7",
593
+ "PUmp1",
594
+ "PUmp2",
595
+ "PUmp4",
596
+ "PUms1",
597
+ "PUms3",
598
+ "PUms7",
599
+ "PUnp1",
600
+ "PUnp2",
601
+ "PUnp3",
602
+ "PUnp4",
603
+ "PUnp6",
604
+ "PUns1",
605
+ "PUns2",
606
+ "PUns3",
607
+ "PUns4",
608
+ "PUns6",
609
+ "PUns7",
610
+ "PUop4",
611
+ "Q",
612
+ "R",
613
+ "R:q",
614
+ "SAfp1",
615
+ "SAfp6",
616
+ "SAfs1",
617
+ "SAfs1:r",
618
+ "SAfs2",
619
+ "SAfs2:r",
620
+ "SAfs3:r",
621
+ "SAfs4",
622
+ "SAfs4:r",
623
+ "SAfs6",
624
+ "SAfs6:r",
625
+ "SAmp1",
626
+ "SAmp2",
627
+ "SAmp3",
628
+ "SAmp4",
629
+ "SAmp6",
630
+ "SAms1",
631
+ "SAms1:r",
632
+ "SAms3",
633
+ "SAms4",
634
+ "SAms4:r",
635
+ "SAms5",
636
+ "SAms6",
637
+ "SAms7",
638
+ "SAms7:r",
639
+ "SFfp1:q",
640
+ "SFfs1",
641
+ "SFfs1:r",
642
+ "SFfs3",
643
+ "SFfs4",
644
+ "SFfs4:r",
645
+ "SFfs7",
646
+ "SFfs7:r",
647
+ "SFmp1:r",
648
+ "SFms1",
649
+ "SFms1:r",
650
+ "SFms2:r",
651
+ "SFms3:r",
652
+ "SFms4:r",
653
+ "SFms5:r",
654
+ "SFms7:r",
655
+ "SSfp1",
656
+ "SSfp1:r",
657
+ "SSfp2",
658
+ "SSfp2:r",
659
+ "SSfp3",
660
+ "SSfp4",
661
+ "SSfp4:q",
662
+ "SSfp4:r",
663
+ "SSfp6",
664
+ "SSfp6:q",
665
+ "SSfp6:r",
666
+ "SSfp7",
667
+ "SSfp7:q",
668
+ "SSfs1",
669
+ "SSfs1:r",
670
+ "SSfs2",
671
+ "SSfs2:q",
672
+ "SSfs2:r",
673
+ "SSfs3",
674
+ "SSfs3:r",
675
+ "SSfs4",
676
+ "SSfs4:q",
677
+ "SSfs4:r",
678
+ "SSfs5",
679
+ "SSfs6",
680
+ "SSfs6:q",
681
+ "SSfs6:r",
682
+ "SSfs7",
683
+ "SSfs7:q",
684
+ "SSfs7:r",
685
+ "SSfs7:rq",
686
+ "SSip1",
687
+ "SSip1:r",
688
+ "SSip2",
689
+ "SSip3",
690
+ "SSip4",
691
+ "SSip6",
692
+ "SSip6:r",
693
+ "SSip7",
694
+ "SSis1",
695
+ "SSis1:q",
696
+ "SSis1:r",
697
+ "SSis2",
698
+ "SSis2:q",
699
+ "SSis2:r",
700
+ "SSis2:rq",
701
+ "SSis3",
702
+ "SSis3:r",
703
+ "SSis4",
704
+ "SSis4:q",
705
+ "SSis4:r",
706
+ "SSis6",
707
+ "SSis6:r",
708
+ "SSis7",
709
+ "SSis7:q",
710
+ "SSis7:r",
711
+ "SSmp1",
712
+ "SSmp1:q",
713
+ "SSmp1:r",
714
+ "SSmp2",
715
+ "SSmp2:r",
716
+ "SSmp3",
717
+ "SSmp3:r",
718
+ "SSmp4",
719
+ "SSmp4:r",
720
+ "SSmp5",
721
+ "SSmp6",
722
+ "SSmp7",
723
+ "SSmp7:q",
724
+ "SSmp7:r",
725
+ "SSms1",
726
+ "SSms1:q",
727
+ "SSms1:r",
728
+ "SSms1:r:q",
729
+ "SSms1:rq",
730
+ "SSms2",
731
+ "SSms2:r",
732
+ "SSms2:rq",
733
+ "SSms3",
734
+ "SSms3:r",
735
+ "SSms4",
736
+ "SSms4:r",
737
+ "SSms5",
738
+ "SSms5:r",
739
+ "SSms6",
740
+ "SSms6:r",
741
+ "SSms7",
742
+ "SSms7:r",
743
+ "SSnp1",
744
+ "SSnp1:r",
745
+ "SSnp2",
746
+ "SSnp3",
747
+ "SSnp4",
748
+ "SSnp6",
749
+ "SSnp7",
750
+ "SSns1",
751
+ "SSns1:r",
752
+ "SSns2",
753
+ "SSns2:r",
754
+ "SSns3",
755
+ "SSns4",
756
+ "SSns4:r",
757
+ "SSns6",
758
+ "SSns6:r",
759
+ "SSns7",
760
+ "SSns7:r",
761
+ "SUfs1",
762
+ "SUfs1:r",
763
+ "SUfs2",
764
+ "SUfs2:r",
765
+ "SUfs3:r",
766
+ "SUfs4",
767
+ "SUfs4:r",
768
+ "SUfs6:r",
769
+ "SUfs7:r",
770
+ "SUis1:r",
771
+ "SUms1:r",
772
+ "SUms2:r",
773
+ "SUms4:r",
774
+ "SUms7:r",
775
+ "SUnp1:r",
776
+ "SUnp4",
777
+ "SUns1",
778
+ "SUns1:r",
779
+ "SUns4",
780
+ "SUns6",
781
+ "SUns6:r",
782
+ "SUns7:r",
783
+ "Ssfs1:r",
784
+ "T",
785
+ "T:q",
786
+ "TY",
787
+ "VBdsb-",
788
+ "VBdsc+",
789
+ "VBepa+",
790
+ "VBepa-",
791
+ "VBepb+",
792
+ "VBepb-",
793
+ "VBepc+",
794
+ "VBepc-",
795
+ "VBesa+",
796
+ "VBesa-",
797
+ "VBesb+",
798
+ "VBesb-",
799
+ "VBesc+",
800
+ "VBesc-",
801
+ "VHd+",
802
+ "VHe+",
803
+ "VHe-",
804
+ "VId+",
805
+ "VId-",
806
+ "VIe+",
807
+ "VIe+:q",
808
+ "VIe-",
809
+ "VIj+",
810
+ "VKdpa+",
811
+ "VKdpa-",
812
+ "VKdpb+",
813
+ "VKdpb-",
814
+ "VKdpb-:q",
815
+ "VKdpc+",
816
+ "VKdpc+:q",
817
+ "VKdpc-",
818
+ "VKdsa+",
819
+ "VKdsa+:q",
820
+ "VKdsa-",
821
+ "VKdsb+",
822
+ "VKdsb-",
823
+ "VKdsc+",
824
+ "VKdsc-",
825
+ "VKepa+",
826
+ "VKepa-",
827
+ "VKepa-:q",
828
+ "VKepb+",
829
+ "VKepb-",
830
+ "VKepc+",
831
+ "VKepc+:q",
832
+ "VKepc-",
833
+ "VKesa+",
834
+ "VKesa-",
835
+ "VKesb+",
836
+ "VKesb-",
837
+ "VKesc+",
838
+ "VKesc-",
839
+ "VKjpa+",
840
+ "VKjpb+",
841
+ "VKjpb-",
842
+ "VKjpc+",
843
+ "VKjpc-",
844
+ "VKjsa+",
845
+ "VKjsa-",
846
+ "VKjsb+",
847
+ "VKjsc+",
848
+ "VKjsc-",
849
+ "VLdpah+",
850
+ "VLdpah-",
851
+ "VLdpbh+",
852
+ "VLdpbh-",
853
+ "VLdpbm+",
854
+ "VLdpbm-",
855
+ "VLdpc+",
856
+ "VLdpcf+",
857
+ "VLdpcf+:q",
858
+ "VLdpcf-",
859
+ "VLdpci+",
860
+ "VLdpci+:q",
861
+ "VLdpci-",
862
+ "VLdpcm+",
863
+ "VLdpcm+:q",
864
+ "VLdpcm-",
865
+ "VLdpcn+",
866
+ "VLdpcn-",
867
+ "VLdpco+",
868
+ "VLdpco+:q",
869
+ "VLdpco-",
870
+ "VLdsaf+",
871
+ "VLdsaf+:q",
872
+ "VLdsaf-",
873
+ "VLdsam+",
874
+ "VLdsam-",
875
+ "VLdsbf+",
876
+ "VLdsbf-",
877
+ "VLdsbm+",
878
+ "VLdsbm-",
879
+ "VLdsc+",
880
+ "VLdscf+",
881
+ "VLdscf-",
882
+ "VLdsci+",
883
+ "VLdsci-",
884
+ "VLdscm+",
885
+ "VLdscm-",
886
+ "VLdscn+",
887
+ "VLdscn+:q",
888
+ "VLdscn-",
889
+ "VLepah+",
890
+ "VLepah-",
891
+ "VLepam+",
892
+ "VLepam-",
893
+ "VLepbh+",
894
+ "VLepbh-",
895
+ "VLepbh-:q",
896
+ "VLepbm+",
897
+ "VLepcf+",
898
+ "VLepcf-",
899
+ "VLepci+",
900
+ "VLepci+:q",
901
+ "VLepci-",
902
+ "VLepcm+",
903
+ "VLepcm-",
904
+ "VLepcn+",
905
+ "VLepcn-",
906
+ "VLepco+",
907
+ "VLepco-",
908
+ "VLesaf+",
909
+ "VLesaf-",
910
+ "VLesam+",
911
+ "VLesam-",
912
+ "VLesbf+",
913
+ "VLesbf-",
914
+ "VLesbm+",
915
+ "VLesbm-",
916
+ "VLesc+",
917
+ "VLesc-",
918
+ "VLescf+",
919
+ "VLescf-",
920
+ "VLesci+",
921
+ "VLesci-",
922
+ "VLescm+",
923
+ "VLescm+:q",
924
+ "VLescm-",
925
+ "VLescm-:q",
926
+ "VLescn+",
927
+ "VLescn-",
928
+ "VLjpah+",
929
+ "VLjpbh+",
930
+ "VLjpcf+",
931
+ "VLjpci+",
932
+ "VLjpcm+",
933
+ "VLjpco+",
934
+ "VLjsaf+",
935
+ "VLjsaf-",
936
+ "VLjsam+",
937
+ "VLjsam-",
938
+ "VLjscf+",
939
+ "VLjscf-",
940
+ "VLjsci+",
941
+ "VLjsci-",
942
+ "VLjscm+",
943
+ "VLjscm-",
944
+ "VLjscn+",
945
+ "VLjscn-",
946
+ "VMdpa+",
947
+ "VMdpa-",
948
+ "VMdpb+",
949
+ "VMdpb+:r",
950
+ "VMdpb-",
951
+ "VMdsb+",
952
+ "VMdsb-",
953
+ "VMepa+",
954
+ "VMepa-",
955
+ "VMepb+",
956
+ "VMepb-",
957
+ "VMepc-",
958
+ "VMesb+",
959
+ "VMesb-",
960
+ "VMjpb+",
961
+ "VMjsb+",
962
+ "Vje+",
963
+ "W",
964
+ "Wms1",
965
+ "Y",
966
+ "Z",
967
+ "ZIP"
968
+ ],
969
+ "neg_prefix":"!",
970
+ "overwrite":false
971
+ }
tagger/model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:440cd0899ecd8737a70b6b9771bf32d8306bfa586c865bc202cb0d12d1598ddc
3
+ size 2968941
transformer/cfg ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+ "max_batch_items":4096
3
+ }
transformer/model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dc768bbad826ccf1f8b7b3cd8c468b1a4128c21fab7ec182d8dfa18aa460a07a
3
+ size 1126406104
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,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e8c01954b1298f46448bf906b90d1ff391b4d58edb3af03a6c01b4260699ad81
3
+ size 1516488
vocab/vectors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:14772b683e726436d5948ad3fff2b43d036ef2ebbe3458aafed6004e05a40706
3
+ size 128
vocab/vectors.cfg ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+ "mode":"default"
3
+ }