cococoomo commited on
Commit
b2a775c
·
verified ·
1 Parent(s): 608ffa2

Upload folder using huggingface_hub

Browse files
config.json ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "/root/.cache/huggingface/hub/models--cococoomo--Exaone3.5-7.8B_ReST_V0_bf16/snapshots/97cf8557d07f238ace29bd8302eb6c71500ec32a",
3
+ "activation_function": "silu",
4
+ "architectures": [
5
+ "ExaoneForCausalLM"
6
+ ],
7
+ "attention_dropout": 0.0,
8
+ "auto_map": {
9
+ "AutoConfig": "configuration_exaone.ExaoneConfig",
10
+ "AutoModelForCausalLM": "LGAI-EXAONE/EXAONE-3.5-7.8B-Instruct--modeling_exaone.ExaoneForCausalLM",
11
+ "AutoModelForSequenceClassification": "LGAI-EXAONE/EXAONE-3.5-7.8B-Instruct--modeling_exaone.ExaoneForSequenceClassification"
12
+ },
13
+ "bos_token_id": 1,
14
+ "embed_dropout": 0.0,
15
+ "eos_token_id": 361,
16
+ "head_dim": 128,
17
+ "hidden_size": 4096,
18
+ "initializer_range": 0.02,
19
+ "intermediate_size": 14336,
20
+ "layer_norm_epsilon": 1e-05,
21
+ "max_position_embeddings": 32768,
22
+ "model_type": "exaone",
23
+ "num_attention_heads": 32,
24
+ "num_key_value_heads": 8,
25
+ "num_layers": 32,
26
+ "pad_token_id": 0,
27
+ "quantization_config": {
28
+ "bits": 4,
29
+ "group_size": 128,
30
+ "modules_to_not_convert": null,
31
+ "quant_method": "awq",
32
+ "version": "gemm",
33
+ "zero_point": true
34
+ },
35
+ "rope_scaling": {
36
+ "factor": 8.0,
37
+ "high_freq_factor": 4.0,
38
+ "low_freq_factor": 1.0,
39
+ "original_max_position_embeddings": 8192,
40
+ "rope_type": "llama3"
41
+ },
42
+ "rope_theta": 1000000.0,
43
+ "tie_word_embeddings": false,
44
+ "torch_dtype": "float16",
45
+ "transformers_version": "4.47.1",
46
+ "use_cache": false,
47
+ "vocab_size": 102400
48
+ }
configuration_exaone.py ADDED
@@ -0,0 +1,183 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # coding=utf-8
2
+ # Copyright 2021 The LG AI Research EXAONE Lab. All rights reserved.
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License");
5
+ # you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+ """EXAONE model configuration"""
16
+
17
+ from transformers.configuration_utils import PretrainedConfig
18
+ from transformers.utils import logging
19
+
20
+
21
+ logger = logging.get_logger(__name__)
22
+
23
+ EXAONE_PRETRAINED_CONFIG_ARCHIVE_MAP = {}
24
+
25
+
26
+ class ExaoneConfig(PretrainedConfig):
27
+ r"""
28
+ This is the configuration class to store the configuration of a [`ExaoneModel`]. It is used to
29
+ instantiate a EXAONE model according to the specified arguments, defining the model architecture. Instantiating a
30
+ configuration with the defaults will yield a similar configuration to that of the EXAONE-3.0-7.8B-Instruct [LGAI-EXAONE/EXAONE-3.0-7.8B-Instruct](https://huggingface.co/LGAI-EXAONE/EXAONE-3.0-7.8B-Instruct)
31
+
32
+ Configuration objects inherit from [`PretrainedConfig`] and can be used to control the model
33
+ outputs. Read the documentation from [`PretrainedConfig`] for more information.
34
+
35
+
36
+ Args:
37
+ vocab_size (`int`, *optional*, defaults to 102400):
38
+ Vocabulary size of the EXAONE model. Defines the number of different tokens that can be represented by the
39
+ `inputs_ids` passed when calling [`ExaoneModel`]. Vocabulary size of the model.
40
+ Defines the different tokens that can be represented by the `inputs_ids` passed to the forward method of
41
+ [`ExaoneModel`].
42
+ max_position_embeddings (`int`, *optional*, defaults to 2048):
43
+ The maximum sequence length that this model might ever be used with. Typically set this to something large
44
+ just in case (e.g., 512 or 1024 or 2048).
45
+ hidden_size (`int`, *optional*, defaults to 2048):
46
+ Dimensionality of the encoder layers and the pooler layer.
47
+ num_layers (`int`, *optional*, defaults to 32):
48
+ Number of hidden layers in the Transformer encoder.
49
+ num_attention_heads (`int`, *optional*, defaults to 32):
50
+ Number of attention heads for each attention layer in the Transformer decoder.
51
+ num_key_value_heads (`int`, *optional*):
52
+ This is the number of key_value heads that should be used to implement Grouped Query Attention. If
53
+ `num_key_value_heads=num_attention_heads`, the model will use Multi Head Attention (MHA), if
54
+ `num_key_value_heads=1 the model will use Multi Query Attention (MQA) otherwise GQA is used. When
55
+ converting a multi-head checkpoint to a GQA checkpoint, each group key and value head should be constructed
56
+ by meanpooling all the original heads within that group. For more details checkout [this
57
+ paper](https://arxiv.org/pdf/2305.13245.pdf). If it is not specified, will default to
58
+ `num_attention_heads`.
59
+ intermediate_size (`int`, *optional*, defaults to `hidden_size * 4`):
60
+ Dimensionality of the "intermediate" (i.e., feed-forward) layer in the Transformer encoder.
61
+ activation_function (`str` or `function`, *optional*, defaults to `"silu"`):
62
+ The non-linear activation function (function or string) in the decoder.
63
+ rope_theta (`float`, *optional*, defaults to 10000.0):
64
+ The base period of the RoPE embeddings.
65
+ rope_scaling (`Dict`, *optional*):
66
+ Dictionary containing the scaling configuration for the RoPE embeddings. NOTE: if you apply new rope type
67
+ and you expect the model to work on longer `max_position_embeddings`, we recommend you to update this value
68
+ accordingly.
69
+ Expected contents:
70
+ `rope_type` (`str`):
71
+ The sub-variant of RoPE to use. Can be one of ['default', 'linear', 'dynamic', 'yarn', 'longrope',
72
+ 'llama3'], with 'default' being the original RoPE implementation.
73
+ `factor` (`float`, *optional*):
74
+ Used with all rope types except 'default'. The scaling factor to apply to the RoPE embeddings. In
75
+ most scaling types, a `factor` of x will enable the model to handle sequences of length x *
76
+ original maximum pre-trained length.
77
+ `original_max_position_embeddings` (`int`, *optional*):
78
+ Used with 'dynamic', 'longrope' and 'llama3'. The original max position embeddings used during
79
+ pretraining.
80
+ `attention_factor` (`float`, *optional*):
81
+ Used with 'yarn' and 'longrope'. The scaling factor to be applied on the attention
82
+ computation. If unspecified, it defaults to value recommended by the implementation, using the
83
+ `factor` field to infer the suggested value.
84
+ `beta_fast` (`float`, *optional*):
85
+ Only used with 'yarn'. Parameter to set the boundary for extrapolation (only) in the linear
86
+ ramp function. If unspecified, it defaults to 32.
87
+ `beta_slow` (`float`, *optional*):
88
+ Only used with 'yarn'. Parameter to set the boundary for interpolation (only) in the linear
89
+ ramp function. If unspecified, it defaults to 1.
90
+ `short_factor` (`List[float]`, *optional*):
91
+ Only used with 'longrope'. The scaling factor to be applied to short contexts (<
92
+ `original_max_position_embeddings`). Must be a list of numbers with the same length as the hidden
93
+ size divided by the number of attention heads divided by 2
94
+ `long_factor` (`List[float]`, *optional*):
95
+ Only used with 'longrope'. The scaling factor to be applied to long contexts (<
96
+ `original_max_position_embeddings`). Must be a list of numbers with the same length as the hidden
97
+ size divided by the number of attention heads divided by 2
98
+ `low_freq_factor` (`float`, *optional*):
99
+ Only used with 'llama3'. Scaling factor applied to low frequency components of the RoPE
100
+ `high_freq_factor` (`float`, *optional*):
101
+ Only used with 'llama3'. Scaling factor applied to high frequency components of the RoPE
102
+ embed_dropout (`float`, *optional*, defaults to 0.0):
103
+ The dropout probabilitiy for all fully connected layers in the embeddings, encoder, and pooler.
104
+ attention_dropout (`float`, *optional*, defaults to 0.0):
105
+ The dropout ratio for the attention probabilities.
106
+ layer_norm_epsilon (`float`, *optional*, defaults to 1e-05):
107
+ The epsilon used by the layer normalization layers.
108
+ initializer_range (`float`, *optional*, defaults to 0.02):
109
+ The standard deviation of the truncated_normal_initializer for initializing all weight matrices.
110
+ use_cache (`bool`, *optional*, defaults to `True`):
111
+ Whether or not the model should return the last key/values attentions (not used by all models). Only
112
+ relevant if ``config.is_decoder=True``.
113
+ bos_token_id (`int`, *optional*, defaults to 0):
114
+ Beginning of stream token id.
115
+ eos_token_id (`int`, *optional*, defaults to 2):
116
+ End of stream token id.
117
+
118
+ Example:
119
+
120
+ ```python
121
+ >>> from transformers import EXAONEModel, ExaoneConfig
122
+
123
+ >>> # Initializing a EXAONE configuration
124
+ >>> configuration = ExaoneConfig()
125
+
126
+ >>> # Initializing a model from configuration
127
+ >>> model = EXAONEModel(configuration)
128
+
129
+ >>> # Accessing the model configuration
130
+ >>> configuration = model.config
131
+ ```"""
132
+
133
+ model_type = "exaone"
134
+ keys_to_ignore_at_inference = ["past_key_values"]
135
+ attribute_map = {"num_hidden_layers": "num_layers"}
136
+
137
+ def __init__(
138
+ self,
139
+ vocab_size=102400,
140
+ max_position_embeddings=2048,
141
+ hidden_size=2048,
142
+ num_layers=32,
143
+ num_attention_heads=32,
144
+ num_key_value_heads=None,
145
+ intermediate_size=None,
146
+ activation_function="silu",
147
+ rope_theta=10000.0,
148
+ rope_scaling=None,
149
+ embed_dropout=0.0,
150
+ attention_dropout=0.0,
151
+ layer_norm_epsilon=1e-5,
152
+ initializer_range=0.02,
153
+ use_cache=True,
154
+ bos_token_id=0,
155
+ eos_token_id=2,
156
+ **kwargs,
157
+ ):
158
+ self.vocab_size = vocab_size
159
+ self.max_position_embeddings = max_position_embeddings
160
+ self.hidden_size = hidden_size
161
+ self.num_layers = num_layers
162
+ self.num_attention_heads = num_attention_heads
163
+ self.num_layers = num_layers
164
+ if num_key_value_heads is None:
165
+ num_key_value_heads = num_attention_heads
166
+ self.num_key_value_heads = num_key_value_heads
167
+ if intermediate_size:
168
+ self.intermediate_size = intermediate_size
169
+ else:
170
+ self.intermediate_size = hidden_size * 4
171
+ self.activation_function = activation_function
172
+ self.embed_dropout = embed_dropout
173
+ self.attention_dropout = attention_dropout
174
+ self.layer_norm_epsilon = layer_norm_epsilon
175
+ self.initializer_range = initializer_range
176
+ self.use_cache = use_cache
177
+ self.rope_theta = rope_theta
178
+ self.rope_scaling = rope_scaling
179
+
180
+ self.bos_token_id = bos_token_id
181
+ self.eos_token_id = eos_token_id
182
+
183
+ super().__init__(bos_token_id=bos_token_id, eos_token_id=eos_token_id, **kwargs)
generation_config.json ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "bos_token_id": 1,
4
+ "do_sample": true,
5
+ "eos_token_id": 361,
6
+ "pad_token_id": 0,
7
+ "transformers_version": "4.47.1"
8
+ }
merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
model-00001-of-00002.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:45be53ee5bd19d05b4c252ad6d6312c3ead99d15ab310ebd9c2ea84b1089c4e4
3
+ size 4465454112
model-00002-of-00002.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c4dccc6f220007bf89787e558d7079901d36f4cad4e4c02a8f217fd0fa4e348f
3
+ size 838860928
model.safetensors.index.json ADDED
@@ -0,0 +1,746 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "metadata": {
3
+ "total_size": 5304229888
4
+ },
5
+ "weight_map": {
6
+ "transformer.wte.weight": "model-00001-of-00002.safetensors",
7
+ "transformer.h.0.ln_1.weight": "model-00001-of-00002.safetensors",
8
+ "transformer.h.0.attn.attention.k_proj.qweight": "model-00001-of-00002.safetensors",
9
+ "transformer.h.0.attn.attention.k_proj.qzeros": "model-00001-of-00002.safetensors",
10
+ "transformer.h.0.attn.attention.k_proj.scales": "model-00001-of-00002.safetensors",
11
+ "transformer.h.0.attn.attention.v_proj.qweight": "model-00001-of-00002.safetensors",
12
+ "transformer.h.0.attn.attention.v_proj.qzeros": "model-00001-of-00002.safetensors",
13
+ "transformer.h.0.attn.attention.v_proj.scales": "model-00001-of-00002.safetensors",
14
+ "transformer.h.0.attn.attention.q_proj.qweight": "model-00001-of-00002.safetensors",
15
+ "transformer.h.0.attn.attention.q_proj.qzeros": "model-00001-of-00002.safetensors",
16
+ "transformer.h.0.attn.attention.q_proj.scales": "model-00001-of-00002.safetensors",
17
+ "transformer.h.0.attn.attention.out_proj.qweight": "model-00001-of-00002.safetensors",
18
+ "transformer.h.0.attn.attention.out_proj.qzeros": "model-00001-of-00002.safetensors",
19
+ "transformer.h.0.attn.attention.out_proj.scales": "model-00001-of-00002.safetensors",
20
+ "transformer.h.0.ln_2.weight": "model-00001-of-00002.safetensors",
21
+ "transformer.h.0.mlp.c_fc_0.qweight": "model-00001-of-00002.safetensors",
22
+ "transformer.h.0.mlp.c_fc_0.qzeros": "model-00001-of-00002.safetensors",
23
+ "transformer.h.0.mlp.c_fc_0.scales": "model-00001-of-00002.safetensors",
24
+ "transformer.h.0.mlp.c_fc_1.qweight": "model-00001-of-00002.safetensors",
25
+ "transformer.h.0.mlp.c_fc_1.qzeros": "model-00001-of-00002.safetensors",
26
+ "transformer.h.0.mlp.c_fc_1.scales": "model-00001-of-00002.safetensors",
27
+ "transformer.h.0.mlp.c_proj.qweight": "model-00001-of-00002.safetensors",
28
+ "transformer.h.0.mlp.c_proj.qzeros": "model-00001-of-00002.safetensors",
29
+ "transformer.h.0.mlp.c_proj.scales": "model-00001-of-00002.safetensors",
30
+ "transformer.h.1.ln_1.weight": "model-00001-of-00002.safetensors",
31
+ "transformer.h.1.attn.attention.k_proj.qweight": "model-00001-of-00002.safetensors",
32
+ "transformer.h.1.attn.attention.k_proj.qzeros": "model-00001-of-00002.safetensors",
33
+ "transformer.h.1.attn.attention.k_proj.scales": "model-00001-of-00002.safetensors",
34
+ "transformer.h.1.attn.attention.v_proj.qweight": "model-00001-of-00002.safetensors",
35
+ "transformer.h.1.attn.attention.v_proj.qzeros": "model-00001-of-00002.safetensors",
36
+ "transformer.h.1.attn.attention.v_proj.scales": "model-00001-of-00002.safetensors",
37
+ "transformer.h.1.attn.attention.q_proj.qweight": "model-00001-of-00002.safetensors",
38
+ "transformer.h.1.attn.attention.q_proj.qzeros": "model-00001-of-00002.safetensors",
39
+ "transformer.h.1.attn.attention.q_proj.scales": "model-00001-of-00002.safetensors",
40
+ "transformer.h.1.attn.attention.out_proj.qweight": "model-00001-of-00002.safetensors",
41
+ "transformer.h.1.attn.attention.out_proj.qzeros": "model-00001-of-00002.safetensors",
42
+ "transformer.h.1.attn.attention.out_proj.scales": "model-00001-of-00002.safetensors",
43
+ "transformer.h.1.ln_2.weight": "model-00001-of-00002.safetensors",
44
+ "transformer.h.1.mlp.c_fc_0.qweight": "model-00001-of-00002.safetensors",
45
+ "transformer.h.1.mlp.c_fc_0.qzeros": "model-00001-of-00002.safetensors",
46
+ "transformer.h.1.mlp.c_fc_0.scales": "model-00001-of-00002.safetensors",
47
+ "transformer.h.1.mlp.c_fc_1.qweight": "model-00001-of-00002.safetensors",
48
+ "transformer.h.1.mlp.c_fc_1.qzeros": "model-00001-of-00002.safetensors",
49
+ "transformer.h.1.mlp.c_fc_1.scales": "model-00001-of-00002.safetensors",
50
+ "transformer.h.1.mlp.c_proj.qweight": "model-00001-of-00002.safetensors",
51
+ "transformer.h.1.mlp.c_proj.qzeros": "model-00001-of-00002.safetensors",
52
+ "transformer.h.1.mlp.c_proj.scales": "model-00001-of-00002.safetensors",
53
+ "transformer.h.2.ln_1.weight": "model-00001-of-00002.safetensors",
54
+ "transformer.h.2.attn.attention.k_proj.qweight": "model-00001-of-00002.safetensors",
55
+ "transformer.h.2.attn.attention.k_proj.qzeros": "model-00001-of-00002.safetensors",
56
+ "transformer.h.2.attn.attention.k_proj.scales": "model-00001-of-00002.safetensors",
57
+ "transformer.h.2.attn.attention.v_proj.qweight": "model-00001-of-00002.safetensors",
58
+ "transformer.h.2.attn.attention.v_proj.qzeros": "model-00001-of-00002.safetensors",
59
+ "transformer.h.2.attn.attention.v_proj.scales": "model-00001-of-00002.safetensors",
60
+ "transformer.h.2.attn.attention.q_proj.qweight": "model-00001-of-00002.safetensors",
61
+ "transformer.h.2.attn.attention.q_proj.qzeros": "model-00001-of-00002.safetensors",
62
+ "transformer.h.2.attn.attention.q_proj.scales": "model-00001-of-00002.safetensors",
63
+ "transformer.h.2.attn.attention.out_proj.qweight": "model-00001-of-00002.safetensors",
64
+ "transformer.h.2.attn.attention.out_proj.qzeros": "model-00001-of-00002.safetensors",
65
+ "transformer.h.2.attn.attention.out_proj.scales": "model-00001-of-00002.safetensors",
66
+ "transformer.h.2.ln_2.weight": "model-00001-of-00002.safetensors",
67
+ "transformer.h.2.mlp.c_fc_0.qweight": "model-00001-of-00002.safetensors",
68
+ "transformer.h.2.mlp.c_fc_0.qzeros": "model-00001-of-00002.safetensors",
69
+ "transformer.h.2.mlp.c_fc_0.scales": "model-00001-of-00002.safetensors",
70
+ "transformer.h.2.mlp.c_fc_1.qweight": "model-00001-of-00002.safetensors",
71
+ "transformer.h.2.mlp.c_fc_1.qzeros": "model-00001-of-00002.safetensors",
72
+ "transformer.h.2.mlp.c_fc_1.scales": "model-00001-of-00002.safetensors",
73
+ "transformer.h.2.mlp.c_proj.qweight": "model-00001-of-00002.safetensors",
74
+ "transformer.h.2.mlp.c_proj.qzeros": "model-00001-of-00002.safetensors",
75
+ "transformer.h.2.mlp.c_proj.scales": "model-00001-of-00002.safetensors",
76
+ "transformer.h.3.ln_1.weight": "model-00001-of-00002.safetensors",
77
+ "transformer.h.3.attn.attention.k_proj.qweight": "model-00001-of-00002.safetensors",
78
+ "transformer.h.3.attn.attention.k_proj.qzeros": "model-00001-of-00002.safetensors",
79
+ "transformer.h.3.attn.attention.k_proj.scales": "model-00001-of-00002.safetensors",
80
+ "transformer.h.3.attn.attention.v_proj.qweight": "model-00001-of-00002.safetensors",
81
+ "transformer.h.3.attn.attention.v_proj.qzeros": "model-00001-of-00002.safetensors",
82
+ "transformer.h.3.attn.attention.v_proj.scales": "model-00001-of-00002.safetensors",
83
+ "transformer.h.3.attn.attention.q_proj.qweight": "model-00001-of-00002.safetensors",
84
+ "transformer.h.3.attn.attention.q_proj.qzeros": "model-00001-of-00002.safetensors",
85
+ "transformer.h.3.attn.attention.q_proj.scales": "model-00001-of-00002.safetensors",
86
+ "transformer.h.3.attn.attention.out_proj.qweight": "model-00001-of-00002.safetensors",
87
+ "transformer.h.3.attn.attention.out_proj.qzeros": "model-00001-of-00002.safetensors",
88
+ "transformer.h.3.attn.attention.out_proj.scales": "model-00001-of-00002.safetensors",
89
+ "transformer.h.3.ln_2.weight": "model-00001-of-00002.safetensors",
90
+ "transformer.h.3.mlp.c_fc_0.qweight": "model-00001-of-00002.safetensors",
91
+ "transformer.h.3.mlp.c_fc_0.qzeros": "model-00001-of-00002.safetensors",
92
+ "transformer.h.3.mlp.c_fc_0.scales": "model-00001-of-00002.safetensors",
93
+ "transformer.h.3.mlp.c_fc_1.qweight": "model-00001-of-00002.safetensors",
94
+ "transformer.h.3.mlp.c_fc_1.qzeros": "model-00001-of-00002.safetensors",
95
+ "transformer.h.3.mlp.c_fc_1.scales": "model-00001-of-00002.safetensors",
96
+ "transformer.h.3.mlp.c_proj.qweight": "model-00001-of-00002.safetensors",
97
+ "transformer.h.3.mlp.c_proj.qzeros": "model-00001-of-00002.safetensors",
98
+ "transformer.h.3.mlp.c_proj.scales": "model-00001-of-00002.safetensors",
99
+ "transformer.h.4.ln_1.weight": "model-00001-of-00002.safetensors",
100
+ "transformer.h.4.attn.attention.k_proj.qweight": "model-00001-of-00002.safetensors",
101
+ "transformer.h.4.attn.attention.k_proj.qzeros": "model-00001-of-00002.safetensors",
102
+ "transformer.h.4.attn.attention.k_proj.scales": "model-00001-of-00002.safetensors",
103
+ "transformer.h.4.attn.attention.v_proj.qweight": "model-00001-of-00002.safetensors",
104
+ "transformer.h.4.attn.attention.v_proj.qzeros": "model-00001-of-00002.safetensors",
105
+ "transformer.h.4.attn.attention.v_proj.scales": "model-00001-of-00002.safetensors",
106
+ "transformer.h.4.attn.attention.q_proj.qweight": "model-00001-of-00002.safetensors",
107
+ "transformer.h.4.attn.attention.q_proj.qzeros": "model-00001-of-00002.safetensors",
108
+ "transformer.h.4.attn.attention.q_proj.scales": "model-00001-of-00002.safetensors",
109
+ "transformer.h.4.attn.attention.out_proj.qweight": "model-00001-of-00002.safetensors",
110
+ "transformer.h.4.attn.attention.out_proj.qzeros": "model-00001-of-00002.safetensors",
111
+ "transformer.h.4.attn.attention.out_proj.scales": "model-00001-of-00002.safetensors",
112
+ "transformer.h.4.ln_2.weight": "model-00001-of-00002.safetensors",
113
+ "transformer.h.4.mlp.c_fc_0.qweight": "model-00001-of-00002.safetensors",
114
+ "transformer.h.4.mlp.c_fc_0.qzeros": "model-00001-of-00002.safetensors",
115
+ "transformer.h.4.mlp.c_fc_0.scales": "model-00001-of-00002.safetensors",
116
+ "transformer.h.4.mlp.c_fc_1.qweight": "model-00001-of-00002.safetensors",
117
+ "transformer.h.4.mlp.c_fc_1.qzeros": "model-00001-of-00002.safetensors",
118
+ "transformer.h.4.mlp.c_fc_1.scales": "model-00001-of-00002.safetensors",
119
+ "transformer.h.4.mlp.c_proj.qweight": "model-00001-of-00002.safetensors",
120
+ "transformer.h.4.mlp.c_proj.qzeros": "model-00001-of-00002.safetensors",
121
+ "transformer.h.4.mlp.c_proj.scales": "model-00001-of-00002.safetensors",
122
+ "transformer.h.5.ln_1.weight": "model-00001-of-00002.safetensors",
123
+ "transformer.h.5.attn.attention.k_proj.qweight": "model-00001-of-00002.safetensors",
124
+ "transformer.h.5.attn.attention.k_proj.qzeros": "model-00001-of-00002.safetensors",
125
+ "transformer.h.5.attn.attention.k_proj.scales": "model-00001-of-00002.safetensors",
126
+ "transformer.h.5.attn.attention.v_proj.qweight": "model-00001-of-00002.safetensors",
127
+ "transformer.h.5.attn.attention.v_proj.qzeros": "model-00001-of-00002.safetensors",
128
+ "transformer.h.5.attn.attention.v_proj.scales": "model-00001-of-00002.safetensors",
129
+ "transformer.h.5.attn.attention.q_proj.qweight": "model-00001-of-00002.safetensors",
130
+ "transformer.h.5.attn.attention.q_proj.qzeros": "model-00001-of-00002.safetensors",
131
+ "transformer.h.5.attn.attention.q_proj.scales": "model-00001-of-00002.safetensors",
132
+ "transformer.h.5.attn.attention.out_proj.qweight": "model-00001-of-00002.safetensors",
133
+ "transformer.h.5.attn.attention.out_proj.qzeros": "model-00001-of-00002.safetensors",
134
+ "transformer.h.5.attn.attention.out_proj.scales": "model-00001-of-00002.safetensors",
135
+ "transformer.h.5.ln_2.weight": "model-00001-of-00002.safetensors",
136
+ "transformer.h.5.mlp.c_fc_0.qweight": "model-00001-of-00002.safetensors",
137
+ "transformer.h.5.mlp.c_fc_0.qzeros": "model-00001-of-00002.safetensors",
138
+ "transformer.h.5.mlp.c_fc_0.scales": "model-00001-of-00002.safetensors",
139
+ "transformer.h.5.mlp.c_fc_1.qweight": "model-00001-of-00002.safetensors",
140
+ "transformer.h.5.mlp.c_fc_1.qzeros": "model-00001-of-00002.safetensors",
141
+ "transformer.h.5.mlp.c_fc_1.scales": "model-00001-of-00002.safetensors",
142
+ "transformer.h.5.mlp.c_proj.qweight": "model-00001-of-00002.safetensors",
143
+ "transformer.h.5.mlp.c_proj.qzeros": "model-00001-of-00002.safetensors",
144
+ "transformer.h.5.mlp.c_proj.scales": "model-00001-of-00002.safetensors",
145
+ "transformer.h.6.ln_1.weight": "model-00001-of-00002.safetensors",
146
+ "transformer.h.6.attn.attention.k_proj.qweight": "model-00001-of-00002.safetensors",
147
+ "transformer.h.6.attn.attention.k_proj.qzeros": "model-00001-of-00002.safetensors",
148
+ "transformer.h.6.attn.attention.k_proj.scales": "model-00001-of-00002.safetensors",
149
+ "transformer.h.6.attn.attention.v_proj.qweight": "model-00001-of-00002.safetensors",
150
+ "transformer.h.6.attn.attention.v_proj.qzeros": "model-00001-of-00002.safetensors",
151
+ "transformer.h.6.attn.attention.v_proj.scales": "model-00001-of-00002.safetensors",
152
+ "transformer.h.6.attn.attention.q_proj.qweight": "model-00001-of-00002.safetensors",
153
+ "transformer.h.6.attn.attention.q_proj.qzeros": "model-00001-of-00002.safetensors",
154
+ "transformer.h.6.attn.attention.q_proj.scales": "model-00001-of-00002.safetensors",
155
+ "transformer.h.6.attn.attention.out_proj.qweight": "model-00001-of-00002.safetensors",
156
+ "transformer.h.6.attn.attention.out_proj.qzeros": "model-00001-of-00002.safetensors",
157
+ "transformer.h.6.attn.attention.out_proj.scales": "model-00001-of-00002.safetensors",
158
+ "transformer.h.6.ln_2.weight": "model-00001-of-00002.safetensors",
159
+ "transformer.h.6.mlp.c_fc_0.qweight": "model-00001-of-00002.safetensors",
160
+ "transformer.h.6.mlp.c_fc_0.qzeros": "model-00001-of-00002.safetensors",
161
+ "transformer.h.6.mlp.c_fc_0.scales": "model-00001-of-00002.safetensors",
162
+ "transformer.h.6.mlp.c_fc_1.qweight": "model-00001-of-00002.safetensors",
163
+ "transformer.h.6.mlp.c_fc_1.qzeros": "model-00001-of-00002.safetensors",
164
+ "transformer.h.6.mlp.c_fc_1.scales": "model-00001-of-00002.safetensors",
165
+ "transformer.h.6.mlp.c_proj.qweight": "model-00001-of-00002.safetensors",
166
+ "transformer.h.6.mlp.c_proj.qzeros": "model-00001-of-00002.safetensors",
167
+ "transformer.h.6.mlp.c_proj.scales": "model-00001-of-00002.safetensors",
168
+ "transformer.h.7.ln_1.weight": "model-00001-of-00002.safetensors",
169
+ "transformer.h.7.attn.attention.k_proj.qweight": "model-00001-of-00002.safetensors",
170
+ "transformer.h.7.attn.attention.k_proj.qzeros": "model-00001-of-00002.safetensors",
171
+ "transformer.h.7.attn.attention.k_proj.scales": "model-00001-of-00002.safetensors",
172
+ "transformer.h.7.attn.attention.v_proj.qweight": "model-00001-of-00002.safetensors",
173
+ "transformer.h.7.attn.attention.v_proj.qzeros": "model-00001-of-00002.safetensors",
174
+ "transformer.h.7.attn.attention.v_proj.scales": "model-00001-of-00002.safetensors",
175
+ "transformer.h.7.attn.attention.q_proj.qweight": "model-00001-of-00002.safetensors",
176
+ "transformer.h.7.attn.attention.q_proj.qzeros": "model-00001-of-00002.safetensors",
177
+ "transformer.h.7.attn.attention.q_proj.scales": "model-00001-of-00002.safetensors",
178
+ "transformer.h.7.attn.attention.out_proj.qweight": "model-00001-of-00002.safetensors",
179
+ "transformer.h.7.attn.attention.out_proj.qzeros": "model-00001-of-00002.safetensors",
180
+ "transformer.h.7.attn.attention.out_proj.scales": "model-00001-of-00002.safetensors",
181
+ "transformer.h.7.ln_2.weight": "model-00001-of-00002.safetensors",
182
+ "transformer.h.7.mlp.c_fc_0.qweight": "model-00001-of-00002.safetensors",
183
+ "transformer.h.7.mlp.c_fc_0.qzeros": "model-00001-of-00002.safetensors",
184
+ "transformer.h.7.mlp.c_fc_0.scales": "model-00001-of-00002.safetensors",
185
+ "transformer.h.7.mlp.c_fc_1.qweight": "model-00001-of-00002.safetensors",
186
+ "transformer.h.7.mlp.c_fc_1.qzeros": "model-00001-of-00002.safetensors",
187
+ "transformer.h.7.mlp.c_fc_1.scales": "model-00001-of-00002.safetensors",
188
+ "transformer.h.7.mlp.c_proj.qweight": "model-00001-of-00002.safetensors",
189
+ "transformer.h.7.mlp.c_proj.qzeros": "model-00001-of-00002.safetensors",
190
+ "transformer.h.7.mlp.c_proj.scales": "model-00001-of-00002.safetensors",
191
+ "transformer.h.8.ln_1.weight": "model-00001-of-00002.safetensors",
192
+ "transformer.h.8.attn.attention.k_proj.qweight": "model-00001-of-00002.safetensors",
193
+ "transformer.h.8.attn.attention.k_proj.qzeros": "model-00001-of-00002.safetensors",
194
+ "transformer.h.8.attn.attention.k_proj.scales": "model-00001-of-00002.safetensors",
195
+ "transformer.h.8.attn.attention.v_proj.qweight": "model-00001-of-00002.safetensors",
196
+ "transformer.h.8.attn.attention.v_proj.qzeros": "model-00001-of-00002.safetensors",
197
+ "transformer.h.8.attn.attention.v_proj.scales": "model-00001-of-00002.safetensors",
198
+ "transformer.h.8.attn.attention.q_proj.qweight": "model-00001-of-00002.safetensors",
199
+ "transformer.h.8.attn.attention.q_proj.qzeros": "model-00001-of-00002.safetensors",
200
+ "transformer.h.8.attn.attention.q_proj.scales": "model-00001-of-00002.safetensors",
201
+ "transformer.h.8.attn.attention.out_proj.qweight": "model-00001-of-00002.safetensors",
202
+ "transformer.h.8.attn.attention.out_proj.qzeros": "model-00001-of-00002.safetensors",
203
+ "transformer.h.8.attn.attention.out_proj.scales": "model-00001-of-00002.safetensors",
204
+ "transformer.h.8.ln_2.weight": "model-00001-of-00002.safetensors",
205
+ "transformer.h.8.mlp.c_fc_0.qweight": "model-00001-of-00002.safetensors",
206
+ "transformer.h.8.mlp.c_fc_0.qzeros": "model-00001-of-00002.safetensors",
207
+ "transformer.h.8.mlp.c_fc_0.scales": "model-00001-of-00002.safetensors",
208
+ "transformer.h.8.mlp.c_fc_1.qweight": "model-00001-of-00002.safetensors",
209
+ "transformer.h.8.mlp.c_fc_1.qzeros": "model-00001-of-00002.safetensors",
210
+ "transformer.h.8.mlp.c_fc_1.scales": "model-00001-of-00002.safetensors",
211
+ "transformer.h.8.mlp.c_proj.qweight": "model-00001-of-00002.safetensors",
212
+ "transformer.h.8.mlp.c_proj.qzeros": "model-00001-of-00002.safetensors",
213
+ "transformer.h.8.mlp.c_proj.scales": "model-00001-of-00002.safetensors",
214
+ "transformer.h.9.ln_1.weight": "model-00001-of-00002.safetensors",
215
+ "transformer.h.9.attn.attention.k_proj.qweight": "model-00001-of-00002.safetensors",
216
+ "transformer.h.9.attn.attention.k_proj.qzeros": "model-00001-of-00002.safetensors",
217
+ "transformer.h.9.attn.attention.k_proj.scales": "model-00001-of-00002.safetensors",
218
+ "transformer.h.9.attn.attention.v_proj.qweight": "model-00001-of-00002.safetensors",
219
+ "transformer.h.9.attn.attention.v_proj.qzeros": "model-00001-of-00002.safetensors",
220
+ "transformer.h.9.attn.attention.v_proj.scales": "model-00001-of-00002.safetensors",
221
+ "transformer.h.9.attn.attention.q_proj.qweight": "model-00001-of-00002.safetensors",
222
+ "transformer.h.9.attn.attention.q_proj.qzeros": "model-00001-of-00002.safetensors",
223
+ "transformer.h.9.attn.attention.q_proj.scales": "model-00001-of-00002.safetensors",
224
+ "transformer.h.9.attn.attention.out_proj.qweight": "model-00001-of-00002.safetensors",
225
+ "transformer.h.9.attn.attention.out_proj.qzeros": "model-00001-of-00002.safetensors",
226
+ "transformer.h.9.attn.attention.out_proj.scales": "model-00001-of-00002.safetensors",
227
+ "transformer.h.9.ln_2.weight": "model-00001-of-00002.safetensors",
228
+ "transformer.h.9.mlp.c_fc_0.qweight": "model-00001-of-00002.safetensors",
229
+ "transformer.h.9.mlp.c_fc_0.qzeros": "model-00001-of-00002.safetensors",
230
+ "transformer.h.9.mlp.c_fc_0.scales": "model-00001-of-00002.safetensors",
231
+ "transformer.h.9.mlp.c_fc_1.qweight": "model-00001-of-00002.safetensors",
232
+ "transformer.h.9.mlp.c_fc_1.qzeros": "model-00001-of-00002.safetensors",
233
+ "transformer.h.9.mlp.c_fc_1.scales": "model-00001-of-00002.safetensors",
234
+ "transformer.h.9.mlp.c_proj.qweight": "model-00001-of-00002.safetensors",
235
+ "transformer.h.9.mlp.c_proj.qzeros": "model-00001-of-00002.safetensors",
236
+ "transformer.h.9.mlp.c_proj.scales": "model-00001-of-00002.safetensors",
237
+ "transformer.h.10.ln_1.weight": "model-00001-of-00002.safetensors",
238
+ "transformer.h.10.attn.attention.k_proj.qweight": "model-00001-of-00002.safetensors",
239
+ "transformer.h.10.attn.attention.k_proj.qzeros": "model-00001-of-00002.safetensors",
240
+ "transformer.h.10.attn.attention.k_proj.scales": "model-00001-of-00002.safetensors",
241
+ "transformer.h.10.attn.attention.v_proj.qweight": "model-00001-of-00002.safetensors",
242
+ "transformer.h.10.attn.attention.v_proj.qzeros": "model-00001-of-00002.safetensors",
243
+ "transformer.h.10.attn.attention.v_proj.scales": "model-00001-of-00002.safetensors",
244
+ "transformer.h.10.attn.attention.q_proj.qweight": "model-00001-of-00002.safetensors",
245
+ "transformer.h.10.attn.attention.q_proj.qzeros": "model-00001-of-00002.safetensors",
246
+ "transformer.h.10.attn.attention.q_proj.scales": "model-00001-of-00002.safetensors",
247
+ "transformer.h.10.attn.attention.out_proj.qweight": "model-00001-of-00002.safetensors",
248
+ "transformer.h.10.attn.attention.out_proj.qzeros": "model-00001-of-00002.safetensors",
249
+ "transformer.h.10.attn.attention.out_proj.scales": "model-00001-of-00002.safetensors",
250
+ "transformer.h.10.ln_2.weight": "model-00001-of-00002.safetensors",
251
+ "transformer.h.10.mlp.c_fc_0.qweight": "model-00001-of-00002.safetensors",
252
+ "transformer.h.10.mlp.c_fc_0.qzeros": "model-00001-of-00002.safetensors",
253
+ "transformer.h.10.mlp.c_fc_0.scales": "model-00001-of-00002.safetensors",
254
+ "transformer.h.10.mlp.c_fc_1.qweight": "model-00001-of-00002.safetensors",
255
+ "transformer.h.10.mlp.c_fc_1.qzeros": "model-00001-of-00002.safetensors",
256
+ "transformer.h.10.mlp.c_fc_1.scales": "model-00001-of-00002.safetensors",
257
+ "transformer.h.10.mlp.c_proj.qweight": "model-00001-of-00002.safetensors",
258
+ "transformer.h.10.mlp.c_proj.qzeros": "model-00001-of-00002.safetensors",
259
+ "transformer.h.10.mlp.c_proj.scales": "model-00001-of-00002.safetensors",
260
+ "transformer.h.11.ln_1.weight": "model-00001-of-00002.safetensors",
261
+ "transformer.h.11.attn.attention.k_proj.qweight": "model-00001-of-00002.safetensors",
262
+ "transformer.h.11.attn.attention.k_proj.qzeros": "model-00001-of-00002.safetensors",
263
+ "transformer.h.11.attn.attention.k_proj.scales": "model-00001-of-00002.safetensors",
264
+ "transformer.h.11.attn.attention.v_proj.qweight": "model-00001-of-00002.safetensors",
265
+ "transformer.h.11.attn.attention.v_proj.qzeros": "model-00001-of-00002.safetensors",
266
+ "transformer.h.11.attn.attention.v_proj.scales": "model-00001-of-00002.safetensors",
267
+ "transformer.h.11.attn.attention.q_proj.qweight": "model-00001-of-00002.safetensors",
268
+ "transformer.h.11.attn.attention.q_proj.qzeros": "model-00001-of-00002.safetensors",
269
+ "transformer.h.11.attn.attention.q_proj.scales": "model-00001-of-00002.safetensors",
270
+ "transformer.h.11.attn.attention.out_proj.qweight": "model-00001-of-00002.safetensors",
271
+ "transformer.h.11.attn.attention.out_proj.qzeros": "model-00001-of-00002.safetensors",
272
+ "transformer.h.11.attn.attention.out_proj.scales": "model-00001-of-00002.safetensors",
273
+ "transformer.h.11.ln_2.weight": "model-00001-of-00002.safetensors",
274
+ "transformer.h.11.mlp.c_fc_0.qweight": "model-00001-of-00002.safetensors",
275
+ "transformer.h.11.mlp.c_fc_0.qzeros": "model-00001-of-00002.safetensors",
276
+ "transformer.h.11.mlp.c_fc_0.scales": "model-00001-of-00002.safetensors",
277
+ "transformer.h.11.mlp.c_fc_1.qweight": "model-00001-of-00002.safetensors",
278
+ "transformer.h.11.mlp.c_fc_1.qzeros": "model-00001-of-00002.safetensors",
279
+ "transformer.h.11.mlp.c_fc_1.scales": "model-00001-of-00002.safetensors",
280
+ "transformer.h.11.mlp.c_proj.qweight": "model-00001-of-00002.safetensors",
281
+ "transformer.h.11.mlp.c_proj.qzeros": "model-00001-of-00002.safetensors",
282
+ "transformer.h.11.mlp.c_proj.scales": "model-00001-of-00002.safetensors",
283
+ "transformer.h.12.ln_1.weight": "model-00001-of-00002.safetensors",
284
+ "transformer.h.12.attn.attention.k_proj.qweight": "model-00001-of-00002.safetensors",
285
+ "transformer.h.12.attn.attention.k_proj.qzeros": "model-00001-of-00002.safetensors",
286
+ "transformer.h.12.attn.attention.k_proj.scales": "model-00001-of-00002.safetensors",
287
+ "transformer.h.12.attn.attention.v_proj.qweight": "model-00001-of-00002.safetensors",
288
+ "transformer.h.12.attn.attention.v_proj.qzeros": "model-00001-of-00002.safetensors",
289
+ "transformer.h.12.attn.attention.v_proj.scales": "model-00001-of-00002.safetensors",
290
+ "transformer.h.12.attn.attention.q_proj.qweight": "model-00001-of-00002.safetensors",
291
+ "transformer.h.12.attn.attention.q_proj.qzeros": "model-00001-of-00002.safetensors",
292
+ "transformer.h.12.attn.attention.q_proj.scales": "model-00001-of-00002.safetensors",
293
+ "transformer.h.12.attn.attention.out_proj.qweight": "model-00001-of-00002.safetensors",
294
+ "transformer.h.12.attn.attention.out_proj.qzeros": "model-00001-of-00002.safetensors",
295
+ "transformer.h.12.attn.attention.out_proj.scales": "model-00001-of-00002.safetensors",
296
+ "transformer.h.12.ln_2.weight": "model-00001-of-00002.safetensors",
297
+ "transformer.h.12.mlp.c_fc_0.qweight": "model-00001-of-00002.safetensors",
298
+ "transformer.h.12.mlp.c_fc_0.qzeros": "model-00001-of-00002.safetensors",
299
+ "transformer.h.12.mlp.c_fc_0.scales": "model-00001-of-00002.safetensors",
300
+ "transformer.h.12.mlp.c_fc_1.qweight": "model-00001-of-00002.safetensors",
301
+ "transformer.h.12.mlp.c_fc_1.qzeros": "model-00001-of-00002.safetensors",
302
+ "transformer.h.12.mlp.c_fc_1.scales": "model-00001-of-00002.safetensors",
303
+ "transformer.h.12.mlp.c_proj.qweight": "model-00001-of-00002.safetensors",
304
+ "transformer.h.12.mlp.c_proj.qzeros": "model-00001-of-00002.safetensors",
305
+ "transformer.h.12.mlp.c_proj.scales": "model-00001-of-00002.safetensors",
306
+ "transformer.h.13.ln_1.weight": "model-00001-of-00002.safetensors",
307
+ "transformer.h.13.attn.attention.k_proj.qweight": "model-00001-of-00002.safetensors",
308
+ "transformer.h.13.attn.attention.k_proj.qzeros": "model-00001-of-00002.safetensors",
309
+ "transformer.h.13.attn.attention.k_proj.scales": "model-00001-of-00002.safetensors",
310
+ "transformer.h.13.attn.attention.v_proj.qweight": "model-00001-of-00002.safetensors",
311
+ "transformer.h.13.attn.attention.v_proj.qzeros": "model-00001-of-00002.safetensors",
312
+ "transformer.h.13.attn.attention.v_proj.scales": "model-00001-of-00002.safetensors",
313
+ "transformer.h.13.attn.attention.q_proj.qweight": "model-00001-of-00002.safetensors",
314
+ "transformer.h.13.attn.attention.q_proj.qzeros": "model-00001-of-00002.safetensors",
315
+ "transformer.h.13.attn.attention.q_proj.scales": "model-00001-of-00002.safetensors",
316
+ "transformer.h.13.attn.attention.out_proj.qweight": "model-00001-of-00002.safetensors",
317
+ "transformer.h.13.attn.attention.out_proj.qzeros": "model-00001-of-00002.safetensors",
318
+ "transformer.h.13.attn.attention.out_proj.scales": "model-00001-of-00002.safetensors",
319
+ "transformer.h.13.ln_2.weight": "model-00001-of-00002.safetensors",
320
+ "transformer.h.13.mlp.c_fc_0.qweight": "model-00001-of-00002.safetensors",
321
+ "transformer.h.13.mlp.c_fc_0.qzeros": "model-00001-of-00002.safetensors",
322
+ "transformer.h.13.mlp.c_fc_0.scales": "model-00001-of-00002.safetensors",
323
+ "transformer.h.13.mlp.c_fc_1.qweight": "model-00001-of-00002.safetensors",
324
+ "transformer.h.13.mlp.c_fc_1.qzeros": "model-00001-of-00002.safetensors",
325
+ "transformer.h.13.mlp.c_fc_1.scales": "model-00001-of-00002.safetensors",
326
+ "transformer.h.13.mlp.c_proj.qweight": "model-00001-of-00002.safetensors",
327
+ "transformer.h.13.mlp.c_proj.qzeros": "model-00001-of-00002.safetensors",
328
+ "transformer.h.13.mlp.c_proj.scales": "model-00001-of-00002.safetensors",
329
+ "transformer.h.14.ln_1.weight": "model-00001-of-00002.safetensors",
330
+ "transformer.h.14.attn.attention.k_proj.qweight": "model-00001-of-00002.safetensors",
331
+ "transformer.h.14.attn.attention.k_proj.qzeros": "model-00001-of-00002.safetensors",
332
+ "transformer.h.14.attn.attention.k_proj.scales": "model-00001-of-00002.safetensors",
333
+ "transformer.h.14.attn.attention.v_proj.qweight": "model-00001-of-00002.safetensors",
334
+ "transformer.h.14.attn.attention.v_proj.qzeros": "model-00001-of-00002.safetensors",
335
+ "transformer.h.14.attn.attention.v_proj.scales": "model-00001-of-00002.safetensors",
336
+ "transformer.h.14.attn.attention.q_proj.qweight": "model-00001-of-00002.safetensors",
337
+ "transformer.h.14.attn.attention.q_proj.qzeros": "model-00001-of-00002.safetensors",
338
+ "transformer.h.14.attn.attention.q_proj.scales": "model-00001-of-00002.safetensors",
339
+ "transformer.h.14.attn.attention.out_proj.qweight": "model-00001-of-00002.safetensors",
340
+ "transformer.h.14.attn.attention.out_proj.qzeros": "model-00001-of-00002.safetensors",
341
+ "transformer.h.14.attn.attention.out_proj.scales": "model-00001-of-00002.safetensors",
342
+ "transformer.h.14.ln_2.weight": "model-00001-of-00002.safetensors",
343
+ "transformer.h.14.mlp.c_fc_0.qweight": "model-00001-of-00002.safetensors",
344
+ "transformer.h.14.mlp.c_fc_0.qzeros": "model-00001-of-00002.safetensors",
345
+ "transformer.h.14.mlp.c_fc_0.scales": "model-00001-of-00002.safetensors",
346
+ "transformer.h.14.mlp.c_fc_1.qweight": "model-00001-of-00002.safetensors",
347
+ "transformer.h.14.mlp.c_fc_1.qzeros": "model-00001-of-00002.safetensors",
348
+ "transformer.h.14.mlp.c_fc_1.scales": "model-00001-of-00002.safetensors",
349
+ "transformer.h.14.mlp.c_proj.qweight": "model-00001-of-00002.safetensors",
350
+ "transformer.h.14.mlp.c_proj.qzeros": "model-00001-of-00002.safetensors",
351
+ "transformer.h.14.mlp.c_proj.scales": "model-00001-of-00002.safetensors",
352
+ "transformer.h.15.ln_1.weight": "model-00001-of-00002.safetensors",
353
+ "transformer.h.15.attn.attention.k_proj.qweight": "model-00001-of-00002.safetensors",
354
+ "transformer.h.15.attn.attention.k_proj.qzeros": "model-00001-of-00002.safetensors",
355
+ "transformer.h.15.attn.attention.k_proj.scales": "model-00001-of-00002.safetensors",
356
+ "transformer.h.15.attn.attention.v_proj.qweight": "model-00001-of-00002.safetensors",
357
+ "transformer.h.15.attn.attention.v_proj.qzeros": "model-00001-of-00002.safetensors",
358
+ "transformer.h.15.attn.attention.v_proj.scales": "model-00001-of-00002.safetensors",
359
+ "transformer.h.15.attn.attention.q_proj.qweight": "model-00001-of-00002.safetensors",
360
+ "transformer.h.15.attn.attention.q_proj.qzeros": "model-00001-of-00002.safetensors",
361
+ "transformer.h.15.attn.attention.q_proj.scales": "model-00001-of-00002.safetensors",
362
+ "transformer.h.15.attn.attention.out_proj.qweight": "model-00001-of-00002.safetensors",
363
+ "transformer.h.15.attn.attention.out_proj.qzeros": "model-00001-of-00002.safetensors",
364
+ "transformer.h.15.attn.attention.out_proj.scales": "model-00001-of-00002.safetensors",
365
+ "transformer.h.15.ln_2.weight": "model-00001-of-00002.safetensors",
366
+ "transformer.h.15.mlp.c_fc_0.qweight": "model-00001-of-00002.safetensors",
367
+ "transformer.h.15.mlp.c_fc_0.qzeros": "model-00001-of-00002.safetensors",
368
+ "transformer.h.15.mlp.c_fc_0.scales": "model-00001-of-00002.safetensors",
369
+ "transformer.h.15.mlp.c_fc_1.qweight": "model-00001-of-00002.safetensors",
370
+ "transformer.h.15.mlp.c_fc_1.qzeros": "model-00001-of-00002.safetensors",
371
+ "transformer.h.15.mlp.c_fc_1.scales": "model-00001-of-00002.safetensors",
372
+ "transformer.h.15.mlp.c_proj.qweight": "model-00001-of-00002.safetensors",
373
+ "transformer.h.15.mlp.c_proj.qzeros": "model-00001-of-00002.safetensors",
374
+ "transformer.h.15.mlp.c_proj.scales": "model-00001-of-00002.safetensors",
375
+ "transformer.h.16.ln_1.weight": "model-00001-of-00002.safetensors",
376
+ "transformer.h.16.attn.attention.k_proj.qweight": "model-00001-of-00002.safetensors",
377
+ "transformer.h.16.attn.attention.k_proj.qzeros": "model-00001-of-00002.safetensors",
378
+ "transformer.h.16.attn.attention.k_proj.scales": "model-00001-of-00002.safetensors",
379
+ "transformer.h.16.attn.attention.v_proj.qweight": "model-00001-of-00002.safetensors",
380
+ "transformer.h.16.attn.attention.v_proj.qzeros": "model-00001-of-00002.safetensors",
381
+ "transformer.h.16.attn.attention.v_proj.scales": "model-00001-of-00002.safetensors",
382
+ "transformer.h.16.attn.attention.q_proj.qweight": "model-00001-of-00002.safetensors",
383
+ "transformer.h.16.attn.attention.q_proj.qzeros": "model-00001-of-00002.safetensors",
384
+ "transformer.h.16.attn.attention.q_proj.scales": "model-00001-of-00002.safetensors",
385
+ "transformer.h.16.attn.attention.out_proj.qweight": "model-00001-of-00002.safetensors",
386
+ "transformer.h.16.attn.attention.out_proj.qzeros": "model-00001-of-00002.safetensors",
387
+ "transformer.h.16.attn.attention.out_proj.scales": "model-00001-of-00002.safetensors",
388
+ "transformer.h.16.ln_2.weight": "model-00001-of-00002.safetensors",
389
+ "transformer.h.16.mlp.c_fc_0.qweight": "model-00001-of-00002.safetensors",
390
+ "transformer.h.16.mlp.c_fc_0.qzeros": "model-00001-of-00002.safetensors",
391
+ "transformer.h.16.mlp.c_fc_0.scales": "model-00001-of-00002.safetensors",
392
+ "transformer.h.16.mlp.c_fc_1.qweight": "model-00001-of-00002.safetensors",
393
+ "transformer.h.16.mlp.c_fc_1.qzeros": "model-00001-of-00002.safetensors",
394
+ "transformer.h.16.mlp.c_fc_1.scales": "model-00001-of-00002.safetensors",
395
+ "transformer.h.16.mlp.c_proj.qweight": "model-00001-of-00002.safetensors",
396
+ "transformer.h.16.mlp.c_proj.qzeros": "model-00001-of-00002.safetensors",
397
+ "transformer.h.16.mlp.c_proj.scales": "model-00001-of-00002.safetensors",
398
+ "transformer.h.17.ln_1.weight": "model-00001-of-00002.safetensors",
399
+ "transformer.h.17.attn.attention.k_proj.qweight": "model-00001-of-00002.safetensors",
400
+ "transformer.h.17.attn.attention.k_proj.qzeros": "model-00001-of-00002.safetensors",
401
+ "transformer.h.17.attn.attention.k_proj.scales": "model-00001-of-00002.safetensors",
402
+ "transformer.h.17.attn.attention.v_proj.qweight": "model-00001-of-00002.safetensors",
403
+ "transformer.h.17.attn.attention.v_proj.qzeros": "model-00001-of-00002.safetensors",
404
+ "transformer.h.17.attn.attention.v_proj.scales": "model-00001-of-00002.safetensors",
405
+ "transformer.h.17.attn.attention.q_proj.qweight": "model-00001-of-00002.safetensors",
406
+ "transformer.h.17.attn.attention.q_proj.qzeros": "model-00001-of-00002.safetensors",
407
+ "transformer.h.17.attn.attention.q_proj.scales": "model-00001-of-00002.safetensors",
408
+ "transformer.h.17.attn.attention.out_proj.qweight": "model-00001-of-00002.safetensors",
409
+ "transformer.h.17.attn.attention.out_proj.qzeros": "model-00001-of-00002.safetensors",
410
+ "transformer.h.17.attn.attention.out_proj.scales": "model-00001-of-00002.safetensors",
411
+ "transformer.h.17.ln_2.weight": "model-00001-of-00002.safetensors",
412
+ "transformer.h.17.mlp.c_fc_0.qweight": "model-00001-of-00002.safetensors",
413
+ "transformer.h.17.mlp.c_fc_0.qzeros": "model-00001-of-00002.safetensors",
414
+ "transformer.h.17.mlp.c_fc_0.scales": "model-00001-of-00002.safetensors",
415
+ "transformer.h.17.mlp.c_fc_1.qweight": "model-00001-of-00002.safetensors",
416
+ "transformer.h.17.mlp.c_fc_1.qzeros": "model-00001-of-00002.safetensors",
417
+ "transformer.h.17.mlp.c_fc_1.scales": "model-00001-of-00002.safetensors",
418
+ "transformer.h.17.mlp.c_proj.qweight": "model-00001-of-00002.safetensors",
419
+ "transformer.h.17.mlp.c_proj.qzeros": "model-00001-of-00002.safetensors",
420
+ "transformer.h.17.mlp.c_proj.scales": "model-00001-of-00002.safetensors",
421
+ "transformer.h.18.ln_1.weight": "model-00001-of-00002.safetensors",
422
+ "transformer.h.18.attn.attention.k_proj.qweight": "model-00001-of-00002.safetensors",
423
+ "transformer.h.18.attn.attention.k_proj.qzeros": "model-00001-of-00002.safetensors",
424
+ "transformer.h.18.attn.attention.k_proj.scales": "model-00001-of-00002.safetensors",
425
+ "transformer.h.18.attn.attention.v_proj.qweight": "model-00001-of-00002.safetensors",
426
+ "transformer.h.18.attn.attention.v_proj.qzeros": "model-00001-of-00002.safetensors",
427
+ "transformer.h.18.attn.attention.v_proj.scales": "model-00001-of-00002.safetensors",
428
+ "transformer.h.18.attn.attention.q_proj.qweight": "model-00001-of-00002.safetensors",
429
+ "transformer.h.18.attn.attention.q_proj.qzeros": "model-00001-of-00002.safetensors",
430
+ "transformer.h.18.attn.attention.q_proj.scales": "model-00001-of-00002.safetensors",
431
+ "transformer.h.18.attn.attention.out_proj.qweight": "model-00001-of-00002.safetensors",
432
+ "transformer.h.18.attn.attention.out_proj.qzeros": "model-00001-of-00002.safetensors",
433
+ "transformer.h.18.attn.attention.out_proj.scales": "model-00001-of-00002.safetensors",
434
+ "transformer.h.18.ln_2.weight": "model-00001-of-00002.safetensors",
435
+ "transformer.h.18.mlp.c_fc_0.qweight": "model-00001-of-00002.safetensors",
436
+ "transformer.h.18.mlp.c_fc_0.qzeros": "model-00001-of-00002.safetensors",
437
+ "transformer.h.18.mlp.c_fc_0.scales": "model-00001-of-00002.safetensors",
438
+ "transformer.h.18.mlp.c_fc_1.qweight": "model-00001-of-00002.safetensors",
439
+ "transformer.h.18.mlp.c_fc_1.qzeros": "model-00001-of-00002.safetensors",
440
+ "transformer.h.18.mlp.c_fc_1.scales": "model-00001-of-00002.safetensors",
441
+ "transformer.h.18.mlp.c_proj.qweight": "model-00001-of-00002.safetensors",
442
+ "transformer.h.18.mlp.c_proj.qzeros": "model-00001-of-00002.safetensors",
443
+ "transformer.h.18.mlp.c_proj.scales": "model-00001-of-00002.safetensors",
444
+ "transformer.h.19.ln_1.weight": "model-00001-of-00002.safetensors",
445
+ "transformer.h.19.attn.attention.k_proj.qweight": "model-00001-of-00002.safetensors",
446
+ "transformer.h.19.attn.attention.k_proj.qzeros": "model-00001-of-00002.safetensors",
447
+ "transformer.h.19.attn.attention.k_proj.scales": "model-00001-of-00002.safetensors",
448
+ "transformer.h.19.attn.attention.v_proj.qweight": "model-00001-of-00002.safetensors",
449
+ "transformer.h.19.attn.attention.v_proj.qzeros": "model-00001-of-00002.safetensors",
450
+ "transformer.h.19.attn.attention.v_proj.scales": "model-00001-of-00002.safetensors",
451
+ "transformer.h.19.attn.attention.q_proj.qweight": "model-00001-of-00002.safetensors",
452
+ "transformer.h.19.attn.attention.q_proj.qzeros": "model-00001-of-00002.safetensors",
453
+ "transformer.h.19.attn.attention.q_proj.scales": "model-00001-of-00002.safetensors",
454
+ "transformer.h.19.attn.attention.out_proj.qweight": "model-00001-of-00002.safetensors",
455
+ "transformer.h.19.attn.attention.out_proj.qzeros": "model-00001-of-00002.safetensors",
456
+ "transformer.h.19.attn.attention.out_proj.scales": "model-00001-of-00002.safetensors",
457
+ "transformer.h.19.ln_2.weight": "model-00001-of-00002.safetensors",
458
+ "transformer.h.19.mlp.c_fc_0.qweight": "model-00001-of-00002.safetensors",
459
+ "transformer.h.19.mlp.c_fc_0.qzeros": "model-00001-of-00002.safetensors",
460
+ "transformer.h.19.mlp.c_fc_0.scales": "model-00001-of-00002.safetensors",
461
+ "transformer.h.19.mlp.c_fc_1.qweight": "model-00001-of-00002.safetensors",
462
+ "transformer.h.19.mlp.c_fc_1.qzeros": "model-00001-of-00002.safetensors",
463
+ "transformer.h.19.mlp.c_fc_1.scales": "model-00001-of-00002.safetensors",
464
+ "transformer.h.19.mlp.c_proj.qweight": "model-00001-of-00002.safetensors",
465
+ "transformer.h.19.mlp.c_proj.qzeros": "model-00001-of-00002.safetensors",
466
+ "transformer.h.19.mlp.c_proj.scales": "model-00001-of-00002.safetensors",
467
+ "transformer.h.20.ln_1.weight": "model-00001-of-00002.safetensors",
468
+ "transformer.h.20.attn.attention.k_proj.qweight": "model-00001-of-00002.safetensors",
469
+ "transformer.h.20.attn.attention.k_proj.qzeros": "model-00001-of-00002.safetensors",
470
+ "transformer.h.20.attn.attention.k_proj.scales": "model-00001-of-00002.safetensors",
471
+ "transformer.h.20.attn.attention.v_proj.qweight": "model-00001-of-00002.safetensors",
472
+ "transformer.h.20.attn.attention.v_proj.qzeros": "model-00001-of-00002.safetensors",
473
+ "transformer.h.20.attn.attention.v_proj.scales": "model-00001-of-00002.safetensors",
474
+ "transformer.h.20.attn.attention.q_proj.qweight": "model-00001-of-00002.safetensors",
475
+ "transformer.h.20.attn.attention.q_proj.qzeros": "model-00001-of-00002.safetensors",
476
+ "transformer.h.20.attn.attention.q_proj.scales": "model-00001-of-00002.safetensors",
477
+ "transformer.h.20.attn.attention.out_proj.qweight": "model-00001-of-00002.safetensors",
478
+ "transformer.h.20.attn.attention.out_proj.qzeros": "model-00001-of-00002.safetensors",
479
+ "transformer.h.20.attn.attention.out_proj.scales": "model-00001-of-00002.safetensors",
480
+ "transformer.h.20.ln_2.weight": "model-00001-of-00002.safetensors",
481
+ "transformer.h.20.mlp.c_fc_0.qweight": "model-00001-of-00002.safetensors",
482
+ "transformer.h.20.mlp.c_fc_0.qzeros": "model-00001-of-00002.safetensors",
483
+ "transformer.h.20.mlp.c_fc_0.scales": "model-00001-of-00002.safetensors",
484
+ "transformer.h.20.mlp.c_fc_1.qweight": "model-00001-of-00002.safetensors",
485
+ "transformer.h.20.mlp.c_fc_1.qzeros": "model-00001-of-00002.safetensors",
486
+ "transformer.h.20.mlp.c_fc_1.scales": "model-00001-of-00002.safetensors",
487
+ "transformer.h.20.mlp.c_proj.qweight": "model-00001-of-00002.safetensors",
488
+ "transformer.h.20.mlp.c_proj.qzeros": "model-00001-of-00002.safetensors",
489
+ "transformer.h.20.mlp.c_proj.scales": "model-00001-of-00002.safetensors",
490
+ "transformer.h.21.ln_1.weight": "model-00001-of-00002.safetensors",
491
+ "transformer.h.21.attn.attention.k_proj.qweight": "model-00001-of-00002.safetensors",
492
+ "transformer.h.21.attn.attention.k_proj.qzeros": "model-00001-of-00002.safetensors",
493
+ "transformer.h.21.attn.attention.k_proj.scales": "model-00001-of-00002.safetensors",
494
+ "transformer.h.21.attn.attention.v_proj.qweight": "model-00001-of-00002.safetensors",
495
+ "transformer.h.21.attn.attention.v_proj.qzeros": "model-00001-of-00002.safetensors",
496
+ "transformer.h.21.attn.attention.v_proj.scales": "model-00001-of-00002.safetensors",
497
+ "transformer.h.21.attn.attention.q_proj.qweight": "model-00001-of-00002.safetensors",
498
+ "transformer.h.21.attn.attention.q_proj.qzeros": "model-00001-of-00002.safetensors",
499
+ "transformer.h.21.attn.attention.q_proj.scales": "model-00001-of-00002.safetensors",
500
+ "transformer.h.21.attn.attention.out_proj.qweight": "model-00001-of-00002.safetensors",
501
+ "transformer.h.21.attn.attention.out_proj.qzeros": "model-00001-of-00002.safetensors",
502
+ "transformer.h.21.attn.attention.out_proj.scales": "model-00001-of-00002.safetensors",
503
+ "transformer.h.21.ln_2.weight": "model-00001-of-00002.safetensors",
504
+ "transformer.h.21.mlp.c_fc_0.qweight": "model-00001-of-00002.safetensors",
505
+ "transformer.h.21.mlp.c_fc_0.qzeros": "model-00001-of-00002.safetensors",
506
+ "transformer.h.21.mlp.c_fc_0.scales": "model-00001-of-00002.safetensors",
507
+ "transformer.h.21.mlp.c_fc_1.qweight": "model-00001-of-00002.safetensors",
508
+ "transformer.h.21.mlp.c_fc_1.qzeros": "model-00001-of-00002.safetensors",
509
+ "transformer.h.21.mlp.c_fc_1.scales": "model-00001-of-00002.safetensors",
510
+ "transformer.h.21.mlp.c_proj.qweight": "model-00001-of-00002.safetensors",
511
+ "transformer.h.21.mlp.c_proj.qzeros": "model-00001-of-00002.safetensors",
512
+ "transformer.h.21.mlp.c_proj.scales": "model-00001-of-00002.safetensors",
513
+ "transformer.h.22.ln_1.weight": "model-00001-of-00002.safetensors",
514
+ "transformer.h.22.attn.attention.k_proj.qweight": "model-00001-of-00002.safetensors",
515
+ "transformer.h.22.attn.attention.k_proj.qzeros": "model-00001-of-00002.safetensors",
516
+ "transformer.h.22.attn.attention.k_proj.scales": "model-00001-of-00002.safetensors",
517
+ "transformer.h.22.attn.attention.v_proj.qweight": "model-00001-of-00002.safetensors",
518
+ "transformer.h.22.attn.attention.v_proj.qzeros": "model-00001-of-00002.safetensors",
519
+ "transformer.h.22.attn.attention.v_proj.scales": "model-00001-of-00002.safetensors",
520
+ "transformer.h.22.attn.attention.q_proj.qweight": "model-00001-of-00002.safetensors",
521
+ "transformer.h.22.attn.attention.q_proj.qzeros": "model-00001-of-00002.safetensors",
522
+ "transformer.h.22.attn.attention.q_proj.scales": "model-00001-of-00002.safetensors",
523
+ "transformer.h.22.attn.attention.out_proj.qweight": "model-00001-of-00002.safetensors",
524
+ "transformer.h.22.attn.attention.out_proj.qzeros": "model-00001-of-00002.safetensors",
525
+ "transformer.h.22.attn.attention.out_proj.scales": "model-00001-of-00002.safetensors",
526
+ "transformer.h.22.ln_2.weight": "model-00001-of-00002.safetensors",
527
+ "transformer.h.22.mlp.c_fc_0.qweight": "model-00001-of-00002.safetensors",
528
+ "transformer.h.22.mlp.c_fc_0.qzeros": "model-00001-of-00002.safetensors",
529
+ "transformer.h.22.mlp.c_fc_0.scales": "model-00001-of-00002.safetensors",
530
+ "transformer.h.22.mlp.c_fc_1.qweight": "model-00001-of-00002.safetensors",
531
+ "transformer.h.22.mlp.c_fc_1.qzeros": "model-00001-of-00002.safetensors",
532
+ "transformer.h.22.mlp.c_fc_1.scales": "model-00001-of-00002.safetensors",
533
+ "transformer.h.22.mlp.c_proj.qweight": "model-00001-of-00002.safetensors",
534
+ "transformer.h.22.mlp.c_proj.qzeros": "model-00001-of-00002.safetensors",
535
+ "transformer.h.22.mlp.c_proj.scales": "model-00001-of-00002.safetensors",
536
+ "transformer.h.23.ln_1.weight": "model-00001-of-00002.safetensors",
537
+ "transformer.h.23.attn.attention.k_proj.qweight": "model-00001-of-00002.safetensors",
538
+ "transformer.h.23.attn.attention.k_proj.qzeros": "model-00001-of-00002.safetensors",
539
+ "transformer.h.23.attn.attention.k_proj.scales": "model-00001-of-00002.safetensors",
540
+ "transformer.h.23.attn.attention.v_proj.qweight": "model-00001-of-00002.safetensors",
541
+ "transformer.h.23.attn.attention.v_proj.qzeros": "model-00001-of-00002.safetensors",
542
+ "transformer.h.23.attn.attention.v_proj.scales": "model-00001-of-00002.safetensors",
543
+ "transformer.h.23.attn.attention.q_proj.qweight": "model-00001-of-00002.safetensors",
544
+ "transformer.h.23.attn.attention.q_proj.qzeros": "model-00001-of-00002.safetensors",
545
+ "transformer.h.23.attn.attention.q_proj.scales": "model-00001-of-00002.safetensors",
546
+ "transformer.h.23.attn.attention.out_proj.qweight": "model-00001-of-00002.safetensors",
547
+ "transformer.h.23.attn.attention.out_proj.qzeros": "model-00001-of-00002.safetensors",
548
+ "transformer.h.23.attn.attention.out_proj.scales": "model-00001-of-00002.safetensors",
549
+ "transformer.h.23.ln_2.weight": "model-00001-of-00002.safetensors",
550
+ "transformer.h.23.mlp.c_fc_0.qweight": "model-00001-of-00002.safetensors",
551
+ "transformer.h.23.mlp.c_fc_0.qzeros": "model-00001-of-00002.safetensors",
552
+ "transformer.h.23.mlp.c_fc_0.scales": "model-00001-of-00002.safetensors",
553
+ "transformer.h.23.mlp.c_fc_1.qweight": "model-00001-of-00002.safetensors",
554
+ "transformer.h.23.mlp.c_fc_1.qzeros": "model-00001-of-00002.safetensors",
555
+ "transformer.h.23.mlp.c_fc_1.scales": "model-00001-of-00002.safetensors",
556
+ "transformer.h.23.mlp.c_proj.qweight": "model-00001-of-00002.safetensors",
557
+ "transformer.h.23.mlp.c_proj.qzeros": "model-00001-of-00002.safetensors",
558
+ "transformer.h.23.mlp.c_proj.scales": "model-00001-of-00002.safetensors",
559
+ "transformer.h.24.ln_1.weight": "model-00001-of-00002.safetensors",
560
+ "transformer.h.24.attn.attention.k_proj.qweight": "model-00001-of-00002.safetensors",
561
+ "transformer.h.24.attn.attention.k_proj.qzeros": "model-00001-of-00002.safetensors",
562
+ "transformer.h.24.attn.attention.k_proj.scales": "model-00001-of-00002.safetensors",
563
+ "transformer.h.24.attn.attention.v_proj.qweight": "model-00001-of-00002.safetensors",
564
+ "transformer.h.24.attn.attention.v_proj.qzeros": "model-00001-of-00002.safetensors",
565
+ "transformer.h.24.attn.attention.v_proj.scales": "model-00001-of-00002.safetensors",
566
+ "transformer.h.24.attn.attention.q_proj.qweight": "model-00001-of-00002.safetensors",
567
+ "transformer.h.24.attn.attention.q_proj.qzeros": "model-00001-of-00002.safetensors",
568
+ "transformer.h.24.attn.attention.q_proj.scales": "model-00001-of-00002.safetensors",
569
+ "transformer.h.24.attn.attention.out_proj.qweight": "model-00001-of-00002.safetensors",
570
+ "transformer.h.24.attn.attention.out_proj.qzeros": "model-00001-of-00002.safetensors",
571
+ "transformer.h.24.attn.attention.out_proj.scales": "model-00001-of-00002.safetensors",
572
+ "transformer.h.24.ln_2.weight": "model-00001-of-00002.safetensors",
573
+ "transformer.h.24.mlp.c_fc_0.qweight": "model-00001-of-00002.safetensors",
574
+ "transformer.h.24.mlp.c_fc_0.qzeros": "model-00001-of-00002.safetensors",
575
+ "transformer.h.24.mlp.c_fc_0.scales": "model-00001-of-00002.safetensors",
576
+ "transformer.h.24.mlp.c_fc_1.qweight": "model-00001-of-00002.safetensors",
577
+ "transformer.h.24.mlp.c_fc_1.qzeros": "model-00001-of-00002.safetensors",
578
+ "transformer.h.24.mlp.c_fc_1.scales": "model-00001-of-00002.safetensors",
579
+ "transformer.h.24.mlp.c_proj.qweight": "model-00001-of-00002.safetensors",
580
+ "transformer.h.24.mlp.c_proj.qzeros": "model-00001-of-00002.safetensors",
581
+ "transformer.h.24.mlp.c_proj.scales": "model-00001-of-00002.safetensors",
582
+ "transformer.h.25.ln_1.weight": "model-00001-of-00002.safetensors",
583
+ "transformer.h.25.attn.attention.k_proj.qweight": "model-00001-of-00002.safetensors",
584
+ "transformer.h.25.attn.attention.k_proj.qzeros": "model-00001-of-00002.safetensors",
585
+ "transformer.h.25.attn.attention.k_proj.scales": "model-00001-of-00002.safetensors",
586
+ "transformer.h.25.attn.attention.v_proj.qweight": "model-00001-of-00002.safetensors",
587
+ "transformer.h.25.attn.attention.v_proj.qzeros": "model-00001-of-00002.safetensors",
588
+ "transformer.h.25.attn.attention.v_proj.scales": "model-00001-of-00002.safetensors",
589
+ "transformer.h.25.attn.attention.q_proj.qweight": "model-00001-of-00002.safetensors",
590
+ "transformer.h.25.attn.attention.q_proj.qzeros": "model-00001-of-00002.safetensors",
591
+ "transformer.h.25.attn.attention.q_proj.scales": "model-00001-of-00002.safetensors",
592
+ "transformer.h.25.attn.attention.out_proj.qweight": "model-00001-of-00002.safetensors",
593
+ "transformer.h.25.attn.attention.out_proj.qzeros": "model-00001-of-00002.safetensors",
594
+ "transformer.h.25.attn.attention.out_proj.scales": "model-00001-of-00002.safetensors",
595
+ "transformer.h.25.ln_2.weight": "model-00001-of-00002.safetensors",
596
+ "transformer.h.25.mlp.c_fc_0.qweight": "model-00001-of-00002.safetensors",
597
+ "transformer.h.25.mlp.c_fc_0.qzeros": "model-00001-of-00002.safetensors",
598
+ "transformer.h.25.mlp.c_fc_0.scales": "model-00001-of-00002.safetensors",
599
+ "transformer.h.25.mlp.c_fc_1.qweight": "model-00001-of-00002.safetensors",
600
+ "transformer.h.25.mlp.c_fc_1.qzeros": "model-00001-of-00002.safetensors",
601
+ "transformer.h.25.mlp.c_fc_1.scales": "model-00001-of-00002.safetensors",
602
+ "transformer.h.25.mlp.c_proj.qweight": "model-00001-of-00002.safetensors",
603
+ "transformer.h.25.mlp.c_proj.qzeros": "model-00001-of-00002.safetensors",
604
+ "transformer.h.25.mlp.c_proj.scales": "model-00001-of-00002.safetensors",
605
+ "transformer.h.26.ln_1.weight": "model-00001-of-00002.safetensors",
606
+ "transformer.h.26.attn.attention.k_proj.qweight": "model-00001-of-00002.safetensors",
607
+ "transformer.h.26.attn.attention.k_proj.qzeros": "model-00001-of-00002.safetensors",
608
+ "transformer.h.26.attn.attention.k_proj.scales": "model-00001-of-00002.safetensors",
609
+ "transformer.h.26.attn.attention.v_proj.qweight": "model-00001-of-00002.safetensors",
610
+ "transformer.h.26.attn.attention.v_proj.qzeros": "model-00001-of-00002.safetensors",
611
+ "transformer.h.26.attn.attention.v_proj.scales": "model-00001-of-00002.safetensors",
612
+ "transformer.h.26.attn.attention.q_proj.qweight": "model-00001-of-00002.safetensors",
613
+ "transformer.h.26.attn.attention.q_proj.qzeros": "model-00001-of-00002.safetensors",
614
+ "transformer.h.26.attn.attention.q_proj.scales": "model-00001-of-00002.safetensors",
615
+ "transformer.h.26.attn.attention.out_proj.qweight": "model-00001-of-00002.safetensors",
616
+ "transformer.h.26.attn.attention.out_proj.qzeros": "model-00001-of-00002.safetensors",
617
+ "transformer.h.26.attn.attention.out_proj.scales": "model-00001-of-00002.safetensors",
618
+ "transformer.h.26.ln_2.weight": "model-00001-of-00002.safetensors",
619
+ "transformer.h.26.mlp.c_fc_0.qweight": "model-00001-of-00002.safetensors",
620
+ "transformer.h.26.mlp.c_fc_0.qzeros": "model-00001-of-00002.safetensors",
621
+ "transformer.h.26.mlp.c_fc_0.scales": "model-00001-of-00002.safetensors",
622
+ "transformer.h.26.mlp.c_fc_1.qweight": "model-00001-of-00002.safetensors",
623
+ "transformer.h.26.mlp.c_fc_1.qzeros": "model-00001-of-00002.safetensors",
624
+ "transformer.h.26.mlp.c_fc_1.scales": "model-00001-of-00002.safetensors",
625
+ "transformer.h.26.mlp.c_proj.qweight": "model-00001-of-00002.safetensors",
626
+ "transformer.h.26.mlp.c_proj.qzeros": "model-00001-of-00002.safetensors",
627
+ "transformer.h.26.mlp.c_proj.scales": "model-00001-of-00002.safetensors",
628
+ "transformer.h.27.ln_1.weight": "model-00001-of-00002.safetensors",
629
+ "transformer.h.27.attn.attention.k_proj.qweight": "model-00001-of-00002.safetensors",
630
+ "transformer.h.27.attn.attention.k_proj.qzeros": "model-00001-of-00002.safetensors",
631
+ "transformer.h.27.attn.attention.k_proj.scales": "model-00001-of-00002.safetensors",
632
+ "transformer.h.27.attn.attention.v_proj.qweight": "model-00001-of-00002.safetensors",
633
+ "transformer.h.27.attn.attention.v_proj.qzeros": "model-00001-of-00002.safetensors",
634
+ "transformer.h.27.attn.attention.v_proj.scales": "model-00001-of-00002.safetensors",
635
+ "transformer.h.27.attn.attention.q_proj.qweight": "model-00001-of-00002.safetensors",
636
+ "transformer.h.27.attn.attention.q_proj.qzeros": "model-00001-of-00002.safetensors",
637
+ "transformer.h.27.attn.attention.q_proj.scales": "model-00001-of-00002.safetensors",
638
+ "transformer.h.27.attn.attention.out_proj.qweight": "model-00001-of-00002.safetensors",
639
+ "transformer.h.27.attn.attention.out_proj.qzeros": "model-00001-of-00002.safetensors",
640
+ "transformer.h.27.attn.attention.out_proj.scales": "model-00001-of-00002.safetensors",
641
+ "transformer.h.27.ln_2.weight": "model-00001-of-00002.safetensors",
642
+ "transformer.h.27.mlp.c_fc_0.qweight": "model-00001-of-00002.safetensors",
643
+ "transformer.h.27.mlp.c_fc_0.qzeros": "model-00001-of-00002.safetensors",
644
+ "transformer.h.27.mlp.c_fc_0.scales": "model-00001-of-00002.safetensors",
645
+ "transformer.h.27.mlp.c_fc_1.qweight": "model-00001-of-00002.safetensors",
646
+ "transformer.h.27.mlp.c_fc_1.qzeros": "model-00001-of-00002.safetensors",
647
+ "transformer.h.27.mlp.c_fc_1.scales": "model-00001-of-00002.safetensors",
648
+ "transformer.h.27.mlp.c_proj.qweight": "model-00001-of-00002.safetensors",
649
+ "transformer.h.27.mlp.c_proj.qzeros": "model-00001-of-00002.safetensors",
650
+ "transformer.h.27.mlp.c_proj.scales": "model-00001-of-00002.safetensors",
651
+ "transformer.h.28.ln_1.weight": "model-00001-of-00002.safetensors",
652
+ "transformer.h.28.attn.attention.k_proj.qweight": "model-00001-of-00002.safetensors",
653
+ "transformer.h.28.attn.attention.k_proj.qzeros": "model-00001-of-00002.safetensors",
654
+ "transformer.h.28.attn.attention.k_proj.scales": "model-00001-of-00002.safetensors",
655
+ "transformer.h.28.attn.attention.v_proj.qweight": "model-00001-of-00002.safetensors",
656
+ "transformer.h.28.attn.attention.v_proj.qzeros": "model-00001-of-00002.safetensors",
657
+ "transformer.h.28.attn.attention.v_proj.scales": "model-00001-of-00002.safetensors",
658
+ "transformer.h.28.attn.attention.q_proj.qweight": "model-00001-of-00002.safetensors",
659
+ "transformer.h.28.attn.attention.q_proj.qzeros": "model-00001-of-00002.safetensors",
660
+ "transformer.h.28.attn.attention.q_proj.scales": "model-00001-of-00002.safetensors",
661
+ "transformer.h.28.attn.attention.out_proj.qweight": "model-00001-of-00002.safetensors",
662
+ "transformer.h.28.attn.attention.out_proj.qzeros": "model-00001-of-00002.safetensors",
663
+ "transformer.h.28.attn.attention.out_proj.scales": "model-00001-of-00002.safetensors",
664
+ "transformer.h.28.ln_2.weight": "model-00001-of-00002.safetensors",
665
+ "transformer.h.28.mlp.c_fc_0.qweight": "model-00001-of-00002.safetensors",
666
+ "transformer.h.28.mlp.c_fc_0.qzeros": "model-00001-of-00002.safetensors",
667
+ "transformer.h.28.mlp.c_fc_0.scales": "model-00001-of-00002.safetensors",
668
+ "transformer.h.28.mlp.c_fc_1.qweight": "model-00001-of-00002.safetensors",
669
+ "transformer.h.28.mlp.c_fc_1.qzeros": "model-00001-of-00002.safetensors",
670
+ "transformer.h.28.mlp.c_fc_1.scales": "model-00001-of-00002.safetensors",
671
+ "transformer.h.28.mlp.c_proj.qweight": "model-00001-of-00002.safetensors",
672
+ "transformer.h.28.mlp.c_proj.qzeros": "model-00001-of-00002.safetensors",
673
+ "transformer.h.28.mlp.c_proj.scales": "model-00001-of-00002.safetensors",
674
+ "transformer.h.29.ln_1.weight": "model-00001-of-00002.safetensors",
675
+ "transformer.h.29.attn.attention.k_proj.qweight": "model-00001-of-00002.safetensors",
676
+ "transformer.h.29.attn.attention.k_proj.qzeros": "model-00001-of-00002.safetensors",
677
+ "transformer.h.29.attn.attention.k_proj.scales": "model-00001-of-00002.safetensors",
678
+ "transformer.h.29.attn.attention.v_proj.qweight": "model-00001-of-00002.safetensors",
679
+ "transformer.h.29.attn.attention.v_proj.qzeros": "model-00001-of-00002.safetensors",
680
+ "transformer.h.29.attn.attention.v_proj.scales": "model-00001-of-00002.safetensors",
681
+ "transformer.h.29.attn.attention.q_proj.qweight": "model-00001-of-00002.safetensors",
682
+ "transformer.h.29.attn.attention.q_proj.qzeros": "model-00001-of-00002.safetensors",
683
+ "transformer.h.29.attn.attention.q_proj.scales": "model-00001-of-00002.safetensors",
684
+ "transformer.h.29.attn.attention.out_proj.qweight": "model-00001-of-00002.safetensors",
685
+ "transformer.h.29.attn.attention.out_proj.qzeros": "model-00001-of-00002.safetensors",
686
+ "transformer.h.29.attn.attention.out_proj.scales": "model-00001-of-00002.safetensors",
687
+ "transformer.h.29.ln_2.weight": "model-00001-of-00002.safetensors",
688
+ "transformer.h.29.mlp.c_fc_0.qweight": "model-00001-of-00002.safetensors",
689
+ "transformer.h.29.mlp.c_fc_0.qzeros": "model-00001-of-00002.safetensors",
690
+ "transformer.h.29.mlp.c_fc_0.scales": "model-00001-of-00002.safetensors",
691
+ "transformer.h.29.mlp.c_fc_1.qweight": "model-00001-of-00002.safetensors",
692
+ "transformer.h.29.mlp.c_fc_1.qzeros": "model-00001-of-00002.safetensors",
693
+ "transformer.h.29.mlp.c_fc_1.scales": "model-00001-of-00002.safetensors",
694
+ "transformer.h.29.mlp.c_proj.qweight": "model-00001-of-00002.safetensors",
695
+ "transformer.h.29.mlp.c_proj.qzeros": "model-00001-of-00002.safetensors",
696
+ "transformer.h.29.mlp.c_proj.scales": "model-00001-of-00002.safetensors",
697
+ "transformer.h.30.ln_1.weight": "model-00001-of-00002.safetensors",
698
+ "transformer.h.30.attn.attention.k_proj.qweight": "model-00001-of-00002.safetensors",
699
+ "transformer.h.30.attn.attention.k_proj.qzeros": "model-00001-of-00002.safetensors",
700
+ "transformer.h.30.attn.attention.k_proj.scales": "model-00001-of-00002.safetensors",
701
+ "transformer.h.30.attn.attention.v_proj.qweight": "model-00001-of-00002.safetensors",
702
+ "transformer.h.30.attn.attention.v_proj.qzeros": "model-00001-of-00002.safetensors",
703
+ "transformer.h.30.attn.attention.v_proj.scales": "model-00001-of-00002.safetensors",
704
+ "transformer.h.30.attn.attention.q_proj.qweight": "model-00001-of-00002.safetensors",
705
+ "transformer.h.30.attn.attention.q_proj.qzeros": "model-00001-of-00002.safetensors",
706
+ "transformer.h.30.attn.attention.q_proj.scales": "model-00001-of-00002.safetensors",
707
+ "transformer.h.30.attn.attention.out_proj.qweight": "model-00001-of-00002.safetensors",
708
+ "transformer.h.30.attn.attention.out_proj.qzeros": "model-00001-of-00002.safetensors",
709
+ "transformer.h.30.attn.attention.out_proj.scales": "model-00001-of-00002.safetensors",
710
+ "transformer.h.30.ln_2.weight": "model-00001-of-00002.safetensors",
711
+ "transformer.h.30.mlp.c_fc_0.qweight": "model-00001-of-00002.safetensors",
712
+ "transformer.h.30.mlp.c_fc_0.qzeros": "model-00001-of-00002.safetensors",
713
+ "transformer.h.30.mlp.c_fc_0.scales": "model-00001-of-00002.safetensors",
714
+ "transformer.h.30.mlp.c_fc_1.qweight": "model-00001-of-00002.safetensors",
715
+ "transformer.h.30.mlp.c_fc_1.qzeros": "model-00001-of-00002.safetensors",
716
+ "transformer.h.30.mlp.c_fc_1.scales": "model-00001-of-00002.safetensors",
717
+ "transformer.h.30.mlp.c_proj.qweight": "model-00001-of-00002.safetensors",
718
+ "transformer.h.30.mlp.c_proj.qzeros": "model-00001-of-00002.safetensors",
719
+ "transformer.h.30.mlp.c_proj.scales": "model-00001-of-00002.safetensors",
720
+ "transformer.h.31.ln_1.weight": "model-00001-of-00002.safetensors",
721
+ "transformer.h.31.attn.attention.k_proj.qweight": "model-00001-of-00002.safetensors",
722
+ "transformer.h.31.attn.attention.k_proj.qzeros": "model-00001-of-00002.safetensors",
723
+ "transformer.h.31.attn.attention.k_proj.scales": "model-00001-of-00002.safetensors",
724
+ "transformer.h.31.attn.attention.v_proj.qweight": "model-00001-of-00002.safetensors",
725
+ "transformer.h.31.attn.attention.v_proj.qzeros": "model-00001-of-00002.safetensors",
726
+ "transformer.h.31.attn.attention.v_proj.scales": "model-00001-of-00002.safetensors",
727
+ "transformer.h.31.attn.attention.q_proj.qweight": "model-00001-of-00002.safetensors",
728
+ "transformer.h.31.attn.attention.q_proj.qzeros": "model-00001-of-00002.safetensors",
729
+ "transformer.h.31.attn.attention.q_proj.scales": "model-00001-of-00002.safetensors",
730
+ "transformer.h.31.attn.attention.out_proj.qweight": "model-00001-of-00002.safetensors",
731
+ "transformer.h.31.attn.attention.out_proj.qzeros": "model-00001-of-00002.safetensors",
732
+ "transformer.h.31.attn.attention.out_proj.scales": "model-00001-of-00002.safetensors",
733
+ "transformer.h.31.ln_2.weight": "model-00001-of-00002.safetensors",
734
+ "transformer.h.31.mlp.c_fc_0.qweight": "model-00001-of-00002.safetensors",
735
+ "transformer.h.31.mlp.c_fc_0.qzeros": "model-00001-of-00002.safetensors",
736
+ "transformer.h.31.mlp.c_fc_0.scales": "model-00001-of-00002.safetensors",
737
+ "transformer.h.31.mlp.c_fc_1.qweight": "model-00001-of-00002.safetensors",
738
+ "transformer.h.31.mlp.c_fc_1.qzeros": "model-00001-of-00002.safetensors",
739
+ "transformer.h.31.mlp.c_fc_1.scales": "model-00001-of-00002.safetensors",
740
+ "transformer.h.31.mlp.c_proj.qweight": "model-00001-of-00002.safetensors",
741
+ "transformer.h.31.mlp.c_proj.qzeros": "model-00001-of-00002.safetensors",
742
+ "transformer.h.31.mlp.c_proj.scales": "model-00001-of-00002.safetensors",
743
+ "transformer.ln_f.weight": "model-00001-of-00002.safetensors",
744
+ "lm_head.weight": "model-00002-of-00002.safetensors"
745
+ }
746
+ }
special_tokens_map.json ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "[BOS]",
4
+ "lstrip": false,
5
+ "normalized": false,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "eos_token": {
10
+ "content": "[|endofturn|]",
11
+ "lstrip": false,
12
+ "normalized": false,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "pad_token": {
17
+ "content": "[PAD]",
18
+ "lstrip": false,
19
+ "normalized": false,
20
+ "rstrip": false,
21
+ "single_word": false
22
+ },
23
+ "unk_token": {
24
+ "content": "[UNK]",
25
+ "lstrip": false,
26
+ "normalized": false,
27
+ "rstrip": false,
28
+ "single_word": false
29
+ }
30
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,3231 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": true,
3
+ "add_eos_token": true,
4
+ "add_prefix_space": false,
5
+ "added_tokens_decoder": {
6
+ "0": {
7
+ "content": "[PAD]",
8
+ "lstrip": false,
9
+ "normalized": false,
10
+ "rstrip": false,
11
+ "single_word": false,
12
+ "special": true
13
+ },
14
+ "1": {
15
+ "content": "[BOS]",
16
+ "lstrip": false,
17
+ "normalized": false,
18
+ "rstrip": false,
19
+ "single_word": false,
20
+ "special": true
21
+ },
22
+ "2": {
23
+ "content": "[EOS]",
24
+ "lstrip": false,
25
+ "normalized": false,
26
+ "rstrip": false,
27
+ "single_word": false,
28
+ "special": true
29
+ },
30
+ "3": {
31
+ "content": "[UNK]",
32
+ "lstrip": false,
33
+ "normalized": false,
34
+ "rstrip": false,
35
+ "single_word": false,
36
+ "special": true
37
+ },
38
+ "4": {
39
+ "content": " ",
40
+ "lstrip": false,
41
+ "normalized": false,
42
+ "rstrip": false,
43
+ "single_word": false,
44
+ "special": false
45
+ },
46
+ "5": {
47
+ "content": " ",
48
+ "lstrip": false,
49
+ "normalized": false,
50
+ "rstrip": false,
51
+ "single_word": false,
52
+ "special": false
53
+ },
54
+ "6": {
55
+ "content": " ",
56
+ "lstrip": false,
57
+ "normalized": false,
58
+ "rstrip": false,
59
+ "single_word": false,
60
+ "special": false
61
+ },
62
+ "7": {
63
+ "content": " ",
64
+ "lstrip": false,
65
+ "normalized": false,
66
+ "rstrip": false,
67
+ "single_word": false,
68
+ "special": false
69
+ },
70
+ "8": {
71
+ "content": " ",
72
+ "lstrip": false,
73
+ "normalized": false,
74
+ "rstrip": false,
75
+ "single_word": false,
76
+ "special": false
77
+ },
78
+ "9": {
79
+ "content": " ",
80
+ "lstrip": false,
81
+ "normalized": false,
82
+ "rstrip": false,
83
+ "single_word": false,
84
+ "special": false
85
+ },
86
+ "10": {
87
+ "content": " ",
88
+ "lstrip": false,
89
+ "normalized": false,
90
+ "rstrip": false,
91
+ "single_word": false,
92
+ "special": false
93
+ },
94
+ "11": {
95
+ "content": " ",
96
+ "lstrip": false,
97
+ "normalized": false,
98
+ "rstrip": false,
99
+ "single_word": false,
100
+ "special": false
101
+ },
102
+ "12": {
103
+ "content": " ",
104
+ "lstrip": false,
105
+ "normalized": false,
106
+ "rstrip": false,
107
+ "single_word": false,
108
+ "special": false
109
+ },
110
+ "13": {
111
+ "content": " ",
112
+ "lstrip": false,
113
+ "normalized": false,
114
+ "rstrip": false,
115
+ "single_word": false,
116
+ "special": false
117
+ },
118
+ "14": {
119
+ "content": " ",
120
+ "lstrip": false,
121
+ "normalized": false,
122
+ "rstrip": false,
123
+ "single_word": false,
124
+ "special": false
125
+ },
126
+ "15": {
127
+ "content": " ",
128
+ "lstrip": false,
129
+ "normalized": false,
130
+ "rstrip": false,
131
+ "single_word": false,
132
+ "special": false
133
+ },
134
+ "16": {
135
+ "content": " ",
136
+ "lstrip": false,
137
+ "normalized": false,
138
+ "rstrip": false,
139
+ "single_word": false,
140
+ "special": false
141
+ },
142
+ "17": {
143
+ "content": " ",
144
+ "lstrip": false,
145
+ "normalized": false,
146
+ "rstrip": false,
147
+ "single_word": false,
148
+ "special": false
149
+ },
150
+ "18": {
151
+ "content": " ",
152
+ "lstrip": false,
153
+ "normalized": false,
154
+ "rstrip": false,
155
+ "single_word": false,
156
+ "special": false
157
+ },
158
+ "19": {
159
+ "content": " ",
160
+ "lstrip": false,
161
+ "normalized": false,
162
+ "rstrip": false,
163
+ "single_word": false,
164
+ "special": false
165
+ },
166
+ "20": {
167
+ "content": " ",
168
+ "lstrip": false,
169
+ "normalized": false,
170
+ "rstrip": false,
171
+ "single_word": false,
172
+ "special": false
173
+ },
174
+ "21": {
175
+ "content": " ",
176
+ "lstrip": false,
177
+ "normalized": false,
178
+ "rstrip": false,
179
+ "single_word": false,
180
+ "special": false
181
+ },
182
+ "22": {
183
+ "content": " ",
184
+ "lstrip": false,
185
+ "normalized": false,
186
+ "rstrip": false,
187
+ "single_word": false,
188
+ "special": false
189
+ },
190
+ "23": {
191
+ "content": " ",
192
+ "lstrip": false,
193
+ "normalized": false,
194
+ "rstrip": false,
195
+ "single_word": false,
196
+ "special": false
197
+ },
198
+ "24": {
199
+ "content": " ",
200
+ "lstrip": false,
201
+ "normalized": false,
202
+ "rstrip": false,
203
+ "single_word": false,
204
+ "special": false
205
+ },
206
+ "25": {
207
+ "content": " ",
208
+ "lstrip": false,
209
+ "normalized": false,
210
+ "rstrip": false,
211
+ "single_word": false,
212
+ "special": false
213
+ },
214
+ "26": {
215
+ "content": " ",
216
+ "lstrip": false,
217
+ "normalized": false,
218
+ "rstrip": false,
219
+ "single_word": false,
220
+ "special": false
221
+ },
222
+ "27": {
223
+ "content": " ",
224
+ "lstrip": false,
225
+ "normalized": false,
226
+ "rstrip": false,
227
+ "single_word": false,
228
+ "special": false
229
+ },
230
+ "28": {
231
+ "content": " ",
232
+ "lstrip": false,
233
+ "normalized": false,
234
+ "rstrip": false,
235
+ "single_word": false,
236
+ "special": false
237
+ },
238
+ "29": {
239
+ "content": " ",
240
+ "lstrip": false,
241
+ "normalized": false,
242
+ "rstrip": false,
243
+ "single_word": false,
244
+ "special": false
245
+ },
246
+ "30": {
247
+ "content": " ",
248
+ "lstrip": false,
249
+ "normalized": false,
250
+ "rstrip": false,
251
+ "single_word": false,
252
+ "special": false
253
+ },
254
+ "31": {
255
+ "content": " ",
256
+ "lstrip": false,
257
+ "normalized": false,
258
+ "rstrip": false,
259
+ "single_word": false,
260
+ "special": false
261
+ },
262
+ "32": {
263
+ "content": " ",
264
+ "lstrip": false,
265
+ "normalized": false,
266
+ "rstrip": false,
267
+ "single_word": false,
268
+ "special": false
269
+ },
270
+ "33": {
271
+ "content": " ",
272
+ "lstrip": false,
273
+ "normalized": false,
274
+ "rstrip": false,
275
+ "single_word": false,
276
+ "special": false
277
+ },
278
+ "34": {
279
+ "content": "\t\t\t\t\t\t\t\t\t",
280
+ "lstrip": false,
281
+ "normalized": false,
282
+ "rstrip": false,
283
+ "single_word": false,
284
+ "special": false
285
+ },
286
+ "35": {
287
+ "content": "\t\t\t\t\t\t\t\t",
288
+ "lstrip": false,
289
+ "normalized": false,
290
+ "rstrip": false,
291
+ "single_word": false,
292
+ "special": false
293
+ },
294
+ "36": {
295
+ "content": "\t\t\t\t\t\t\t",
296
+ "lstrip": false,
297
+ "normalized": false,
298
+ "rstrip": false,
299
+ "single_word": false,
300
+ "special": false
301
+ },
302
+ "37": {
303
+ "content": "\t\t\t\t\t\t",
304
+ "lstrip": false,
305
+ "normalized": false,
306
+ "rstrip": false,
307
+ "single_word": false,
308
+ "special": false
309
+ },
310
+ "38": {
311
+ "content": "\t\t\t\t\t",
312
+ "lstrip": false,
313
+ "normalized": false,
314
+ "rstrip": false,
315
+ "single_word": false,
316
+ "special": false
317
+ },
318
+ "39": {
319
+ "content": "\t\t\t\t",
320
+ "lstrip": false,
321
+ "normalized": false,
322
+ "rstrip": false,
323
+ "single_word": false,
324
+ "special": false
325
+ },
326
+ "40": {
327
+ "content": "\t\t\t",
328
+ "lstrip": false,
329
+ "normalized": false,
330
+ "rstrip": false,
331
+ "single_word": false,
332
+ "special": false
333
+ },
334
+ "41": {
335
+ "content": "\t\t",
336
+ "lstrip": false,
337
+ "normalized": false,
338
+ "rstrip": false,
339
+ "single_word": false,
340
+ "special": false
341
+ },
342
+ "42": {
343
+ "content": "<|endoftext|>",
344
+ "lstrip": false,
345
+ "normalized": false,
346
+ "rstrip": false,
347
+ "single_word": false,
348
+ "special": true
349
+ },
350
+ "43": {
351
+ "content": "<|c|>",
352
+ "lstrip": false,
353
+ "normalized": false,
354
+ "rstrip": false,
355
+ "single_word": false,
356
+ "special": true
357
+ },
358
+ "44": {
359
+ "content": "<|c++|>",
360
+ "lstrip": false,
361
+ "normalized": false,
362
+ "rstrip": false,
363
+ "single_word": false,
364
+ "special": true
365
+ },
366
+ "45": {
367
+ "content": "<|python|>",
368
+ "lstrip": false,
369
+ "normalized": false,
370
+ "rstrip": false,
371
+ "single_word": false,
372
+ "special": true
373
+ },
374
+ "46": {
375
+ "content": "<|javascript|>",
376
+ "lstrip": false,
377
+ "normalized": false,
378
+ "rstrip": false,
379
+ "single_word": false,
380
+ "special": true
381
+ },
382
+ "47": {
383
+ "content": "<|markdown|>",
384
+ "lstrip": false,
385
+ "normalized": false,
386
+ "rstrip": false,
387
+ "single_word": false,
388
+ "special": true
389
+ },
390
+ "48": {
391
+ "content": "<|html|>",
392
+ "lstrip": false,
393
+ "normalized": false,
394
+ "rstrip": false,
395
+ "single_word": false,
396
+ "special": true
397
+ },
398
+ "49": {
399
+ "content": "<|css|>",
400
+ "lstrip": false,
401
+ "normalized": false,
402
+ "rstrip": false,
403
+ "single_word": false,
404
+ "special": true
405
+ },
406
+ "50": {
407
+ "content": "<|vue|>",
408
+ "lstrip": false,
409
+ "normalized": false,
410
+ "rstrip": false,
411
+ "single_word": false,
412
+ "special": true
413
+ },
414
+ "51": {
415
+ "content": "<|java|>",
416
+ "lstrip": false,
417
+ "normalized": false,
418
+ "rstrip": false,
419
+ "single_word": false,
420
+ "special": true
421
+ },
422
+ "52": {
423
+ "content": "PI:URL",
424
+ "lstrip": false,
425
+ "normalized": false,
426
+ "rstrip": false,
427
+ "single_word": false,
428
+ "special": true
429
+ },
430
+ "53": {
431
+ "content": "PI:EMAIL",
432
+ "lstrip": false,
433
+ "normalized": false,
434
+ "rstrip": false,
435
+ "single_word": false,
436
+ "special": true
437
+ },
438
+ "54": {
439
+ "content": "PI:ACCOUNT_NUM",
440
+ "lstrip": false,
441
+ "normalized": false,
442
+ "rstrip": false,
443
+ "single_word": false,
444
+ "special": true
445
+ },
446
+ "55": {
447
+ "content": "PI:PHONE_NUM",
448
+ "lstrip": false,
449
+ "normalized": false,
450
+ "rstrip": false,
451
+ "single_word": false,
452
+ "special": true
453
+ },
454
+ "56": {
455
+ "content": "PI:BUSINESS_NUM",
456
+ "lstrip": false,
457
+ "normalized": false,
458
+ "rstrip": false,
459
+ "single_word": false,
460
+ "special": true
461
+ },
462
+ "57": {
463
+ "content": "PI:ANNON",
464
+ "lstrip": false,
465
+ "normalized": false,
466
+ "rstrip": false,
467
+ "single_word": false,
468
+ "special": true
469
+ },
470
+ "58": {
471
+ "content": "PI:KEY",
472
+ "lstrip": false,
473
+ "normalized": false,
474
+ "rstrip": false,
475
+ "single_word": false,
476
+ "special": true
477
+ },
478
+ "59": {
479
+ "content": "PI:ID",
480
+ "lstrip": false,
481
+ "normalized": false,
482
+ "rstrip": false,
483
+ "single_word": false,
484
+ "special": true
485
+ },
486
+ "60": {
487
+ "content": "PI:IP_ADDRESS",
488
+ "lstrip": false,
489
+ "normalized": false,
490
+ "rstrip": false,
491
+ "single_word": false,
492
+ "special": true
493
+ },
494
+ "61": {
495
+ "content": "PI:USER",
496
+ "lstrip": false,
497
+ "normalized": false,
498
+ "rstrip": false,
499
+ "single_word": false,
500
+ "special": true
501
+ },
502
+ "62": {
503
+ "content": "[unused0]",
504
+ "lstrip": false,
505
+ "normalized": false,
506
+ "rstrip": false,
507
+ "single_word": false,
508
+ "special": true
509
+ },
510
+ "63": {
511
+ "content": "[unused1]",
512
+ "lstrip": false,
513
+ "normalized": false,
514
+ "rstrip": false,
515
+ "single_word": false,
516
+ "special": true
517
+ },
518
+ "64": {
519
+ "content": "[unused2]",
520
+ "lstrip": false,
521
+ "normalized": false,
522
+ "rstrip": false,
523
+ "single_word": false,
524
+ "special": true
525
+ },
526
+ "65": {
527
+ "content": "[unused3]",
528
+ "lstrip": false,
529
+ "normalized": false,
530
+ "rstrip": false,
531
+ "single_word": false,
532
+ "special": true
533
+ },
534
+ "66": {
535
+ "content": "[unused4]",
536
+ "lstrip": false,
537
+ "normalized": false,
538
+ "rstrip": false,
539
+ "single_word": false,
540
+ "special": true
541
+ },
542
+ "67": {
543
+ "content": "[unused5]",
544
+ "lstrip": false,
545
+ "normalized": false,
546
+ "rstrip": false,
547
+ "single_word": false,
548
+ "special": true
549
+ },
550
+ "68": {
551
+ "content": "[unused6]",
552
+ "lstrip": false,
553
+ "normalized": false,
554
+ "rstrip": false,
555
+ "single_word": false,
556
+ "special": true
557
+ },
558
+ "69": {
559
+ "content": "[unused7]",
560
+ "lstrip": false,
561
+ "normalized": false,
562
+ "rstrip": false,
563
+ "single_word": false,
564
+ "special": true
565
+ },
566
+ "70": {
567
+ "content": "[unused8]",
568
+ "lstrip": false,
569
+ "normalized": false,
570
+ "rstrip": false,
571
+ "single_word": false,
572
+ "special": true
573
+ },
574
+ "71": {
575
+ "content": "[unused9]",
576
+ "lstrip": false,
577
+ "normalized": false,
578
+ "rstrip": false,
579
+ "single_word": false,
580
+ "special": true
581
+ },
582
+ "72": {
583
+ "content": "[unused10]",
584
+ "lstrip": false,
585
+ "normalized": false,
586
+ "rstrip": false,
587
+ "single_word": false,
588
+ "special": true
589
+ },
590
+ "73": {
591
+ "content": "[unused11]",
592
+ "lstrip": false,
593
+ "normalized": false,
594
+ "rstrip": false,
595
+ "single_word": false,
596
+ "special": true
597
+ },
598
+ "74": {
599
+ "content": "[unused12]",
600
+ "lstrip": false,
601
+ "normalized": false,
602
+ "rstrip": false,
603
+ "single_word": false,
604
+ "special": true
605
+ },
606
+ "75": {
607
+ "content": "[unused13]",
608
+ "lstrip": false,
609
+ "normalized": false,
610
+ "rstrip": false,
611
+ "single_word": false,
612
+ "special": true
613
+ },
614
+ "76": {
615
+ "content": "[unused14]",
616
+ "lstrip": false,
617
+ "normalized": false,
618
+ "rstrip": false,
619
+ "single_word": false,
620
+ "special": true
621
+ },
622
+ "77": {
623
+ "content": "[unused15]",
624
+ "lstrip": false,
625
+ "normalized": false,
626
+ "rstrip": false,
627
+ "single_word": false,
628
+ "special": true
629
+ },
630
+ "78": {
631
+ "content": "[unused16]",
632
+ "lstrip": false,
633
+ "normalized": false,
634
+ "rstrip": false,
635
+ "single_word": false,
636
+ "special": true
637
+ },
638
+ "79": {
639
+ "content": "[unused17]",
640
+ "lstrip": false,
641
+ "normalized": false,
642
+ "rstrip": false,
643
+ "single_word": false,
644
+ "special": true
645
+ },
646
+ "80": {
647
+ "content": "[unused18]",
648
+ "lstrip": false,
649
+ "normalized": false,
650
+ "rstrip": false,
651
+ "single_word": false,
652
+ "special": true
653
+ },
654
+ "81": {
655
+ "content": "[unused19]",
656
+ "lstrip": false,
657
+ "normalized": false,
658
+ "rstrip": false,
659
+ "single_word": false,
660
+ "special": true
661
+ },
662
+ "82": {
663
+ "content": "[unused20]",
664
+ "lstrip": false,
665
+ "normalized": false,
666
+ "rstrip": false,
667
+ "single_word": false,
668
+ "special": true
669
+ },
670
+ "83": {
671
+ "content": "[unused21]",
672
+ "lstrip": false,
673
+ "normalized": false,
674
+ "rstrip": false,
675
+ "single_word": false,
676
+ "special": true
677
+ },
678
+ "84": {
679
+ "content": "[unused22]",
680
+ "lstrip": false,
681
+ "normalized": false,
682
+ "rstrip": false,
683
+ "single_word": false,
684
+ "special": true
685
+ },
686
+ "85": {
687
+ "content": "[unused23]",
688
+ "lstrip": false,
689
+ "normalized": false,
690
+ "rstrip": false,
691
+ "single_word": false,
692
+ "special": true
693
+ },
694
+ "86": {
695
+ "content": "[unused24]",
696
+ "lstrip": false,
697
+ "normalized": false,
698
+ "rstrip": false,
699
+ "single_word": false,
700
+ "special": true
701
+ },
702
+ "87": {
703
+ "content": "[unused25]",
704
+ "lstrip": false,
705
+ "normalized": false,
706
+ "rstrip": false,
707
+ "single_word": false,
708
+ "special": true
709
+ },
710
+ "88": {
711
+ "content": "[unused26]",
712
+ "lstrip": false,
713
+ "normalized": false,
714
+ "rstrip": false,
715
+ "single_word": false,
716
+ "special": true
717
+ },
718
+ "89": {
719
+ "content": "[unused27]",
720
+ "lstrip": false,
721
+ "normalized": false,
722
+ "rstrip": false,
723
+ "single_word": false,
724
+ "special": true
725
+ },
726
+ "90": {
727
+ "content": "[unused28]",
728
+ "lstrip": false,
729
+ "normalized": false,
730
+ "rstrip": false,
731
+ "single_word": false,
732
+ "special": true
733
+ },
734
+ "91": {
735
+ "content": "[unused29]",
736
+ "lstrip": false,
737
+ "normalized": false,
738
+ "rstrip": false,
739
+ "single_word": false,
740
+ "special": true
741
+ },
742
+ "92": {
743
+ "content": "[unused30]",
744
+ "lstrip": false,
745
+ "normalized": false,
746
+ "rstrip": false,
747
+ "single_word": false,
748
+ "special": true
749
+ },
750
+ "93": {
751
+ "content": "[unused31]",
752
+ "lstrip": false,
753
+ "normalized": false,
754
+ "rstrip": false,
755
+ "single_word": false,
756
+ "special": true
757
+ },
758
+ "94": {
759
+ "content": "[unused32]",
760
+ "lstrip": false,
761
+ "normalized": false,
762
+ "rstrip": false,
763
+ "single_word": false,
764
+ "special": true
765
+ },
766
+ "95": {
767
+ "content": "[unused33]",
768
+ "lstrip": false,
769
+ "normalized": false,
770
+ "rstrip": false,
771
+ "single_word": false,
772
+ "special": true
773
+ },
774
+ "96": {
775
+ "content": "[unused34]",
776
+ "lstrip": false,
777
+ "normalized": false,
778
+ "rstrip": false,
779
+ "single_word": false,
780
+ "special": true
781
+ },
782
+ "97": {
783
+ "content": "[unused35]",
784
+ "lstrip": false,
785
+ "normalized": false,
786
+ "rstrip": false,
787
+ "single_word": false,
788
+ "special": true
789
+ },
790
+ "98": {
791
+ "content": "[unused36]",
792
+ "lstrip": false,
793
+ "normalized": false,
794
+ "rstrip": false,
795
+ "single_word": false,
796
+ "special": true
797
+ },
798
+ "99": {
799
+ "content": "[unused37]",
800
+ "lstrip": false,
801
+ "normalized": false,
802
+ "rstrip": false,
803
+ "single_word": false,
804
+ "special": true
805
+ },
806
+ "100": {
807
+ "content": "[unused38]",
808
+ "lstrip": false,
809
+ "normalized": false,
810
+ "rstrip": false,
811
+ "single_word": false,
812
+ "special": true
813
+ },
814
+ "101": {
815
+ "content": "[unused39]",
816
+ "lstrip": false,
817
+ "normalized": false,
818
+ "rstrip": false,
819
+ "single_word": false,
820
+ "special": true
821
+ },
822
+ "102": {
823
+ "content": "[unused40]",
824
+ "lstrip": false,
825
+ "normalized": false,
826
+ "rstrip": false,
827
+ "single_word": false,
828
+ "special": true
829
+ },
830
+ "103": {
831
+ "content": "[unused41]",
832
+ "lstrip": false,
833
+ "normalized": false,
834
+ "rstrip": false,
835
+ "single_word": false,
836
+ "special": true
837
+ },
838
+ "104": {
839
+ "content": "[unused42]",
840
+ "lstrip": false,
841
+ "normalized": false,
842
+ "rstrip": false,
843
+ "single_word": false,
844
+ "special": true
845
+ },
846
+ "105": {
847
+ "content": "[unused43]",
848
+ "lstrip": false,
849
+ "normalized": false,
850
+ "rstrip": false,
851
+ "single_word": false,
852
+ "special": true
853
+ },
854
+ "106": {
855
+ "content": "[unused44]",
856
+ "lstrip": false,
857
+ "normalized": false,
858
+ "rstrip": false,
859
+ "single_word": false,
860
+ "special": true
861
+ },
862
+ "107": {
863
+ "content": "[unused45]",
864
+ "lstrip": false,
865
+ "normalized": false,
866
+ "rstrip": false,
867
+ "single_word": false,
868
+ "special": true
869
+ },
870
+ "108": {
871
+ "content": "[unused46]",
872
+ "lstrip": false,
873
+ "normalized": false,
874
+ "rstrip": false,
875
+ "single_word": false,
876
+ "special": true
877
+ },
878
+ "109": {
879
+ "content": "[unused47]",
880
+ "lstrip": false,
881
+ "normalized": false,
882
+ "rstrip": false,
883
+ "single_word": false,
884
+ "special": true
885
+ },
886
+ "110": {
887
+ "content": "[unused48]",
888
+ "lstrip": false,
889
+ "normalized": false,
890
+ "rstrip": false,
891
+ "single_word": false,
892
+ "special": true
893
+ },
894
+ "111": {
895
+ "content": "[unused49]",
896
+ "lstrip": false,
897
+ "normalized": false,
898
+ "rstrip": false,
899
+ "single_word": false,
900
+ "special": true
901
+ },
902
+ "112": {
903
+ "content": "[unused50]",
904
+ "lstrip": false,
905
+ "normalized": false,
906
+ "rstrip": false,
907
+ "single_word": false,
908
+ "special": true
909
+ },
910
+ "113": {
911
+ "content": "[unused51]",
912
+ "lstrip": false,
913
+ "normalized": false,
914
+ "rstrip": false,
915
+ "single_word": false,
916
+ "special": true
917
+ },
918
+ "114": {
919
+ "content": "[unused52]",
920
+ "lstrip": false,
921
+ "normalized": false,
922
+ "rstrip": false,
923
+ "single_word": false,
924
+ "special": true
925
+ },
926
+ "115": {
927
+ "content": "[unused53]",
928
+ "lstrip": false,
929
+ "normalized": false,
930
+ "rstrip": false,
931
+ "single_word": false,
932
+ "special": true
933
+ },
934
+ "116": {
935
+ "content": "[unused54]",
936
+ "lstrip": false,
937
+ "normalized": false,
938
+ "rstrip": false,
939
+ "single_word": false,
940
+ "special": true
941
+ },
942
+ "117": {
943
+ "content": "[unused55]",
944
+ "lstrip": false,
945
+ "normalized": false,
946
+ "rstrip": false,
947
+ "single_word": false,
948
+ "special": true
949
+ },
950
+ "118": {
951
+ "content": "[unused56]",
952
+ "lstrip": false,
953
+ "normalized": false,
954
+ "rstrip": false,
955
+ "single_word": false,
956
+ "special": true
957
+ },
958
+ "119": {
959
+ "content": "[unused57]",
960
+ "lstrip": false,
961
+ "normalized": false,
962
+ "rstrip": false,
963
+ "single_word": false,
964
+ "special": true
965
+ },
966
+ "120": {
967
+ "content": "[unused58]",
968
+ "lstrip": false,
969
+ "normalized": false,
970
+ "rstrip": false,
971
+ "single_word": false,
972
+ "special": true
973
+ },
974
+ "121": {
975
+ "content": "[unused59]",
976
+ "lstrip": false,
977
+ "normalized": false,
978
+ "rstrip": false,
979
+ "single_word": false,
980
+ "special": true
981
+ },
982
+ "122": {
983
+ "content": "[unused60]",
984
+ "lstrip": false,
985
+ "normalized": false,
986
+ "rstrip": false,
987
+ "single_word": false,
988
+ "special": true
989
+ },
990
+ "123": {
991
+ "content": "[unused61]",
992
+ "lstrip": false,
993
+ "normalized": false,
994
+ "rstrip": false,
995
+ "single_word": false,
996
+ "special": true
997
+ },
998
+ "124": {
999
+ "content": "[unused62]",
1000
+ "lstrip": false,
1001
+ "normalized": false,
1002
+ "rstrip": false,
1003
+ "single_word": false,
1004
+ "special": true
1005
+ },
1006
+ "125": {
1007
+ "content": "[unused63]",
1008
+ "lstrip": false,
1009
+ "normalized": false,
1010
+ "rstrip": false,
1011
+ "single_word": false,
1012
+ "special": true
1013
+ },
1014
+ "126": {
1015
+ "content": "[unused64]",
1016
+ "lstrip": false,
1017
+ "normalized": false,
1018
+ "rstrip": false,
1019
+ "single_word": false,
1020
+ "special": true
1021
+ },
1022
+ "127": {
1023
+ "content": "[unused65]",
1024
+ "lstrip": false,
1025
+ "normalized": false,
1026
+ "rstrip": false,
1027
+ "single_word": false,
1028
+ "special": true
1029
+ },
1030
+ "128": {
1031
+ "content": "[unused66]",
1032
+ "lstrip": false,
1033
+ "normalized": false,
1034
+ "rstrip": false,
1035
+ "single_word": false,
1036
+ "special": true
1037
+ },
1038
+ "129": {
1039
+ "content": "[unused67]",
1040
+ "lstrip": false,
1041
+ "normalized": false,
1042
+ "rstrip": false,
1043
+ "single_word": false,
1044
+ "special": true
1045
+ },
1046
+ "130": {
1047
+ "content": "[unused68]",
1048
+ "lstrip": false,
1049
+ "normalized": false,
1050
+ "rstrip": false,
1051
+ "single_word": false,
1052
+ "special": true
1053
+ },
1054
+ "131": {
1055
+ "content": "[unused69]",
1056
+ "lstrip": false,
1057
+ "normalized": false,
1058
+ "rstrip": false,
1059
+ "single_word": false,
1060
+ "special": true
1061
+ },
1062
+ "132": {
1063
+ "content": "[unused70]",
1064
+ "lstrip": false,
1065
+ "normalized": false,
1066
+ "rstrip": false,
1067
+ "single_word": false,
1068
+ "special": true
1069
+ },
1070
+ "133": {
1071
+ "content": "[unused71]",
1072
+ "lstrip": false,
1073
+ "normalized": false,
1074
+ "rstrip": false,
1075
+ "single_word": false,
1076
+ "special": true
1077
+ },
1078
+ "134": {
1079
+ "content": "[unused72]",
1080
+ "lstrip": false,
1081
+ "normalized": false,
1082
+ "rstrip": false,
1083
+ "single_word": false,
1084
+ "special": true
1085
+ },
1086
+ "135": {
1087
+ "content": "[unused73]",
1088
+ "lstrip": false,
1089
+ "normalized": false,
1090
+ "rstrip": false,
1091
+ "single_word": false,
1092
+ "special": true
1093
+ },
1094
+ "136": {
1095
+ "content": "[unused74]",
1096
+ "lstrip": false,
1097
+ "normalized": false,
1098
+ "rstrip": false,
1099
+ "single_word": false,
1100
+ "special": true
1101
+ },
1102
+ "137": {
1103
+ "content": "[unused75]",
1104
+ "lstrip": false,
1105
+ "normalized": false,
1106
+ "rstrip": false,
1107
+ "single_word": false,
1108
+ "special": true
1109
+ },
1110
+ "138": {
1111
+ "content": "[unused76]",
1112
+ "lstrip": false,
1113
+ "normalized": false,
1114
+ "rstrip": false,
1115
+ "single_word": false,
1116
+ "special": true
1117
+ },
1118
+ "139": {
1119
+ "content": "[unused77]",
1120
+ "lstrip": false,
1121
+ "normalized": false,
1122
+ "rstrip": false,
1123
+ "single_word": false,
1124
+ "special": true
1125
+ },
1126
+ "140": {
1127
+ "content": "[unused78]",
1128
+ "lstrip": false,
1129
+ "normalized": false,
1130
+ "rstrip": false,
1131
+ "single_word": false,
1132
+ "special": true
1133
+ },
1134
+ "141": {
1135
+ "content": "[unused79]",
1136
+ "lstrip": false,
1137
+ "normalized": false,
1138
+ "rstrip": false,
1139
+ "single_word": false,
1140
+ "special": true
1141
+ },
1142
+ "142": {
1143
+ "content": "[unused80]",
1144
+ "lstrip": false,
1145
+ "normalized": false,
1146
+ "rstrip": false,
1147
+ "single_word": false,
1148
+ "special": true
1149
+ },
1150
+ "143": {
1151
+ "content": "[unused81]",
1152
+ "lstrip": false,
1153
+ "normalized": false,
1154
+ "rstrip": false,
1155
+ "single_word": false,
1156
+ "special": true
1157
+ },
1158
+ "144": {
1159
+ "content": "[unused82]",
1160
+ "lstrip": false,
1161
+ "normalized": false,
1162
+ "rstrip": false,
1163
+ "single_word": false,
1164
+ "special": true
1165
+ },
1166
+ "145": {
1167
+ "content": "[unused83]",
1168
+ "lstrip": false,
1169
+ "normalized": false,
1170
+ "rstrip": false,
1171
+ "single_word": false,
1172
+ "special": true
1173
+ },
1174
+ "146": {
1175
+ "content": "[unused84]",
1176
+ "lstrip": false,
1177
+ "normalized": false,
1178
+ "rstrip": false,
1179
+ "single_word": false,
1180
+ "special": true
1181
+ },
1182
+ "147": {
1183
+ "content": "[unused85]",
1184
+ "lstrip": false,
1185
+ "normalized": false,
1186
+ "rstrip": false,
1187
+ "single_word": false,
1188
+ "special": true
1189
+ },
1190
+ "148": {
1191
+ "content": "[unused86]",
1192
+ "lstrip": false,
1193
+ "normalized": false,
1194
+ "rstrip": false,
1195
+ "single_word": false,
1196
+ "special": true
1197
+ },
1198
+ "149": {
1199
+ "content": "[unused87]",
1200
+ "lstrip": false,
1201
+ "normalized": false,
1202
+ "rstrip": false,
1203
+ "single_word": false,
1204
+ "special": true
1205
+ },
1206
+ "150": {
1207
+ "content": "[unused88]",
1208
+ "lstrip": false,
1209
+ "normalized": false,
1210
+ "rstrip": false,
1211
+ "single_word": false,
1212
+ "special": true
1213
+ },
1214
+ "151": {
1215
+ "content": "[unused89]",
1216
+ "lstrip": false,
1217
+ "normalized": false,
1218
+ "rstrip": false,
1219
+ "single_word": false,
1220
+ "special": true
1221
+ },
1222
+ "152": {
1223
+ "content": "[unused90]",
1224
+ "lstrip": false,
1225
+ "normalized": false,
1226
+ "rstrip": false,
1227
+ "single_word": false,
1228
+ "special": true
1229
+ },
1230
+ "153": {
1231
+ "content": "[unused91]",
1232
+ "lstrip": false,
1233
+ "normalized": false,
1234
+ "rstrip": false,
1235
+ "single_word": false,
1236
+ "special": true
1237
+ },
1238
+ "154": {
1239
+ "content": "[unused92]",
1240
+ "lstrip": false,
1241
+ "normalized": false,
1242
+ "rstrip": false,
1243
+ "single_word": false,
1244
+ "special": true
1245
+ },
1246
+ "155": {
1247
+ "content": "[unused93]",
1248
+ "lstrip": false,
1249
+ "normalized": false,
1250
+ "rstrip": false,
1251
+ "single_word": false,
1252
+ "special": true
1253
+ },
1254
+ "156": {
1255
+ "content": "[unused94]",
1256
+ "lstrip": false,
1257
+ "normalized": false,
1258
+ "rstrip": false,
1259
+ "single_word": false,
1260
+ "special": true
1261
+ },
1262
+ "157": {
1263
+ "content": "[unused95]",
1264
+ "lstrip": false,
1265
+ "normalized": false,
1266
+ "rstrip": false,
1267
+ "single_word": false,
1268
+ "special": true
1269
+ },
1270
+ "158": {
1271
+ "content": "[unused96]",
1272
+ "lstrip": false,
1273
+ "normalized": false,
1274
+ "rstrip": false,
1275
+ "single_word": false,
1276
+ "special": true
1277
+ },
1278
+ "159": {
1279
+ "content": "[unused97]",
1280
+ "lstrip": false,
1281
+ "normalized": false,
1282
+ "rstrip": false,
1283
+ "single_word": false,
1284
+ "special": true
1285
+ },
1286
+ "160": {
1287
+ "content": "[unused98]",
1288
+ "lstrip": false,
1289
+ "normalized": false,
1290
+ "rstrip": false,
1291
+ "single_word": false,
1292
+ "special": true
1293
+ },
1294
+ "161": {
1295
+ "content": "[unused99]",
1296
+ "lstrip": false,
1297
+ "normalized": false,
1298
+ "rstrip": false,
1299
+ "single_word": false,
1300
+ "special": true
1301
+ },
1302
+ "162": {
1303
+ "content": "[extra_id_0]",
1304
+ "lstrip": false,
1305
+ "normalized": false,
1306
+ "rstrip": false,
1307
+ "single_word": false,
1308
+ "special": true
1309
+ },
1310
+ "163": {
1311
+ "content": "[extra_id_1]",
1312
+ "lstrip": false,
1313
+ "normalized": false,
1314
+ "rstrip": false,
1315
+ "single_word": false,
1316
+ "special": true
1317
+ },
1318
+ "164": {
1319
+ "content": "[extra_id_2]",
1320
+ "lstrip": false,
1321
+ "normalized": false,
1322
+ "rstrip": false,
1323
+ "single_word": false,
1324
+ "special": true
1325
+ },
1326
+ "165": {
1327
+ "content": "[extra_id_3]",
1328
+ "lstrip": false,
1329
+ "normalized": false,
1330
+ "rstrip": false,
1331
+ "single_word": false,
1332
+ "special": true
1333
+ },
1334
+ "166": {
1335
+ "content": "[extra_id_4]",
1336
+ "lstrip": false,
1337
+ "normalized": false,
1338
+ "rstrip": false,
1339
+ "single_word": false,
1340
+ "special": true
1341
+ },
1342
+ "167": {
1343
+ "content": "[extra_id_5]",
1344
+ "lstrip": false,
1345
+ "normalized": false,
1346
+ "rstrip": false,
1347
+ "single_word": false,
1348
+ "special": true
1349
+ },
1350
+ "168": {
1351
+ "content": "[extra_id_6]",
1352
+ "lstrip": false,
1353
+ "normalized": false,
1354
+ "rstrip": false,
1355
+ "single_word": false,
1356
+ "special": true
1357
+ },
1358
+ "169": {
1359
+ "content": "[extra_id_7]",
1360
+ "lstrip": false,
1361
+ "normalized": false,
1362
+ "rstrip": false,
1363
+ "single_word": false,
1364
+ "special": true
1365
+ },
1366
+ "170": {
1367
+ "content": "[extra_id_8]",
1368
+ "lstrip": false,
1369
+ "normalized": false,
1370
+ "rstrip": false,
1371
+ "single_word": false,
1372
+ "special": true
1373
+ },
1374
+ "171": {
1375
+ "content": "[extra_id_9]",
1376
+ "lstrip": false,
1377
+ "normalized": false,
1378
+ "rstrip": false,
1379
+ "single_word": false,
1380
+ "special": true
1381
+ },
1382
+ "172": {
1383
+ "content": "[extra_id_10]",
1384
+ "lstrip": false,
1385
+ "normalized": false,
1386
+ "rstrip": false,
1387
+ "single_word": false,
1388
+ "special": true
1389
+ },
1390
+ "173": {
1391
+ "content": "[extra_id_11]",
1392
+ "lstrip": false,
1393
+ "normalized": false,
1394
+ "rstrip": false,
1395
+ "single_word": false,
1396
+ "special": true
1397
+ },
1398
+ "174": {
1399
+ "content": "[extra_id_12]",
1400
+ "lstrip": false,
1401
+ "normalized": false,
1402
+ "rstrip": false,
1403
+ "single_word": false,
1404
+ "special": true
1405
+ },
1406
+ "175": {
1407
+ "content": "[extra_id_13]",
1408
+ "lstrip": false,
1409
+ "normalized": false,
1410
+ "rstrip": false,
1411
+ "single_word": false,
1412
+ "special": true
1413
+ },
1414
+ "176": {
1415
+ "content": "[extra_id_14]",
1416
+ "lstrip": false,
1417
+ "normalized": false,
1418
+ "rstrip": false,
1419
+ "single_word": false,
1420
+ "special": true
1421
+ },
1422
+ "177": {
1423
+ "content": "[extra_id_15]",
1424
+ "lstrip": false,
1425
+ "normalized": false,
1426
+ "rstrip": false,
1427
+ "single_word": false,
1428
+ "special": true
1429
+ },
1430
+ "178": {
1431
+ "content": "[extra_id_16]",
1432
+ "lstrip": false,
1433
+ "normalized": false,
1434
+ "rstrip": false,
1435
+ "single_word": false,
1436
+ "special": true
1437
+ },
1438
+ "179": {
1439
+ "content": "[extra_id_17]",
1440
+ "lstrip": false,
1441
+ "normalized": false,
1442
+ "rstrip": false,
1443
+ "single_word": false,
1444
+ "special": true
1445
+ },
1446
+ "180": {
1447
+ "content": "[extra_id_18]",
1448
+ "lstrip": false,
1449
+ "normalized": false,
1450
+ "rstrip": false,
1451
+ "single_word": false,
1452
+ "special": true
1453
+ },
1454
+ "181": {
1455
+ "content": "[extra_id_19]",
1456
+ "lstrip": false,
1457
+ "normalized": false,
1458
+ "rstrip": false,
1459
+ "single_word": false,
1460
+ "special": true
1461
+ },
1462
+ "182": {
1463
+ "content": "[extra_id_20]",
1464
+ "lstrip": false,
1465
+ "normalized": false,
1466
+ "rstrip": false,
1467
+ "single_word": false,
1468
+ "special": true
1469
+ },
1470
+ "183": {
1471
+ "content": "[extra_id_21]",
1472
+ "lstrip": false,
1473
+ "normalized": false,
1474
+ "rstrip": false,
1475
+ "single_word": false,
1476
+ "special": true
1477
+ },
1478
+ "184": {
1479
+ "content": "[extra_id_22]",
1480
+ "lstrip": false,
1481
+ "normalized": false,
1482
+ "rstrip": false,
1483
+ "single_word": false,
1484
+ "special": true
1485
+ },
1486
+ "185": {
1487
+ "content": "[extra_id_23]",
1488
+ "lstrip": false,
1489
+ "normalized": false,
1490
+ "rstrip": false,
1491
+ "single_word": false,
1492
+ "special": true
1493
+ },
1494
+ "186": {
1495
+ "content": "[extra_id_24]",
1496
+ "lstrip": false,
1497
+ "normalized": false,
1498
+ "rstrip": false,
1499
+ "single_word": false,
1500
+ "special": true
1501
+ },
1502
+ "187": {
1503
+ "content": "[extra_id_25]",
1504
+ "lstrip": false,
1505
+ "normalized": false,
1506
+ "rstrip": false,
1507
+ "single_word": false,
1508
+ "special": true
1509
+ },
1510
+ "188": {
1511
+ "content": "[extra_id_26]",
1512
+ "lstrip": false,
1513
+ "normalized": false,
1514
+ "rstrip": false,
1515
+ "single_word": false,
1516
+ "special": true
1517
+ },
1518
+ "189": {
1519
+ "content": "[extra_id_27]",
1520
+ "lstrip": false,
1521
+ "normalized": false,
1522
+ "rstrip": false,
1523
+ "single_word": false,
1524
+ "special": true
1525
+ },
1526
+ "190": {
1527
+ "content": "[extra_id_28]",
1528
+ "lstrip": false,
1529
+ "normalized": false,
1530
+ "rstrip": false,
1531
+ "single_word": false,
1532
+ "special": true
1533
+ },
1534
+ "191": {
1535
+ "content": "[extra_id_29]",
1536
+ "lstrip": false,
1537
+ "normalized": false,
1538
+ "rstrip": false,
1539
+ "single_word": false,
1540
+ "special": true
1541
+ },
1542
+ "192": {
1543
+ "content": "[extra_id_30]",
1544
+ "lstrip": false,
1545
+ "normalized": false,
1546
+ "rstrip": false,
1547
+ "single_word": false,
1548
+ "special": true
1549
+ },
1550
+ "193": {
1551
+ "content": "[extra_id_31]",
1552
+ "lstrip": false,
1553
+ "normalized": false,
1554
+ "rstrip": false,
1555
+ "single_word": false,
1556
+ "special": true
1557
+ },
1558
+ "194": {
1559
+ "content": "[extra_id_32]",
1560
+ "lstrip": false,
1561
+ "normalized": false,
1562
+ "rstrip": false,
1563
+ "single_word": false,
1564
+ "special": true
1565
+ },
1566
+ "195": {
1567
+ "content": "[extra_id_33]",
1568
+ "lstrip": false,
1569
+ "normalized": false,
1570
+ "rstrip": false,
1571
+ "single_word": false,
1572
+ "special": true
1573
+ },
1574
+ "196": {
1575
+ "content": "[extra_id_34]",
1576
+ "lstrip": false,
1577
+ "normalized": false,
1578
+ "rstrip": false,
1579
+ "single_word": false,
1580
+ "special": true
1581
+ },
1582
+ "197": {
1583
+ "content": "[extra_id_35]",
1584
+ "lstrip": false,
1585
+ "normalized": false,
1586
+ "rstrip": false,
1587
+ "single_word": false,
1588
+ "special": true
1589
+ },
1590
+ "198": {
1591
+ "content": "[extra_id_36]",
1592
+ "lstrip": false,
1593
+ "normalized": false,
1594
+ "rstrip": false,
1595
+ "single_word": false,
1596
+ "special": true
1597
+ },
1598
+ "199": {
1599
+ "content": "[extra_id_37]",
1600
+ "lstrip": false,
1601
+ "normalized": false,
1602
+ "rstrip": false,
1603
+ "single_word": false,
1604
+ "special": true
1605
+ },
1606
+ "200": {
1607
+ "content": "[extra_id_38]",
1608
+ "lstrip": false,
1609
+ "normalized": false,
1610
+ "rstrip": false,
1611
+ "single_word": false,
1612
+ "special": true
1613
+ },
1614
+ "201": {
1615
+ "content": "[extra_id_39]",
1616
+ "lstrip": false,
1617
+ "normalized": false,
1618
+ "rstrip": false,
1619
+ "single_word": false,
1620
+ "special": true
1621
+ },
1622
+ "202": {
1623
+ "content": "[extra_id_40]",
1624
+ "lstrip": false,
1625
+ "normalized": false,
1626
+ "rstrip": false,
1627
+ "single_word": false,
1628
+ "special": true
1629
+ },
1630
+ "203": {
1631
+ "content": "[extra_id_41]",
1632
+ "lstrip": false,
1633
+ "normalized": false,
1634
+ "rstrip": false,
1635
+ "single_word": false,
1636
+ "special": true
1637
+ },
1638
+ "204": {
1639
+ "content": "[extra_id_42]",
1640
+ "lstrip": false,
1641
+ "normalized": false,
1642
+ "rstrip": false,
1643
+ "single_word": false,
1644
+ "special": true
1645
+ },
1646
+ "205": {
1647
+ "content": "[extra_id_43]",
1648
+ "lstrip": false,
1649
+ "normalized": false,
1650
+ "rstrip": false,
1651
+ "single_word": false,
1652
+ "special": true
1653
+ },
1654
+ "206": {
1655
+ "content": "[extra_id_44]",
1656
+ "lstrip": false,
1657
+ "normalized": false,
1658
+ "rstrip": false,
1659
+ "single_word": false,
1660
+ "special": true
1661
+ },
1662
+ "207": {
1663
+ "content": "[extra_id_45]",
1664
+ "lstrip": false,
1665
+ "normalized": false,
1666
+ "rstrip": false,
1667
+ "single_word": false,
1668
+ "special": true
1669
+ },
1670
+ "208": {
1671
+ "content": "[extra_id_46]",
1672
+ "lstrip": false,
1673
+ "normalized": false,
1674
+ "rstrip": false,
1675
+ "single_word": false,
1676
+ "special": true
1677
+ },
1678
+ "209": {
1679
+ "content": "[extra_id_47]",
1680
+ "lstrip": false,
1681
+ "normalized": false,
1682
+ "rstrip": false,
1683
+ "single_word": false,
1684
+ "special": true
1685
+ },
1686
+ "210": {
1687
+ "content": "[extra_id_48]",
1688
+ "lstrip": false,
1689
+ "normalized": false,
1690
+ "rstrip": false,
1691
+ "single_word": false,
1692
+ "special": true
1693
+ },
1694
+ "211": {
1695
+ "content": "[extra_id_49]",
1696
+ "lstrip": false,
1697
+ "normalized": false,
1698
+ "rstrip": false,
1699
+ "single_word": false,
1700
+ "special": true
1701
+ },
1702
+ "212": {
1703
+ "content": "[extra_id_50]",
1704
+ "lstrip": false,
1705
+ "normalized": false,
1706
+ "rstrip": false,
1707
+ "single_word": false,
1708
+ "special": true
1709
+ },
1710
+ "213": {
1711
+ "content": "[extra_id_51]",
1712
+ "lstrip": false,
1713
+ "normalized": false,
1714
+ "rstrip": false,
1715
+ "single_word": false,
1716
+ "special": true
1717
+ },
1718
+ "214": {
1719
+ "content": "[extra_id_52]",
1720
+ "lstrip": false,
1721
+ "normalized": false,
1722
+ "rstrip": false,
1723
+ "single_word": false,
1724
+ "special": true
1725
+ },
1726
+ "215": {
1727
+ "content": "[extra_id_53]",
1728
+ "lstrip": false,
1729
+ "normalized": false,
1730
+ "rstrip": false,
1731
+ "single_word": false,
1732
+ "special": true
1733
+ },
1734
+ "216": {
1735
+ "content": "[extra_id_54]",
1736
+ "lstrip": false,
1737
+ "normalized": false,
1738
+ "rstrip": false,
1739
+ "single_word": false,
1740
+ "special": true
1741
+ },
1742
+ "217": {
1743
+ "content": "[extra_id_55]",
1744
+ "lstrip": false,
1745
+ "normalized": false,
1746
+ "rstrip": false,
1747
+ "single_word": false,
1748
+ "special": true
1749
+ },
1750
+ "218": {
1751
+ "content": "[extra_id_56]",
1752
+ "lstrip": false,
1753
+ "normalized": false,
1754
+ "rstrip": false,
1755
+ "single_word": false,
1756
+ "special": true
1757
+ },
1758
+ "219": {
1759
+ "content": "[extra_id_57]",
1760
+ "lstrip": false,
1761
+ "normalized": false,
1762
+ "rstrip": false,
1763
+ "single_word": false,
1764
+ "special": true
1765
+ },
1766
+ "220": {
1767
+ "content": "[extra_id_58]",
1768
+ "lstrip": false,
1769
+ "normalized": false,
1770
+ "rstrip": false,
1771
+ "single_word": false,
1772
+ "special": true
1773
+ },
1774
+ "221": {
1775
+ "content": "[extra_id_59]",
1776
+ "lstrip": false,
1777
+ "normalized": false,
1778
+ "rstrip": false,
1779
+ "single_word": false,
1780
+ "special": true
1781
+ },
1782
+ "222": {
1783
+ "content": "[extra_id_60]",
1784
+ "lstrip": false,
1785
+ "normalized": false,
1786
+ "rstrip": false,
1787
+ "single_word": false,
1788
+ "special": true
1789
+ },
1790
+ "223": {
1791
+ "content": "[extra_id_61]",
1792
+ "lstrip": false,
1793
+ "normalized": false,
1794
+ "rstrip": false,
1795
+ "single_word": false,
1796
+ "special": true
1797
+ },
1798
+ "224": {
1799
+ "content": "[extra_id_62]",
1800
+ "lstrip": false,
1801
+ "normalized": false,
1802
+ "rstrip": false,
1803
+ "single_word": false,
1804
+ "special": true
1805
+ },
1806
+ "225": {
1807
+ "content": "[extra_id_63]",
1808
+ "lstrip": false,
1809
+ "normalized": false,
1810
+ "rstrip": false,
1811
+ "single_word": false,
1812
+ "special": true
1813
+ },
1814
+ "226": {
1815
+ "content": "[extra_id_64]",
1816
+ "lstrip": false,
1817
+ "normalized": false,
1818
+ "rstrip": false,
1819
+ "single_word": false,
1820
+ "special": true
1821
+ },
1822
+ "227": {
1823
+ "content": "[extra_id_65]",
1824
+ "lstrip": false,
1825
+ "normalized": false,
1826
+ "rstrip": false,
1827
+ "single_word": false,
1828
+ "special": true
1829
+ },
1830
+ "228": {
1831
+ "content": "[extra_id_66]",
1832
+ "lstrip": false,
1833
+ "normalized": false,
1834
+ "rstrip": false,
1835
+ "single_word": false,
1836
+ "special": true
1837
+ },
1838
+ "229": {
1839
+ "content": "[extra_id_67]",
1840
+ "lstrip": false,
1841
+ "normalized": false,
1842
+ "rstrip": false,
1843
+ "single_word": false,
1844
+ "special": true
1845
+ },
1846
+ "230": {
1847
+ "content": "[extra_id_68]",
1848
+ "lstrip": false,
1849
+ "normalized": false,
1850
+ "rstrip": false,
1851
+ "single_word": false,
1852
+ "special": true
1853
+ },
1854
+ "231": {
1855
+ "content": "[extra_id_69]",
1856
+ "lstrip": false,
1857
+ "normalized": false,
1858
+ "rstrip": false,
1859
+ "single_word": false,
1860
+ "special": true
1861
+ },
1862
+ "232": {
1863
+ "content": "[extra_id_70]",
1864
+ "lstrip": false,
1865
+ "normalized": false,
1866
+ "rstrip": false,
1867
+ "single_word": false,
1868
+ "special": true
1869
+ },
1870
+ "233": {
1871
+ "content": "[extra_id_71]",
1872
+ "lstrip": false,
1873
+ "normalized": false,
1874
+ "rstrip": false,
1875
+ "single_word": false,
1876
+ "special": true
1877
+ },
1878
+ "234": {
1879
+ "content": "[extra_id_72]",
1880
+ "lstrip": false,
1881
+ "normalized": false,
1882
+ "rstrip": false,
1883
+ "single_word": false,
1884
+ "special": true
1885
+ },
1886
+ "235": {
1887
+ "content": "[extra_id_73]",
1888
+ "lstrip": false,
1889
+ "normalized": false,
1890
+ "rstrip": false,
1891
+ "single_word": false,
1892
+ "special": true
1893
+ },
1894
+ "236": {
1895
+ "content": "[extra_id_74]",
1896
+ "lstrip": false,
1897
+ "normalized": false,
1898
+ "rstrip": false,
1899
+ "single_word": false,
1900
+ "special": true
1901
+ },
1902
+ "237": {
1903
+ "content": "[extra_id_75]",
1904
+ "lstrip": false,
1905
+ "normalized": false,
1906
+ "rstrip": false,
1907
+ "single_word": false,
1908
+ "special": true
1909
+ },
1910
+ "238": {
1911
+ "content": "[extra_id_76]",
1912
+ "lstrip": false,
1913
+ "normalized": false,
1914
+ "rstrip": false,
1915
+ "single_word": false,
1916
+ "special": true
1917
+ },
1918
+ "239": {
1919
+ "content": "[extra_id_77]",
1920
+ "lstrip": false,
1921
+ "normalized": false,
1922
+ "rstrip": false,
1923
+ "single_word": false,
1924
+ "special": true
1925
+ },
1926
+ "240": {
1927
+ "content": "[extra_id_78]",
1928
+ "lstrip": false,
1929
+ "normalized": false,
1930
+ "rstrip": false,
1931
+ "single_word": false,
1932
+ "special": true
1933
+ },
1934
+ "241": {
1935
+ "content": "[extra_id_79]",
1936
+ "lstrip": false,
1937
+ "normalized": false,
1938
+ "rstrip": false,
1939
+ "single_word": false,
1940
+ "special": true
1941
+ },
1942
+ "242": {
1943
+ "content": "[extra_id_80]",
1944
+ "lstrip": false,
1945
+ "normalized": false,
1946
+ "rstrip": false,
1947
+ "single_word": false,
1948
+ "special": true
1949
+ },
1950
+ "243": {
1951
+ "content": "[extra_id_81]",
1952
+ "lstrip": false,
1953
+ "normalized": false,
1954
+ "rstrip": false,
1955
+ "single_word": false,
1956
+ "special": true
1957
+ },
1958
+ "244": {
1959
+ "content": "[extra_id_82]",
1960
+ "lstrip": false,
1961
+ "normalized": false,
1962
+ "rstrip": false,
1963
+ "single_word": false,
1964
+ "special": true
1965
+ },
1966
+ "245": {
1967
+ "content": "[extra_id_83]",
1968
+ "lstrip": false,
1969
+ "normalized": false,
1970
+ "rstrip": false,
1971
+ "single_word": false,
1972
+ "special": true
1973
+ },
1974
+ "246": {
1975
+ "content": "[extra_id_84]",
1976
+ "lstrip": false,
1977
+ "normalized": false,
1978
+ "rstrip": false,
1979
+ "single_word": false,
1980
+ "special": true
1981
+ },
1982
+ "247": {
1983
+ "content": "[extra_id_85]",
1984
+ "lstrip": false,
1985
+ "normalized": false,
1986
+ "rstrip": false,
1987
+ "single_word": false,
1988
+ "special": true
1989
+ },
1990
+ "248": {
1991
+ "content": "[extra_id_86]",
1992
+ "lstrip": false,
1993
+ "normalized": false,
1994
+ "rstrip": false,
1995
+ "single_word": false,
1996
+ "special": true
1997
+ },
1998
+ "249": {
1999
+ "content": "[extra_id_87]",
2000
+ "lstrip": false,
2001
+ "normalized": false,
2002
+ "rstrip": false,
2003
+ "single_word": false,
2004
+ "special": true
2005
+ },
2006
+ "250": {
2007
+ "content": "[extra_id_88]",
2008
+ "lstrip": false,
2009
+ "normalized": false,
2010
+ "rstrip": false,
2011
+ "single_word": false,
2012
+ "special": true
2013
+ },
2014
+ "251": {
2015
+ "content": "[extra_id_89]",
2016
+ "lstrip": false,
2017
+ "normalized": false,
2018
+ "rstrip": false,
2019
+ "single_word": false,
2020
+ "special": true
2021
+ },
2022
+ "252": {
2023
+ "content": "[extra_id_90]",
2024
+ "lstrip": false,
2025
+ "normalized": false,
2026
+ "rstrip": false,
2027
+ "single_word": false,
2028
+ "special": true
2029
+ },
2030
+ "253": {
2031
+ "content": "[extra_id_91]",
2032
+ "lstrip": false,
2033
+ "normalized": false,
2034
+ "rstrip": false,
2035
+ "single_word": false,
2036
+ "special": true
2037
+ },
2038
+ "254": {
2039
+ "content": "[extra_id_92]",
2040
+ "lstrip": false,
2041
+ "normalized": false,
2042
+ "rstrip": false,
2043
+ "single_word": false,
2044
+ "special": true
2045
+ },
2046
+ "255": {
2047
+ "content": "[extra_id_93]",
2048
+ "lstrip": false,
2049
+ "normalized": false,
2050
+ "rstrip": false,
2051
+ "single_word": false,
2052
+ "special": true
2053
+ },
2054
+ "256": {
2055
+ "content": "[extra_id_94]",
2056
+ "lstrip": false,
2057
+ "normalized": false,
2058
+ "rstrip": false,
2059
+ "single_word": false,
2060
+ "special": true
2061
+ },
2062
+ "257": {
2063
+ "content": "[extra_id_95]",
2064
+ "lstrip": false,
2065
+ "normalized": false,
2066
+ "rstrip": false,
2067
+ "single_word": false,
2068
+ "special": true
2069
+ },
2070
+ "258": {
2071
+ "content": "[extra_id_96]",
2072
+ "lstrip": false,
2073
+ "normalized": false,
2074
+ "rstrip": false,
2075
+ "single_word": false,
2076
+ "special": true
2077
+ },
2078
+ "259": {
2079
+ "content": "[extra_id_97]",
2080
+ "lstrip": false,
2081
+ "normalized": false,
2082
+ "rstrip": false,
2083
+ "single_word": false,
2084
+ "special": true
2085
+ },
2086
+ "260": {
2087
+ "content": "[extra_id_98]",
2088
+ "lstrip": false,
2089
+ "normalized": false,
2090
+ "rstrip": false,
2091
+ "single_word": false,
2092
+ "special": true
2093
+ },
2094
+ "261": {
2095
+ "content": "[extra_id_99]",
2096
+ "lstrip": false,
2097
+ "normalized": false,
2098
+ "rstrip": false,
2099
+ "single_word": false,
2100
+ "special": true
2101
+ },
2102
+ "262": {
2103
+ "content": "[extra_id_100]",
2104
+ "lstrip": false,
2105
+ "normalized": false,
2106
+ "rstrip": false,
2107
+ "single_word": false,
2108
+ "special": true
2109
+ },
2110
+ "263": {
2111
+ "content": "[extra_id_101]",
2112
+ "lstrip": false,
2113
+ "normalized": false,
2114
+ "rstrip": false,
2115
+ "single_word": false,
2116
+ "special": true
2117
+ },
2118
+ "264": {
2119
+ "content": "[extra_id_102]",
2120
+ "lstrip": false,
2121
+ "normalized": false,
2122
+ "rstrip": false,
2123
+ "single_word": false,
2124
+ "special": true
2125
+ },
2126
+ "265": {
2127
+ "content": "[extra_id_103]",
2128
+ "lstrip": false,
2129
+ "normalized": false,
2130
+ "rstrip": false,
2131
+ "single_word": false,
2132
+ "special": true
2133
+ },
2134
+ "266": {
2135
+ "content": "[extra_id_104]",
2136
+ "lstrip": false,
2137
+ "normalized": false,
2138
+ "rstrip": false,
2139
+ "single_word": false,
2140
+ "special": true
2141
+ },
2142
+ "267": {
2143
+ "content": "[extra_id_105]",
2144
+ "lstrip": false,
2145
+ "normalized": false,
2146
+ "rstrip": false,
2147
+ "single_word": false,
2148
+ "special": true
2149
+ },
2150
+ "268": {
2151
+ "content": "[extra_id_106]",
2152
+ "lstrip": false,
2153
+ "normalized": false,
2154
+ "rstrip": false,
2155
+ "single_word": false,
2156
+ "special": true
2157
+ },
2158
+ "269": {
2159
+ "content": "[extra_id_107]",
2160
+ "lstrip": false,
2161
+ "normalized": false,
2162
+ "rstrip": false,
2163
+ "single_word": false,
2164
+ "special": true
2165
+ },
2166
+ "270": {
2167
+ "content": "[extra_id_108]",
2168
+ "lstrip": false,
2169
+ "normalized": false,
2170
+ "rstrip": false,
2171
+ "single_word": false,
2172
+ "special": true
2173
+ },
2174
+ "271": {
2175
+ "content": "[extra_id_109]",
2176
+ "lstrip": false,
2177
+ "normalized": false,
2178
+ "rstrip": false,
2179
+ "single_word": false,
2180
+ "special": true
2181
+ },
2182
+ "272": {
2183
+ "content": "[extra_id_110]",
2184
+ "lstrip": false,
2185
+ "normalized": false,
2186
+ "rstrip": false,
2187
+ "single_word": false,
2188
+ "special": true
2189
+ },
2190
+ "273": {
2191
+ "content": "[extra_id_111]",
2192
+ "lstrip": false,
2193
+ "normalized": false,
2194
+ "rstrip": false,
2195
+ "single_word": false,
2196
+ "special": true
2197
+ },
2198
+ "274": {
2199
+ "content": "[extra_id_112]",
2200
+ "lstrip": false,
2201
+ "normalized": false,
2202
+ "rstrip": false,
2203
+ "single_word": false,
2204
+ "special": true
2205
+ },
2206
+ "275": {
2207
+ "content": "[extra_id_113]",
2208
+ "lstrip": false,
2209
+ "normalized": false,
2210
+ "rstrip": false,
2211
+ "single_word": false,
2212
+ "special": true
2213
+ },
2214
+ "276": {
2215
+ "content": "[extra_id_114]",
2216
+ "lstrip": false,
2217
+ "normalized": false,
2218
+ "rstrip": false,
2219
+ "single_word": false,
2220
+ "special": true
2221
+ },
2222
+ "277": {
2223
+ "content": "[extra_id_115]",
2224
+ "lstrip": false,
2225
+ "normalized": false,
2226
+ "rstrip": false,
2227
+ "single_word": false,
2228
+ "special": true
2229
+ },
2230
+ "278": {
2231
+ "content": "[extra_id_116]",
2232
+ "lstrip": false,
2233
+ "normalized": false,
2234
+ "rstrip": false,
2235
+ "single_word": false,
2236
+ "special": true
2237
+ },
2238
+ "279": {
2239
+ "content": "[extra_id_117]",
2240
+ "lstrip": false,
2241
+ "normalized": false,
2242
+ "rstrip": false,
2243
+ "single_word": false,
2244
+ "special": true
2245
+ },
2246
+ "280": {
2247
+ "content": "[extra_id_118]",
2248
+ "lstrip": false,
2249
+ "normalized": false,
2250
+ "rstrip": false,
2251
+ "single_word": false,
2252
+ "special": true
2253
+ },
2254
+ "281": {
2255
+ "content": "[extra_id_119]",
2256
+ "lstrip": false,
2257
+ "normalized": false,
2258
+ "rstrip": false,
2259
+ "single_word": false,
2260
+ "special": true
2261
+ },
2262
+ "282": {
2263
+ "content": "[extra_id_120]",
2264
+ "lstrip": false,
2265
+ "normalized": false,
2266
+ "rstrip": false,
2267
+ "single_word": false,
2268
+ "special": true
2269
+ },
2270
+ "283": {
2271
+ "content": "[extra_id_121]",
2272
+ "lstrip": false,
2273
+ "normalized": false,
2274
+ "rstrip": false,
2275
+ "single_word": false,
2276
+ "special": true
2277
+ },
2278
+ "284": {
2279
+ "content": "[extra_id_122]",
2280
+ "lstrip": false,
2281
+ "normalized": false,
2282
+ "rstrip": false,
2283
+ "single_word": false,
2284
+ "special": true
2285
+ },
2286
+ "285": {
2287
+ "content": "[extra_id_123]",
2288
+ "lstrip": false,
2289
+ "normalized": false,
2290
+ "rstrip": false,
2291
+ "single_word": false,
2292
+ "special": true
2293
+ },
2294
+ "286": {
2295
+ "content": "[extra_id_124]",
2296
+ "lstrip": false,
2297
+ "normalized": false,
2298
+ "rstrip": false,
2299
+ "single_word": false,
2300
+ "special": true
2301
+ },
2302
+ "287": {
2303
+ "content": "[extra_id_125]",
2304
+ "lstrip": false,
2305
+ "normalized": false,
2306
+ "rstrip": false,
2307
+ "single_word": false,
2308
+ "special": true
2309
+ },
2310
+ "288": {
2311
+ "content": "[extra_id_126]",
2312
+ "lstrip": false,
2313
+ "normalized": false,
2314
+ "rstrip": false,
2315
+ "single_word": false,
2316
+ "special": true
2317
+ },
2318
+ "289": {
2319
+ "content": "[extra_id_127]",
2320
+ "lstrip": false,
2321
+ "normalized": false,
2322
+ "rstrip": false,
2323
+ "single_word": false,
2324
+ "special": true
2325
+ },
2326
+ "290": {
2327
+ "content": "[extra_id_128]",
2328
+ "lstrip": false,
2329
+ "normalized": false,
2330
+ "rstrip": false,
2331
+ "single_word": false,
2332
+ "special": true
2333
+ },
2334
+ "291": {
2335
+ "content": "[extra_id_129]",
2336
+ "lstrip": false,
2337
+ "normalized": false,
2338
+ "rstrip": false,
2339
+ "single_word": false,
2340
+ "special": true
2341
+ },
2342
+ "292": {
2343
+ "content": "[extra_id_130]",
2344
+ "lstrip": false,
2345
+ "normalized": false,
2346
+ "rstrip": false,
2347
+ "single_word": false,
2348
+ "special": true
2349
+ },
2350
+ "293": {
2351
+ "content": "[extra_id_131]",
2352
+ "lstrip": false,
2353
+ "normalized": false,
2354
+ "rstrip": false,
2355
+ "single_word": false,
2356
+ "special": true
2357
+ },
2358
+ "294": {
2359
+ "content": "[extra_id_132]",
2360
+ "lstrip": false,
2361
+ "normalized": false,
2362
+ "rstrip": false,
2363
+ "single_word": false,
2364
+ "special": true
2365
+ },
2366
+ "295": {
2367
+ "content": "[extra_id_133]",
2368
+ "lstrip": false,
2369
+ "normalized": false,
2370
+ "rstrip": false,
2371
+ "single_word": false,
2372
+ "special": true
2373
+ },
2374
+ "296": {
2375
+ "content": "[extra_id_134]",
2376
+ "lstrip": false,
2377
+ "normalized": false,
2378
+ "rstrip": false,
2379
+ "single_word": false,
2380
+ "special": true
2381
+ },
2382
+ "297": {
2383
+ "content": "[extra_id_135]",
2384
+ "lstrip": false,
2385
+ "normalized": false,
2386
+ "rstrip": false,
2387
+ "single_word": false,
2388
+ "special": true
2389
+ },
2390
+ "298": {
2391
+ "content": "[extra_id_136]",
2392
+ "lstrip": false,
2393
+ "normalized": false,
2394
+ "rstrip": false,
2395
+ "single_word": false,
2396
+ "special": true
2397
+ },
2398
+ "299": {
2399
+ "content": "[extra_id_137]",
2400
+ "lstrip": false,
2401
+ "normalized": false,
2402
+ "rstrip": false,
2403
+ "single_word": false,
2404
+ "special": true
2405
+ },
2406
+ "300": {
2407
+ "content": "[extra_id_138]",
2408
+ "lstrip": false,
2409
+ "normalized": false,
2410
+ "rstrip": false,
2411
+ "single_word": false,
2412
+ "special": true
2413
+ },
2414
+ "301": {
2415
+ "content": "[extra_id_139]",
2416
+ "lstrip": false,
2417
+ "normalized": false,
2418
+ "rstrip": false,
2419
+ "single_word": false,
2420
+ "special": true
2421
+ },
2422
+ "302": {
2423
+ "content": "[extra_id_140]",
2424
+ "lstrip": false,
2425
+ "normalized": false,
2426
+ "rstrip": false,
2427
+ "single_word": false,
2428
+ "special": true
2429
+ },
2430
+ "303": {
2431
+ "content": "[extra_id_141]",
2432
+ "lstrip": false,
2433
+ "normalized": false,
2434
+ "rstrip": false,
2435
+ "single_word": false,
2436
+ "special": true
2437
+ },
2438
+ "304": {
2439
+ "content": "[extra_id_142]",
2440
+ "lstrip": false,
2441
+ "normalized": false,
2442
+ "rstrip": false,
2443
+ "single_word": false,
2444
+ "special": true
2445
+ },
2446
+ "305": {
2447
+ "content": "[extra_id_143]",
2448
+ "lstrip": false,
2449
+ "normalized": false,
2450
+ "rstrip": false,
2451
+ "single_word": false,
2452
+ "special": true
2453
+ },
2454
+ "306": {
2455
+ "content": "[extra_id_144]",
2456
+ "lstrip": false,
2457
+ "normalized": false,
2458
+ "rstrip": false,
2459
+ "single_word": false,
2460
+ "special": true
2461
+ },
2462
+ "307": {
2463
+ "content": "[extra_id_145]",
2464
+ "lstrip": false,
2465
+ "normalized": false,
2466
+ "rstrip": false,
2467
+ "single_word": false,
2468
+ "special": true
2469
+ },
2470
+ "308": {
2471
+ "content": "[extra_id_146]",
2472
+ "lstrip": false,
2473
+ "normalized": false,
2474
+ "rstrip": false,
2475
+ "single_word": false,
2476
+ "special": true
2477
+ },
2478
+ "309": {
2479
+ "content": "[extra_id_147]",
2480
+ "lstrip": false,
2481
+ "normalized": false,
2482
+ "rstrip": false,
2483
+ "single_word": false,
2484
+ "special": true
2485
+ },
2486
+ "310": {
2487
+ "content": "[extra_id_148]",
2488
+ "lstrip": false,
2489
+ "normalized": false,
2490
+ "rstrip": false,
2491
+ "single_word": false,
2492
+ "special": true
2493
+ },
2494
+ "311": {
2495
+ "content": "[extra_id_149]",
2496
+ "lstrip": false,
2497
+ "normalized": false,
2498
+ "rstrip": false,
2499
+ "single_word": false,
2500
+ "special": true
2501
+ },
2502
+ "312": {
2503
+ "content": "[extra_id_150]",
2504
+ "lstrip": false,
2505
+ "normalized": false,
2506
+ "rstrip": false,
2507
+ "single_word": false,
2508
+ "special": true
2509
+ },
2510
+ "313": {
2511
+ "content": "[extra_id_151]",
2512
+ "lstrip": false,
2513
+ "normalized": false,
2514
+ "rstrip": false,
2515
+ "single_word": false,
2516
+ "special": true
2517
+ },
2518
+ "314": {
2519
+ "content": "[extra_id_152]",
2520
+ "lstrip": false,
2521
+ "normalized": false,
2522
+ "rstrip": false,
2523
+ "single_word": false,
2524
+ "special": true
2525
+ },
2526
+ "315": {
2527
+ "content": "[extra_id_153]",
2528
+ "lstrip": false,
2529
+ "normalized": false,
2530
+ "rstrip": false,
2531
+ "single_word": false,
2532
+ "special": true
2533
+ },
2534
+ "316": {
2535
+ "content": "[extra_id_154]",
2536
+ "lstrip": false,
2537
+ "normalized": false,
2538
+ "rstrip": false,
2539
+ "single_word": false,
2540
+ "special": true
2541
+ },
2542
+ "317": {
2543
+ "content": "[extra_id_155]",
2544
+ "lstrip": false,
2545
+ "normalized": false,
2546
+ "rstrip": false,
2547
+ "single_word": false,
2548
+ "special": true
2549
+ },
2550
+ "318": {
2551
+ "content": "[extra_id_156]",
2552
+ "lstrip": false,
2553
+ "normalized": false,
2554
+ "rstrip": false,
2555
+ "single_word": false,
2556
+ "special": true
2557
+ },
2558
+ "319": {
2559
+ "content": "[extra_id_157]",
2560
+ "lstrip": false,
2561
+ "normalized": false,
2562
+ "rstrip": false,
2563
+ "single_word": false,
2564
+ "special": true
2565
+ },
2566
+ "320": {
2567
+ "content": "[extra_id_158]",
2568
+ "lstrip": false,
2569
+ "normalized": false,
2570
+ "rstrip": false,
2571
+ "single_word": false,
2572
+ "special": true
2573
+ },
2574
+ "321": {
2575
+ "content": "[extra_id_159]",
2576
+ "lstrip": false,
2577
+ "normalized": false,
2578
+ "rstrip": false,
2579
+ "single_word": false,
2580
+ "special": true
2581
+ },
2582
+ "322": {
2583
+ "content": "[extra_id_160]",
2584
+ "lstrip": false,
2585
+ "normalized": false,
2586
+ "rstrip": false,
2587
+ "single_word": false,
2588
+ "special": true
2589
+ },
2590
+ "323": {
2591
+ "content": "[extra_id_161]",
2592
+ "lstrip": false,
2593
+ "normalized": false,
2594
+ "rstrip": false,
2595
+ "single_word": false,
2596
+ "special": true
2597
+ },
2598
+ "324": {
2599
+ "content": "[extra_id_162]",
2600
+ "lstrip": false,
2601
+ "normalized": false,
2602
+ "rstrip": false,
2603
+ "single_word": false,
2604
+ "special": true
2605
+ },
2606
+ "325": {
2607
+ "content": "[extra_id_163]",
2608
+ "lstrip": false,
2609
+ "normalized": false,
2610
+ "rstrip": false,
2611
+ "single_word": false,
2612
+ "special": true
2613
+ },
2614
+ "326": {
2615
+ "content": "[extra_id_164]",
2616
+ "lstrip": false,
2617
+ "normalized": false,
2618
+ "rstrip": false,
2619
+ "single_word": false,
2620
+ "special": true
2621
+ },
2622
+ "327": {
2623
+ "content": "[extra_id_165]",
2624
+ "lstrip": false,
2625
+ "normalized": false,
2626
+ "rstrip": false,
2627
+ "single_word": false,
2628
+ "special": true
2629
+ },
2630
+ "328": {
2631
+ "content": "[extra_id_166]",
2632
+ "lstrip": false,
2633
+ "normalized": false,
2634
+ "rstrip": false,
2635
+ "single_word": false,
2636
+ "special": true
2637
+ },
2638
+ "329": {
2639
+ "content": "[extra_id_167]",
2640
+ "lstrip": false,
2641
+ "normalized": false,
2642
+ "rstrip": false,
2643
+ "single_word": false,
2644
+ "special": true
2645
+ },
2646
+ "330": {
2647
+ "content": "[extra_id_168]",
2648
+ "lstrip": false,
2649
+ "normalized": false,
2650
+ "rstrip": false,
2651
+ "single_word": false,
2652
+ "special": true
2653
+ },
2654
+ "331": {
2655
+ "content": "[extra_id_169]",
2656
+ "lstrip": false,
2657
+ "normalized": false,
2658
+ "rstrip": false,
2659
+ "single_word": false,
2660
+ "special": true
2661
+ },
2662
+ "332": {
2663
+ "content": "[extra_id_170]",
2664
+ "lstrip": false,
2665
+ "normalized": false,
2666
+ "rstrip": false,
2667
+ "single_word": false,
2668
+ "special": true
2669
+ },
2670
+ "333": {
2671
+ "content": "[extra_id_171]",
2672
+ "lstrip": false,
2673
+ "normalized": false,
2674
+ "rstrip": false,
2675
+ "single_word": false,
2676
+ "special": true
2677
+ },
2678
+ "334": {
2679
+ "content": "[extra_id_172]",
2680
+ "lstrip": false,
2681
+ "normalized": false,
2682
+ "rstrip": false,
2683
+ "single_word": false,
2684
+ "special": true
2685
+ },
2686
+ "335": {
2687
+ "content": "[extra_id_173]",
2688
+ "lstrip": false,
2689
+ "normalized": false,
2690
+ "rstrip": false,
2691
+ "single_word": false,
2692
+ "special": true
2693
+ },
2694
+ "336": {
2695
+ "content": "[extra_id_174]",
2696
+ "lstrip": false,
2697
+ "normalized": false,
2698
+ "rstrip": false,
2699
+ "single_word": false,
2700
+ "special": true
2701
+ },
2702
+ "337": {
2703
+ "content": "[extra_id_175]",
2704
+ "lstrip": false,
2705
+ "normalized": false,
2706
+ "rstrip": false,
2707
+ "single_word": false,
2708
+ "special": true
2709
+ },
2710
+ "338": {
2711
+ "content": "[extra_id_176]",
2712
+ "lstrip": false,
2713
+ "normalized": false,
2714
+ "rstrip": false,
2715
+ "single_word": false,
2716
+ "special": true
2717
+ },
2718
+ "339": {
2719
+ "content": "[extra_id_177]",
2720
+ "lstrip": false,
2721
+ "normalized": false,
2722
+ "rstrip": false,
2723
+ "single_word": false,
2724
+ "special": true
2725
+ },
2726
+ "340": {
2727
+ "content": "[extra_id_178]",
2728
+ "lstrip": false,
2729
+ "normalized": false,
2730
+ "rstrip": false,
2731
+ "single_word": false,
2732
+ "special": true
2733
+ },
2734
+ "341": {
2735
+ "content": "[extra_id_179]",
2736
+ "lstrip": false,
2737
+ "normalized": false,
2738
+ "rstrip": false,
2739
+ "single_word": false,
2740
+ "special": true
2741
+ },
2742
+ "342": {
2743
+ "content": "[extra_id_180]",
2744
+ "lstrip": false,
2745
+ "normalized": false,
2746
+ "rstrip": false,
2747
+ "single_word": false,
2748
+ "special": true
2749
+ },
2750
+ "343": {
2751
+ "content": "[extra_id_181]",
2752
+ "lstrip": false,
2753
+ "normalized": false,
2754
+ "rstrip": false,
2755
+ "single_word": false,
2756
+ "special": true
2757
+ },
2758
+ "344": {
2759
+ "content": "[extra_id_182]",
2760
+ "lstrip": false,
2761
+ "normalized": false,
2762
+ "rstrip": false,
2763
+ "single_word": false,
2764
+ "special": true
2765
+ },
2766
+ "345": {
2767
+ "content": "[extra_id_183]",
2768
+ "lstrip": false,
2769
+ "normalized": false,
2770
+ "rstrip": false,
2771
+ "single_word": false,
2772
+ "special": true
2773
+ },
2774
+ "346": {
2775
+ "content": "[extra_id_184]",
2776
+ "lstrip": false,
2777
+ "normalized": false,
2778
+ "rstrip": false,
2779
+ "single_word": false,
2780
+ "special": true
2781
+ },
2782
+ "347": {
2783
+ "content": "[extra_id_185]",
2784
+ "lstrip": false,
2785
+ "normalized": false,
2786
+ "rstrip": false,
2787
+ "single_word": false,
2788
+ "special": true
2789
+ },
2790
+ "348": {
2791
+ "content": "[extra_id_186]",
2792
+ "lstrip": false,
2793
+ "normalized": false,
2794
+ "rstrip": false,
2795
+ "single_word": false,
2796
+ "special": true
2797
+ },
2798
+ "349": {
2799
+ "content": "[extra_id_187]",
2800
+ "lstrip": false,
2801
+ "normalized": false,
2802
+ "rstrip": false,
2803
+ "single_word": false,
2804
+ "special": true
2805
+ },
2806
+ "350": {
2807
+ "content": "[extra_id_188]",
2808
+ "lstrip": false,
2809
+ "normalized": false,
2810
+ "rstrip": false,
2811
+ "single_word": false,
2812
+ "special": true
2813
+ },
2814
+ "351": {
2815
+ "content": "[extra_id_189]",
2816
+ "lstrip": false,
2817
+ "normalized": false,
2818
+ "rstrip": false,
2819
+ "single_word": false,
2820
+ "special": true
2821
+ },
2822
+ "352": {
2823
+ "content": "[extra_id_190]",
2824
+ "lstrip": false,
2825
+ "normalized": false,
2826
+ "rstrip": false,
2827
+ "single_word": false,
2828
+ "special": true
2829
+ },
2830
+ "353": {
2831
+ "content": "[extra_id_191]",
2832
+ "lstrip": false,
2833
+ "normalized": false,
2834
+ "rstrip": false,
2835
+ "single_word": false,
2836
+ "special": true
2837
+ },
2838
+ "354": {
2839
+ "content": "[extra_id_192]",
2840
+ "lstrip": false,
2841
+ "normalized": false,
2842
+ "rstrip": false,
2843
+ "single_word": false,
2844
+ "special": true
2845
+ },
2846
+ "355": {
2847
+ "content": "[extra_id_193]",
2848
+ "lstrip": false,
2849
+ "normalized": false,
2850
+ "rstrip": false,
2851
+ "single_word": false,
2852
+ "special": true
2853
+ },
2854
+ "356": {
2855
+ "content": "[extra_id_194]",
2856
+ "lstrip": false,
2857
+ "normalized": false,
2858
+ "rstrip": false,
2859
+ "single_word": false,
2860
+ "special": true
2861
+ },
2862
+ "357": {
2863
+ "content": "[extra_id_195]",
2864
+ "lstrip": false,
2865
+ "normalized": false,
2866
+ "rstrip": false,
2867
+ "single_word": false,
2868
+ "special": true
2869
+ },
2870
+ "358": {
2871
+ "content": "[extra_id_196]",
2872
+ "lstrip": false,
2873
+ "normalized": false,
2874
+ "rstrip": false,
2875
+ "single_word": false,
2876
+ "special": true
2877
+ },
2878
+ "359": {
2879
+ "content": "[extra_id_197]",
2880
+ "lstrip": false,
2881
+ "normalized": false,
2882
+ "rstrip": false,
2883
+ "single_word": false,
2884
+ "special": true
2885
+ },
2886
+ "360": {
2887
+ "content": "[extra_id_198]",
2888
+ "lstrip": false,
2889
+ "normalized": false,
2890
+ "rstrip": false,
2891
+ "single_word": false,
2892
+ "special": true
2893
+ },
2894
+ "361": {
2895
+ "content": "[|endofturn|]",
2896
+ "lstrip": false,
2897
+ "normalized": false,
2898
+ "rstrip": false,
2899
+ "single_word": false,
2900
+ "special": true
2901
+ }
2902
+ },
2903
+ "additional_special_token": [
2904
+ "[unused0]",
2905
+ "[unused1]",
2906
+ "[unused2]",
2907
+ "[unused3]",
2908
+ "[unused4]",
2909
+ "[unused5]",
2910
+ "[unused6]",
2911
+ "[unused7]",
2912
+ "[unused8]",
2913
+ "[unused9]",
2914
+ "[unused10]",
2915
+ "[unused11]",
2916
+ "[unused12]",
2917
+ "[unused13]",
2918
+ "[unused14]",
2919
+ "[unused15]",
2920
+ "[unused16]",
2921
+ "[unused17]",
2922
+ "[unused18]",
2923
+ "[unused19]",
2924
+ "[unused20]",
2925
+ "[unused21]",
2926
+ "[unused22]",
2927
+ "[unused23]",
2928
+ "[unused24]",
2929
+ "[unused25]",
2930
+ "[unused26]",
2931
+ "[unused27]",
2932
+ "[unused28]",
2933
+ "[unused29]",
2934
+ "[unused30]",
2935
+ "[unused31]",
2936
+ "[unused32]",
2937
+ "[unused33]",
2938
+ "[unused34]",
2939
+ "[unused35]",
2940
+ "[unused36]",
2941
+ "[unused37]",
2942
+ "[unused38]",
2943
+ "[unused39]",
2944
+ "[unused40]",
2945
+ "[unused41]",
2946
+ "[unused42]",
2947
+ "[unused43]",
2948
+ "[unused44]",
2949
+ "[unused45]",
2950
+ "[unused46]",
2951
+ "[unused47]",
2952
+ "[unused48]",
2953
+ "[unused49]",
2954
+ "[unused50]",
2955
+ "[unused51]",
2956
+ "[unused52]",
2957
+ "[unused53]",
2958
+ "[unused54]",
2959
+ "[unused55]",
2960
+ "[unused56]",
2961
+ "[unused57]",
2962
+ "[unused58]",
2963
+ "[unused59]",
2964
+ "[unused60]",
2965
+ "[unused61]",
2966
+ "[unused62]",
2967
+ "[unused63]",
2968
+ "[unused64]",
2969
+ "[unused65]",
2970
+ "[unused66]",
2971
+ "[unused67]",
2972
+ "[unused68]",
2973
+ "[unused69]",
2974
+ "[unused70]",
2975
+ "[unused71]",
2976
+ "[unused72]",
2977
+ "[unused73]",
2978
+ "[unused74]",
2979
+ "[unused75]",
2980
+ "[unused76]",
2981
+ "[unused77]",
2982
+ "[unused78]",
2983
+ "[unused79]",
2984
+ "[unused80]",
2985
+ "[unused81]",
2986
+ "[unused82]",
2987
+ "[unused83]",
2988
+ "[unused84]",
2989
+ "[unused85]",
2990
+ "[unused86]",
2991
+ "[unused87]",
2992
+ "[unused88]",
2993
+ "[unused89]",
2994
+ "[unused90]",
2995
+ "[unused91]",
2996
+ "[unused92]",
2997
+ "[unused93]",
2998
+ "[unused94]",
2999
+ "[unused95]",
3000
+ "[unused96]",
3001
+ "[unused97]",
3002
+ "[unused98]",
3003
+ "[unused99]",
3004
+ "[extra_id_0]",
3005
+ "[extra_id_1]",
3006
+ "[extra_id_2]",
3007
+ "[extra_id_3]",
3008
+ "[extra_id_4]",
3009
+ "[extra_id_5]",
3010
+ "[extra_id_6]",
3011
+ "[extra_id_7]",
3012
+ "[extra_id_8]",
3013
+ "[extra_id_9]",
3014
+ "[extra_id_10]",
3015
+ "[extra_id_11]",
3016
+ "[extra_id_12]",
3017
+ "[extra_id_13]",
3018
+ "[extra_id_14]",
3019
+ "[extra_id_15]",
3020
+ "[extra_id_16]",
3021
+ "[extra_id_17]",
3022
+ "[extra_id_18]",
3023
+ "[extra_id_19]",
3024
+ "[extra_id_20]",
3025
+ "[extra_id_21]",
3026
+ "[extra_id_22]",
3027
+ "[extra_id_23]",
3028
+ "[extra_id_24]",
3029
+ "[extra_id_25]",
3030
+ "[extra_id_26]",
3031
+ "[extra_id_27]",
3032
+ "[extra_id_28]",
3033
+ "[extra_id_29]",
3034
+ "[extra_id_30]",
3035
+ "[extra_id_31]",
3036
+ "[extra_id_32]",
3037
+ "[extra_id_33]",
3038
+ "[extra_id_34]",
3039
+ "[extra_id_35]",
3040
+ "[extra_id_36]",
3041
+ "[extra_id_37]",
3042
+ "[extra_id_38]",
3043
+ "[extra_id_39]",
3044
+ "[extra_id_40]",
3045
+ "[extra_id_41]",
3046
+ "[extra_id_42]",
3047
+ "[extra_id_43]",
3048
+ "[extra_id_44]",
3049
+ "[extra_id_45]",
3050
+ "[extra_id_46]",
3051
+ "[extra_id_47]",
3052
+ "[extra_id_48]",
3053
+ "[extra_id_49]",
3054
+ "[extra_id_50]",
3055
+ "[extra_id_51]",
3056
+ "[extra_id_52]",
3057
+ "[extra_id_53]",
3058
+ "[extra_id_54]",
3059
+ "[extra_id_55]",
3060
+ "[extra_id_56]",
3061
+ "[extra_id_57]",
3062
+ "[extra_id_58]",
3063
+ "[extra_id_59]",
3064
+ "[extra_id_60]",
3065
+ "[extra_id_61]",
3066
+ "[extra_id_62]",
3067
+ "[extra_id_63]",
3068
+ "[extra_id_64]",
3069
+ "[extra_id_65]",
3070
+ "[extra_id_66]",
3071
+ "[extra_id_67]",
3072
+ "[extra_id_68]",
3073
+ "[extra_id_69]",
3074
+ "[extra_id_70]",
3075
+ "[extra_id_71]",
3076
+ "[extra_id_72]",
3077
+ "[extra_id_73]",
3078
+ "[extra_id_74]",
3079
+ "[extra_id_75]",
3080
+ "[extra_id_76]",
3081
+ "[extra_id_77]",
3082
+ "[extra_id_78]",
3083
+ "[extra_id_79]",
3084
+ "[extra_id_80]",
3085
+ "[extra_id_81]",
3086
+ "[extra_id_82]",
3087
+ "[extra_id_83]",
3088
+ "[extra_id_84]",
3089
+ "[extra_id_85]",
3090
+ "[extra_id_86]",
3091
+ "[extra_id_87]",
3092
+ "[extra_id_88]",
3093
+ "[extra_id_89]",
3094
+ "[extra_id_90]",
3095
+ "[extra_id_91]",
3096
+ "[extra_id_92]",
3097
+ "[extra_id_93]",
3098
+ "[extra_id_94]",
3099
+ "[extra_id_95]",
3100
+ "[extra_id_96]",
3101
+ "[extra_id_97]",
3102
+ "[extra_id_98]",
3103
+ "[extra_id_99]",
3104
+ "[extra_id_100]",
3105
+ "[extra_id_101]",
3106
+ "[extra_id_102]",
3107
+ "[extra_id_103]",
3108
+ "[extra_id_104]",
3109
+ "[extra_id_105]",
3110
+ "[extra_id_106]",
3111
+ "[extra_id_107]",
3112
+ "[extra_id_108]",
3113
+ "[extra_id_109]",
3114
+ "[extra_id_110]",
3115
+ "[extra_id_111]",
3116
+ "[extra_id_112]",
3117
+ "[extra_id_113]",
3118
+ "[extra_id_114]",
3119
+ "[extra_id_115]",
3120
+ "[extra_id_116]",
3121
+ "[extra_id_117]",
3122
+ "[extra_id_118]",
3123
+ "[extra_id_119]",
3124
+ "[extra_id_120]",
3125
+ "[extra_id_121]",
3126
+ "[extra_id_122]",
3127
+ "[extra_id_123]",
3128
+ "[extra_id_124]",
3129
+ "[extra_id_125]",
3130
+ "[extra_id_126]",
3131
+ "[extra_id_127]",
3132
+ "[extra_id_128]",
3133
+ "[extra_id_129]",
3134
+ "[extra_id_130]",
3135
+ "[extra_id_131]",
3136
+ "[extra_id_132]",
3137
+ "[extra_id_133]",
3138
+ "[extra_id_134]",
3139
+ "[extra_id_135]",
3140
+ "[extra_id_136]",
3141
+ "[extra_id_137]",
3142
+ "[extra_id_138]",
3143
+ "[extra_id_139]",
3144
+ "[extra_id_140]",
3145
+ "[extra_id_141]",
3146
+ "[extra_id_142]",
3147
+ "[extra_id_143]",
3148
+ "[extra_id_144]",
3149
+ "[extra_id_145]",
3150
+ "[extra_id_146]",
3151
+ "[extra_id_147]",
3152
+ "[extra_id_148]",
3153
+ "[extra_id_149]",
3154
+ "[extra_id_150]",
3155
+ "[extra_id_151]",
3156
+ "[extra_id_152]",
3157
+ "[extra_id_153]",
3158
+ "[extra_id_154]",
3159
+ "[extra_id_155]",
3160
+ "[extra_id_156]",
3161
+ "[extra_id_157]",
3162
+ "[extra_id_158]",
3163
+ "[extra_id_159]",
3164
+ "[extra_id_160]",
3165
+ "[extra_id_161]",
3166
+ "[extra_id_162]",
3167
+ "[extra_id_163]",
3168
+ "[extra_id_164]",
3169
+ "[extra_id_165]",
3170
+ "[extra_id_166]",
3171
+ "[extra_id_167]",
3172
+ "[extra_id_168]",
3173
+ "[extra_id_169]",
3174
+ "[extra_id_170]",
3175
+ "[extra_id_171]",
3176
+ "[extra_id_172]",
3177
+ "[extra_id_173]",
3178
+ "[extra_id_174]",
3179
+ "[extra_id_175]",
3180
+ "[extra_id_176]",
3181
+ "[extra_id_177]",
3182
+ "[extra_id_178]",
3183
+ "[extra_id_179]",
3184
+ "[extra_id_180]",
3185
+ "[extra_id_181]",
3186
+ "[extra_id_182]",
3187
+ "[extra_id_183]",
3188
+ "[extra_id_184]",
3189
+ "[extra_id_185]",
3190
+ "[extra_id_186]",
3191
+ "[extra_id_187]",
3192
+ "[extra_id_188]",
3193
+ "[extra_id_189]",
3194
+ "[extra_id_190]",
3195
+ "[extra_id_191]",
3196
+ "[extra_id_192]",
3197
+ "[extra_id_193]",
3198
+ "[extra_id_194]",
3199
+ "[extra_id_195]",
3200
+ "[extra_id_196]",
3201
+ "[extra_id_197]",
3202
+ "[extra_id_198]",
3203
+ "[|endofturn|]",
3204
+ "PI:URL",
3205
+ "PI:EMAIL",
3206
+ "PI:ACCOUNT_NUM",
3207
+ "PI:PHONE_NUM",
3208
+ "PI:BUSINESS_NUM",
3209
+ "PI:ANNON",
3210
+ "PI:KEY",
3211
+ "PI:ID",
3212
+ "PI:IP_ADDRESS",
3213
+ "PI:USER"
3214
+ ],
3215
+ "bos_token": "[BOS]",
3216
+ "chat_template": "{% for message in messages %}{% if loop.first and message['role'] != 'system' %}{{ '[|system|][|endofturn|]\n' }}{% endif %}{{ '[|' + message['role'] + '|]' + message['content'] }}{% if message['role'] == 'user' %}{{ '\n' }}{% else %}{{ '[|endofturn|]\n' }}{% endif %}{% endfor %}{% if add_generation_prompt %}{{ '[|assistant|]' }}{% endif %}",
3217
+ "clean_up_tokenization_spaces": true,
3218
+ "eos_token": "[|endofturn|]",
3219
+ "extra_special_tokens": {},
3220
+ "max_length": 4000,
3221
+ "model_max_length": 1000000000000000019884624838656,
3222
+ "pad_to_multiple_of": null,
3223
+ "pad_token": "[PAD]",
3224
+ "pad_token_type_id": 0,
3225
+ "padding_side": "left",
3226
+ "stride": 0,
3227
+ "tokenizer_class": "GPT2Tokenizer",
3228
+ "truncation_side": "right",
3229
+ "truncation_strategy": "longest_first",
3230
+ "unk_token": "[UNK]"
3231
+ }
vocab.json ADDED
The diff for this file is too large to render. See raw diff