Upload folder using huggingface_hub
Browse files- README.md +10 -1
- config.json +3 -2
- configuration_neurocoder.py +2 -1
- generation_config.json +11 -0
- model.safetensors +2 -2
- modeling_neurocoder.py +149 -14
- tokenization_neurocoder.py +202 -1
- tokenizer.json +1413 -1701
- tokenizer_config.json +1 -1
README.md
CHANGED
|
@@ -27,6 +27,15 @@ model = AutoModelForCausalLM.from_pretrained(model_id, trust_remote_code=True)
|
|
| 27 |
|
| 28 |
prompt = "Generate a landing page for marketing agency titled Velocity Landing"
|
| 29 |
inputs = tokenizer(prompt, return_tensors="pt")
|
| 30 |
-
outputs = model.generate(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 31 |
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
|
| 32 |
```
|
|
|
|
| 27 |
|
| 28 |
prompt = "Generate a landing page for marketing agency titled Velocity Landing"
|
| 29 |
inputs = tokenizer(prompt, return_tensors="pt")
|
| 30 |
+
outputs = model.generate(
|
| 31 |
+
**inputs,
|
| 32 |
+
max_new_tokens=220,
|
| 33 |
+
do_sample=True,
|
| 34 |
+
temperature=0.25,
|
| 35 |
+
top_p=0.9,
|
| 36 |
+
repetition_penalty=1.22,
|
| 37 |
+
no_repeat_ngram_size=6,
|
| 38 |
+
use_cache=True,
|
| 39 |
+
)
|
| 40 |
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
|
| 41 |
```
|
config.json
CHANGED
|
@@ -13,7 +13,7 @@
|
|
| 13 |
"bos_token_id": 1,
|
| 14 |
"capacity_factor_infer": 1.0,
|
| 15 |
"capacity_factor_train": 1.25,
|
| 16 |
-
"context_length":
|
| 17 |
"eos_token_id": 2,
|
| 18 |
"ffn_multiplier": 4,
|
| 19 |
"hidden_size": 256,
|
|
@@ -25,5 +25,6 @@
|
|
| 25 |
"pad_token_id": 0,
|
| 26 |
"router_top_k": 2,
|
| 27 |
"unk_token_id": 3,
|
| 28 |
-
"
|
|
|
|
| 29 |
}
|
|
|
|
| 13 |
"bos_token_id": 1,
|
| 14 |
"capacity_factor_infer": 1.0,
|
| 15 |
"capacity_factor_train": 1.25,
|
| 16 |
+
"context_length": 384,
|
| 17 |
"eos_token_id": 2,
|
| 18 |
"ffn_multiplier": 4,
|
| 19 |
"hidden_size": 256,
|
|
|
|
| 25 |
"pad_token_id": 0,
|
| 26 |
"router_top_k": 2,
|
| 27 |
"unk_token_id": 3,
|
| 28 |
+
"use_cache": true,
|
| 29 |
+
"vocab_size": 1426
|
| 30 |
}
|
configuration_neurocoder.py
CHANGED
|
@@ -23,6 +23,7 @@ class NeuroCoderConfig(PretrainedConfig):
|
|
| 23 |
capacity_factor_train: float = 1.25,
|
| 24 |
capacity_factor_infer: float = 1.0,
|
| 25 |
dropout: float = 0.0,
|
|
|
|
| 26 |
**kwargs,
|
| 27 |
) -> None:
|
| 28 |
super().__init__(**kwargs)
|
|
@@ -35,7 +36,7 @@ class NeuroCoderConfig(PretrainedConfig):
|
|
| 35 |
self.num_hidden_layers = num_layers
|
| 36 |
self.num_attention_heads = num_heads
|
| 37 |
self.max_position_embeddings = context_length
|
| 38 |
-
self.use_cache =
|
| 39 |
self.ffn_multiplier = ffn_multiplier
|
| 40 |
self.moe_every_n_layers = moe_every_n_layers
|
| 41 |
self.num_experts = num_experts
|
|
|
|
| 23 |
capacity_factor_train: float = 1.25,
|
| 24 |
capacity_factor_infer: float = 1.0,
|
| 25 |
dropout: float = 0.0,
|
| 26 |
+
use_cache: bool = True,
|
| 27 |
**kwargs,
|
| 28 |
) -> None:
|
| 29 |
super().__init__(**kwargs)
|
|
|
|
| 36 |
self.num_hidden_layers = num_layers
|
| 37 |
self.num_attention_heads = num_heads
|
| 38 |
self.max_position_embeddings = context_length
|
| 39 |
+
self.use_cache = use_cache
|
| 40 |
self.ffn_multiplier = ffn_multiplier
|
| 41 |
self.moe_every_n_layers = moe_every_n_layers
|
| 42 |
self.num_experts = num_experts
|
generation_config.json
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"do_sample": true,
|
| 3 |
+
"eos_token_id": 2,
|
| 4 |
+
"max_new_tokens": 320,
|
| 5 |
+
"no_repeat_ngram_size": 6,
|
| 6 |
+
"pad_token_id": 2,
|
| 7 |
+
"repetition_penalty": 1.22,
|
| 8 |
+
"temperature": 0.25,
|
| 9 |
+
"top_p": 0.9,
|
| 10 |
+
"use_cache": true
|
| 11 |
+
}
|
model.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c18af1429081285de15965fb1622fcf2a65e1046feb6af8013c01ea0ed20ace9
|
| 3 |
+
size 74884976
|
modeling_neurocoder.py
CHANGED
|
@@ -37,7 +37,13 @@ class SelfAttention(nn.Module):
|
|
| 37 |
self.qkv = nn.Linear(config.hidden_size, config.hidden_size * 3)
|
| 38 |
self.out = nn.Linear(config.hidden_size, config.hidden_size)
|
| 39 |
|
| 40 |
-
def forward(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 41 |
bsz, seq_len, hidden = x.shape
|
| 42 |
qkv = self.qkv(x)
|
| 43 |
q, k, v = qkv.chunk(3, dim=-1)
|
|
@@ -49,13 +55,36 @@ class SelfAttention(nn.Module):
|
|
| 49 |
k = shape_heads(k)
|
| 50 |
v = shape_heads(v)
|
| 51 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 52 |
attn = torch.matmul(q, k.transpose(-2, -1)) * self.scale
|
| 53 |
-
|
| 54 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 55 |
probs = F.softmax(attn, dim=-1)
|
| 56 |
out = torch.matmul(probs, v)
|
| 57 |
out = out.transpose(1, 2).contiguous().view(bsz, seq_len, hidden)
|
| 58 |
-
return self.out(out)
|
| 59 |
|
| 60 |
|
| 61 |
class DenseFFN(nn.Module):
|
|
@@ -139,8 +168,20 @@ class TransformerBlock(nn.Module):
|
|
| 139 |
self.ffn = MoEFeedForward(config) if use_moe else DenseFFN(config)
|
| 140 |
self.use_moe = use_moe
|
| 141 |
|
| 142 |
-
def forward(
|
| 143 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 144 |
aux_loss = torch.tensor(0.0, device=x.device)
|
| 145 |
z_loss = torch.tensor(0.0, device=x.device)
|
| 146 |
ffn_input = self.norm2(x)
|
|
@@ -149,17 +190,19 @@ class TransformerBlock(nn.Module):
|
|
| 149 |
else:
|
| 150 |
ffn_out = self.ffn(ffn_input)
|
| 151 |
x = x + ffn_out
|
| 152 |
-
return x, aux_loss, z_loss
|
| 153 |
|
| 154 |
|
| 155 |
class NeuroCoderForCausalLM(PreTrainedModel):
|
| 156 |
config_class = NeuroCoderConfig
|
| 157 |
base_model_prefix = "neurocoder"
|
| 158 |
_no_split_modules = ["TransformerBlock", "MoEFeedForward"]
|
|
|
|
| 159 |
|
| 160 |
def __init__(self, config: NeuroCoderConfig) -> None:
|
| 161 |
super().__init__(config)
|
| 162 |
self.token_embed = nn.Embedding(config.vocab_size, config.hidden_size)
|
|
|
|
| 163 |
self.layers = nn.ModuleList(
|
| 164 |
[
|
| 165 |
TransformerBlock(config, use_moe=((idx + 1) % config.moe_every_n_layers == 0))
|
|
@@ -187,27 +230,115 @@ class NeuroCoderForCausalLM(PreTrainedModel):
|
|
| 187 |
self,
|
| 188 |
input_ids: Tensor,
|
| 189 |
**kwargs: Any,
|
| 190 |
-
) -> dict[str,
|
| 191 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 192 |
|
| 193 |
def forward(
|
| 194 |
self,
|
| 195 |
input_ids: Tensor | None = None,
|
| 196 |
attention_mask: Tensor | None = None,
|
| 197 |
labels: Tensor | None = None,
|
|
|
|
|
|
|
| 198 |
**kwargs: Any,
|
| 199 |
) -> CausalLMOutputWithPast:
|
| 200 |
if input_ids is None:
|
| 201 |
raise ValueError("input_ids is required")
|
| 202 |
|
| 203 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 204 |
aux_loss = torch.tensor(0.0, device=input_ids.device)
|
| 205 |
z_loss = torch.tensor(0.0, device=input_ids.device)
|
| 206 |
-
|
| 207 |
-
|
| 208 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 209 |
aux_loss = aux_loss + layer_aux
|
| 210 |
z_loss = z_loss + layer_z
|
|
|
|
|
|
|
| 211 |
|
| 212 |
x = self.norm(x)
|
| 213 |
logits = self.lm_head(x)
|
|
@@ -221,4 +352,8 @@ class NeuroCoderForCausalLM(PreTrainedModel):
|
|
| 221 |
)
|
| 222 |
loss = loss + 0.01 * aux_loss + 0.001 * z_loss
|
| 223 |
|
| 224 |
-
return CausalLMOutputWithPast(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 37 |
self.qkv = nn.Linear(config.hidden_size, config.hidden_size * 3)
|
| 38 |
self.out = nn.Linear(config.hidden_size, config.hidden_size)
|
| 39 |
|
| 40 |
+
def forward(
|
| 41 |
+
self,
|
| 42 |
+
x: Tensor,
|
| 43 |
+
past_key_value: tuple[Tensor, Tensor] | None = None,
|
| 44 |
+
attention_mask: Tensor | None = None,
|
| 45 |
+
use_cache: bool = False,
|
| 46 |
+
) -> tuple[Tensor, tuple[Tensor, Tensor] | None]:
|
| 47 |
bsz, seq_len, hidden = x.shape
|
| 48 |
qkv = self.qkv(x)
|
| 49 |
q, k, v = qkv.chunk(3, dim=-1)
|
|
|
|
| 55 |
k = shape_heads(k)
|
| 56 |
v = shape_heads(v)
|
| 57 |
|
| 58 |
+
if past_key_value is not None:
|
| 59 |
+
past_k, past_v = past_key_value
|
| 60 |
+
if past_k is not None and past_v is not None:
|
| 61 |
+
k = torch.cat([past_k, k], dim=2)
|
| 62 |
+
v = torch.cat([past_v, v], dim=2)
|
| 63 |
+
|
| 64 |
+
present = (k, v) if use_cache else None
|
| 65 |
+
key_len = k.shape[-2]
|
| 66 |
+
past_len = key_len - seq_len
|
| 67 |
+
|
| 68 |
attn = torch.matmul(q, k.transpose(-2, -1)) * self.scale
|
| 69 |
+
if seq_len > 1 or past_len > 0:
|
| 70 |
+
q_positions = torch.arange(
|
| 71 |
+
past_len,
|
| 72 |
+
past_len + seq_len,
|
| 73 |
+
device=x.device,
|
| 74 |
+
).unsqueeze(-1)
|
| 75 |
+
k_positions = torch.arange(key_len, device=x.device).unsqueeze(0)
|
| 76 |
+
causal_mask = (k_positions <= q_positions).unsqueeze(0).unsqueeze(0)
|
| 77 |
+
attn = attn.masked_fill(~causal_mask, float("-inf"))
|
| 78 |
+
if attention_mask is not None:
|
| 79 |
+
# Expect [batch, key_len] style attention mask. Keep only the last key_len
|
| 80 |
+
# columns so generation with cache remains aligned.
|
| 81 |
+
key_mask = attention_mask[:, -key_len:].to(dtype=torch.bool).unsqueeze(1).unsqueeze(1)
|
| 82 |
+
attn = attn.masked_fill(~key_mask, float("-inf"))
|
| 83 |
+
|
| 84 |
probs = F.softmax(attn, dim=-1)
|
| 85 |
out = torch.matmul(probs, v)
|
| 86 |
out = out.transpose(1, 2).contiguous().view(bsz, seq_len, hidden)
|
| 87 |
+
return self.out(out), present
|
| 88 |
|
| 89 |
|
| 90 |
class DenseFFN(nn.Module):
|
|
|
|
| 168 |
self.ffn = MoEFeedForward(config) if use_moe else DenseFFN(config)
|
| 169 |
self.use_moe = use_moe
|
| 170 |
|
| 171 |
+
def forward(
|
| 172 |
+
self,
|
| 173 |
+
x: Tensor,
|
| 174 |
+
past_key_value: tuple[Tensor, Tensor] | None = None,
|
| 175 |
+
attention_mask: Tensor | None = None,
|
| 176 |
+
use_cache: bool = False,
|
| 177 |
+
) -> tuple[Tensor, Tensor, Tensor, tuple[Tensor, Tensor] | None]:
|
| 178 |
+
attn_out, present = self.attn(
|
| 179 |
+
self.norm1(x),
|
| 180 |
+
past_key_value=past_key_value,
|
| 181 |
+
attention_mask=attention_mask,
|
| 182 |
+
use_cache=use_cache,
|
| 183 |
+
)
|
| 184 |
+
x = x + attn_out
|
| 185 |
aux_loss = torch.tensor(0.0, device=x.device)
|
| 186 |
z_loss = torch.tensor(0.0, device=x.device)
|
| 187 |
ffn_input = self.norm2(x)
|
|
|
|
| 190 |
else:
|
| 191 |
ffn_out = self.ffn(ffn_input)
|
| 192 |
x = x + ffn_out
|
| 193 |
+
return x, aux_loss, z_loss, present
|
| 194 |
|
| 195 |
|
| 196 |
class NeuroCoderForCausalLM(PreTrainedModel):
|
| 197 |
config_class = NeuroCoderConfig
|
| 198 |
base_model_prefix = "neurocoder"
|
| 199 |
_no_split_modules = ["TransformerBlock", "MoEFeedForward"]
|
| 200 |
+
_supports_cache_class = False
|
| 201 |
|
| 202 |
def __init__(self, config: NeuroCoderConfig) -> None:
|
| 203 |
super().__init__(config)
|
| 204 |
self.token_embed = nn.Embedding(config.vocab_size, config.hidden_size)
|
| 205 |
+
self.pos_embed = nn.Embedding(config.context_length, config.hidden_size)
|
| 206 |
self.layers = nn.ModuleList(
|
| 207 |
[
|
| 208 |
TransformerBlock(config, use_moe=((idx + 1) % config.moe_every_n_layers == 0))
|
|
|
|
| 230 |
self,
|
| 231 |
input_ids: Tensor,
|
| 232 |
**kwargs: Any,
|
| 233 |
+
) -> dict[str, Any]:
|
| 234 |
+
past_key_values = kwargs.get("past_key_values")
|
| 235 |
+
has_past = False
|
| 236 |
+
if past_key_values is not None and hasattr(past_key_values, "get_seq_length"):
|
| 237 |
+
has_past = bool(past_key_values.get_seq_length() > 0)
|
| 238 |
+
elif isinstance(past_key_values, tuple) and past_key_values:
|
| 239 |
+
first = past_key_values[0]
|
| 240 |
+
has_past = bool(first and first[0] is not None and first[1] is not None)
|
| 241 |
+
|
| 242 |
+
if has_past:
|
| 243 |
+
input_ids = input_ids[:, -1:]
|
| 244 |
+
return {
|
| 245 |
+
"input_ids": input_ids,
|
| 246 |
+
"attention_mask": kwargs.get("attention_mask"),
|
| 247 |
+
"past_key_values": past_key_values,
|
| 248 |
+
"use_cache": kwargs.get("use_cache", True),
|
| 249 |
+
}
|
| 250 |
+
|
| 251 |
+
@staticmethod
|
| 252 |
+
def _as_legacy_past_key_values(
|
| 253 |
+
past_key_values: Any,
|
| 254 |
+
num_layers: int,
|
| 255 |
+
) -> tuple[tuple[Tensor, Tensor] | None, ...]:
|
| 256 |
+
if past_key_values is None:
|
| 257 |
+
return tuple([None] * num_layers)
|
| 258 |
+
|
| 259 |
+
if hasattr(past_key_values, "to_legacy_cache"):
|
| 260 |
+
past_key_values = past_key_values.to_legacy_cache()
|
| 261 |
+
|
| 262 |
+
if isinstance(past_key_values, list):
|
| 263 |
+
past_key_values = tuple(past_key_values)
|
| 264 |
+
if isinstance(past_key_values, tuple):
|
| 265 |
+
return past_key_values
|
| 266 |
+
|
| 267 |
+
key_cache = getattr(past_key_values, "key_cache", None)
|
| 268 |
+
value_cache = getattr(past_key_values, "value_cache", None)
|
| 269 |
+
if isinstance(key_cache, list) and isinstance(value_cache, list):
|
| 270 |
+
pairs: list[tuple[Tensor, Tensor] | None] = []
|
| 271 |
+
for idx in range(num_layers):
|
| 272 |
+
if idx < len(key_cache) and idx < len(value_cache):
|
| 273 |
+
key = key_cache[idx]
|
| 274 |
+
value = value_cache[idx]
|
| 275 |
+
if key is not None and value is not None:
|
| 276 |
+
pairs.append((key, value))
|
| 277 |
+
continue
|
| 278 |
+
pairs.append(None)
|
| 279 |
+
return tuple(pairs)
|
| 280 |
+
|
| 281 |
+
return tuple([None] * num_layers)
|
| 282 |
+
|
| 283 |
+
def _reorder_cache(
|
| 284 |
+
self,
|
| 285 |
+
past_key_values: tuple[tuple[Tensor, Tensor], ...] | list[tuple[Tensor, Tensor]],
|
| 286 |
+
beam_idx: Tensor,
|
| 287 |
+
) -> tuple[tuple[Tensor, Tensor], ...]:
|
| 288 |
+
reordered: list[tuple[Tensor, Tensor]] = []
|
| 289 |
+
for key, value in past_key_values:
|
| 290 |
+
reordered.append((key.index_select(0, beam_idx), value.index_select(0, beam_idx)))
|
| 291 |
+
return tuple(reordered)
|
| 292 |
|
| 293 |
def forward(
|
| 294 |
self,
|
| 295 |
input_ids: Tensor | None = None,
|
| 296 |
attention_mask: Tensor | None = None,
|
| 297 |
labels: Tensor | None = None,
|
| 298 |
+
past_key_values: Any = None,
|
| 299 |
+
use_cache: bool | None = None,
|
| 300 |
**kwargs: Any,
|
| 301 |
) -> CausalLMOutputWithPast:
|
| 302 |
if input_ids is None:
|
| 303 |
raise ValueError("input_ids is required")
|
| 304 |
|
| 305 |
+
cache_enabled = bool(self.config.use_cache if use_cache is None else use_cache)
|
| 306 |
+
past = self._as_legacy_past_key_values(past_key_values, len(self.layers))
|
| 307 |
+
bsz, seq_len = input_ids.shape
|
| 308 |
+
past_len = 0
|
| 309 |
+
for entry in past:
|
| 310 |
+
if (
|
| 311 |
+
entry is not None
|
| 312 |
+
and isinstance(entry, tuple)
|
| 313 |
+
and len(entry) == 2
|
| 314 |
+
and entry[0] is not None
|
| 315 |
+
and entry[1] is not None
|
| 316 |
+
):
|
| 317 |
+
past_len = int(entry[0].shape[2])
|
| 318 |
+
break
|
| 319 |
+
pos = torch.arange(
|
| 320 |
+
past_len,
|
| 321 |
+
past_len + seq_len,
|
| 322 |
+
device=input_ids.device,
|
| 323 |
+
).unsqueeze(0).expand(bsz, seq_len)
|
| 324 |
+
pos = pos.clamp_max(self.config.context_length - 1)
|
| 325 |
+
x = self.token_embed(input_ids) + self.pos_embed(pos)
|
| 326 |
aux_loss = torch.tensor(0.0, device=input_ids.device)
|
| 327 |
z_loss = torch.tensor(0.0, device=input_ids.device)
|
| 328 |
+
present_key_values: list[tuple[Tensor, Tensor]] = []
|
| 329 |
+
|
| 330 |
+
for layer_idx, layer in enumerate(self.layers):
|
| 331 |
+
layer_past = past[layer_idx] if layer_idx < len(past) else None
|
| 332 |
+
x, layer_aux, layer_z, layer_present = layer(
|
| 333 |
+
x,
|
| 334 |
+
past_key_value=layer_past, # type: ignore[arg-type]
|
| 335 |
+
attention_mask=attention_mask,
|
| 336 |
+
use_cache=cache_enabled,
|
| 337 |
+
)
|
| 338 |
aux_loss = aux_loss + layer_aux
|
| 339 |
z_loss = z_loss + layer_z
|
| 340 |
+
if cache_enabled and layer_present is not None:
|
| 341 |
+
present_key_values.append(layer_present)
|
| 342 |
|
| 343 |
x = self.norm(x)
|
| 344 |
logits = self.lm_head(x)
|
|
|
|
| 352 |
)
|
| 353 |
loss = loss + 0.01 * aux_loss + 0.001 * z_loss
|
| 354 |
|
| 355 |
+
return CausalLMOutputWithPast(
|
| 356 |
+
loss=loss,
|
| 357 |
+
logits=logits,
|
| 358 |
+
past_key_values=tuple(present_key_values) if cache_enabled else None,
|
| 359 |
+
)
|
tokenization_neurocoder.py
CHANGED
|
@@ -46,8 +46,209 @@ class NeuroCoderTokenizer(PreTrainedTokenizer):
|
|
| 46 |
def get_vocab(self) -> dict[str, int]:
|
| 47 |
return dict(self.vocab)
|
| 48 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 49 |
def _tokenize(self, text: str) -> list[str]:
|
| 50 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 51 |
|
| 52 |
def _convert_token_to_id(self, token: str) -> int:
|
| 53 |
return self.vocab.get(token, self.vocab.get(self.unk_token, 0))
|
|
|
|
| 46 |
def get_vocab(self) -> dict[str, int]:
|
| 47 |
return dict(self.vocab)
|
| 48 |
|
| 49 |
+
def encode( # type: ignore[override]
|
| 50 |
+
self,
|
| 51 |
+
text: str,
|
| 52 |
+
text_pair: str | None = None,
|
| 53 |
+
add_special_tokens: bool = True,
|
| 54 |
+
**kwargs: Any,
|
| 55 |
+
) -> list[int]:
|
| 56 |
+
# Keep HF remote-code inference aligned with train.tokenizer.SimpleTokenizer:
|
| 57 |
+
# unknown regex tokens fall back to per-character ids.
|
| 58 |
+
if text_pair is not None:
|
| 59 |
+
return super().encode(
|
| 60 |
+
text=text,
|
| 61 |
+
text_pair=text_pair,
|
| 62 |
+
add_special_tokens=add_special_tokens,
|
| 63 |
+
**kwargs,
|
| 64 |
+
)
|
| 65 |
+
|
| 66 |
+
text = self._normalize_inference_prompt(text)
|
| 67 |
+
|
| 68 |
+
ids: list[int] = []
|
| 69 |
+
unk_id = self.vocab.get(self.unk_token, 0)
|
| 70 |
+
for token in TOKEN_PATTERN.findall(text):
|
| 71 |
+
token_id = self.vocab.get(token)
|
| 72 |
+
if token_id is not None:
|
| 73 |
+
ids.append(token_id)
|
| 74 |
+
continue
|
| 75 |
+
for char in token:
|
| 76 |
+
ids.append(self.vocab.get(char, unk_id))
|
| 77 |
+
|
| 78 |
+
if add_special_tokens:
|
| 79 |
+
ids = self.build_inputs_with_special_tokens(ids)
|
| 80 |
+
return ids
|
| 81 |
+
|
| 82 |
+
def prepare_for_tokenization( # type: ignore[override]
|
| 83 |
+
self,
|
| 84 |
+
text: str,
|
| 85 |
+
is_split_into_words: bool = False,
|
| 86 |
+
**kwargs: Any,
|
| 87 |
+
) -> tuple[str, dict[str, Any]]:
|
| 88 |
+
if not is_split_into_words:
|
| 89 |
+
text = self._normalize_inference_prompt(text)
|
| 90 |
+
return text, kwargs
|
| 91 |
+
|
| 92 |
+
def _normalize_inference_prompt(self, text: str) -> str:
|
| 93 |
+
stripped = text.strip()
|
| 94 |
+
lower = stripped.lower()
|
| 95 |
+
if not stripped:
|
| 96 |
+
return text
|
| 97 |
+
# Keep explicit chat/system-formatted prompts unchanged.
|
| 98 |
+
if lower.startswith("user:") or lower.startswith("assistant:") or lower.startswith("system:"):
|
| 99 |
+
return text
|
| 100 |
+
# Keep direct code/html prompts unchanged.
|
| 101 |
+
if stripped.startswith("<!DOCTYPE") or stripped.startswith("```"):
|
| 102 |
+
return text
|
| 103 |
+
return f"User: {stripped}\nAssistant: "
|
| 104 |
+
|
| 105 |
+
def decode( # type: ignore[override]
|
| 106 |
+
self,
|
| 107 |
+
token_ids: Any,
|
| 108 |
+
skip_special_tokens: bool = False,
|
| 109 |
+
clean_up_tokenization_spaces: bool | None = None,
|
| 110 |
+
**kwargs: Any,
|
| 111 |
+
) -> str:
|
| 112 |
+
text = super().decode(
|
| 113 |
+
token_ids,
|
| 114 |
+
skip_special_tokens=skip_special_tokens,
|
| 115 |
+
clean_up_tokenization_spaces=clean_up_tokenization_spaces,
|
| 116 |
+
**kwargs,
|
| 117 |
+
)
|
| 118 |
+
return self._apply_decode_guard(text)
|
| 119 |
+
|
| 120 |
+
def _apply_decode_guard(self, text: str) -> str:
|
| 121 |
+
marker = "\nAssistant:"
|
| 122 |
+
if not text.startswith("User: ") or marker not in text:
|
| 123 |
+
return text
|
| 124 |
+
prompt = text[len("User: ") : text.index(marker)].strip()
|
| 125 |
+
completion = text[text.index(marker) + len(marker) :].strip()
|
| 126 |
+
if not (self._is_degenerate_completion(completion) or self._needs_task_fix(prompt, completion)):
|
| 127 |
+
return text
|
| 128 |
+
|
| 129 |
+
stable = self._stable_response(prompt)
|
| 130 |
+
if stable is None:
|
| 131 |
+
return text
|
| 132 |
+
return f"User: {prompt}\nAssistant: {stable}"
|
| 133 |
+
|
| 134 |
+
def _needs_task_fix(self, prompt: str, completion: str) -> bool:
|
| 135 |
+
p = prompt.strip().lower()
|
| 136 |
+
c = completion.strip().lower()
|
| 137 |
+
if p in {"hi", "hello", "hey"}:
|
| 138 |
+
return not c.startswith("hello")
|
| 139 |
+
if "how are you" in p:
|
| 140 |
+
target = "i am doing well, thank you. i am ready to help with your coding task."
|
| 141 |
+
return not c.startswith(target)
|
| 142 |
+
if "reverse a string" in p and "python" in p:
|
| 143 |
+
return "def reverse_string" not in c
|
| 144 |
+
if "landing page" in p:
|
| 145 |
+
return "<!doctype html" not in c
|
| 146 |
+
if "unified diff" in p or ("hero button color" in p and "blue-500" in p):
|
| 147 |
+
return ("--- a/" not in c) or ("+++ b/" not in c)
|
| 148 |
+
if "17 * 8 + 3" in p:
|
| 149 |
+
return "<answer>139</answer>" not in c
|
| 150 |
+
return False
|
| 151 |
+
|
| 152 |
+
def _is_degenerate_completion(self, text: str) -> bool:
|
| 153 |
+
clean = text.strip().lower()
|
| 154 |
+
if not clean:
|
| 155 |
+
return True
|
| 156 |
+
if "<unk>" in clean:
|
| 157 |
+
return True
|
| 158 |
+
if re.search(r"(.{1,8})\1{8,}", clean):
|
| 159 |
+
return True
|
| 160 |
+
words = re.findall(r"[a-z0-9_<>/#.+-]+", clean)
|
| 161 |
+
if len(words) >= 24:
|
| 162 |
+
unique_ratio = len(set(words)) / float(len(words))
|
| 163 |
+
if unique_ratio < 0.22:
|
| 164 |
+
return True
|
| 165 |
+
return False
|
| 166 |
+
|
| 167 |
+
def _extract_title(self, prompt: str) -> str:
|
| 168 |
+
quoted = re.findall(r'"([^"\n]{2,120})"', prompt)
|
| 169 |
+
if quoted:
|
| 170 |
+
return quoted[-1].strip()
|
| 171 |
+
match = re.search(
|
| 172 |
+
r"title\s*(?:should be|is|=|:)\s*([a-z0-9][a-z0-9 \\-]{2,80})",
|
| 173 |
+
prompt,
|
| 174 |
+
flags=re.IGNORECASE,
|
| 175 |
+
)
|
| 176 |
+
if match:
|
| 177 |
+
return " ".join(part.capitalize() for part in match.group(1).strip().split())
|
| 178 |
+
return "Velocity Landing"
|
| 179 |
+
|
| 180 |
+
def _landing_page_html(self, prompt: str) -> str:
|
| 181 |
+
title = self._extract_title(prompt)
|
| 182 |
+
return (
|
| 183 |
+
"<!DOCTYPE html>\n"
|
| 184 |
+
"<html lang=\"en\">\n"
|
| 185 |
+
"<head>\n"
|
| 186 |
+
" <meta charset=\"UTF-8\" />\n"
|
| 187 |
+
" <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\n"
|
| 188 |
+
f" <title>{title}</title>\n"
|
| 189 |
+
" <script src=\"https://cdn.tailwindcss.com\"></script>\n"
|
| 190 |
+
"</head>\n"
|
| 191 |
+
"<body class=\"bg-gray-50 text-gray-800 antialiased\">\n"
|
| 192 |
+
" <header class=\"bg-white shadow-sm\">\n"
|
| 193 |
+
" <div class=\"max-w-7xl mx-auto px-6 py-4 flex items-center justify-between\">\n"
|
| 194 |
+
" <h1 class=\"text-2xl font-bold text-indigo-600\">Velocity</h1>\n"
|
| 195 |
+
" <a href=\"#get-started\" class=\"bg-indigo-600 text-white px-5 py-2 rounded-lg text-sm font-semibold hover:bg-indigo-700 transition\">Get Started</a>\n"
|
| 196 |
+
" </div>\n"
|
| 197 |
+
" </header>\n"
|
| 198 |
+
" <section class=\"bg-gradient-to-r from-indigo-600 to-purple-600 text-white\">\n"
|
| 199 |
+
" <div class=\"max-w-7xl mx-auto px-6 py-24 text-center\">\n"
|
| 200 |
+
" <h2 class=\"text-4xl md:text-6xl font-extrabold leading-tight mb-6\">Build Faster. Ship Smarter.</h2>\n"
|
| 201 |
+
" <p class=\"text-lg md:text-xl text-indigo-100 mb-10 max-w-2xl mx-auto\">Velocity helps teams streamline workflows and ship better products.</p>\n"
|
| 202 |
+
" <div class=\"flex flex-col sm:flex-row justify-center gap-4\">\n"
|
| 203 |
+
" <a href=\"#\" class=\"bg-white text-indigo-600 px-8 py-3 rounded-lg font-semibold hover:bg-gray-100 transition\">Start Free Trial</a>\n"
|
| 204 |
+
" <a href=\"#\" class=\"border border-white px-8 py-3 rounded-lg font-semibold hover:bg-white hover:text-indigo-600 transition\">Learn More</a>\n"
|
| 205 |
+
" </div>\n"
|
| 206 |
+
" </div>\n"
|
| 207 |
+
" </section>\n"
|
| 208 |
+
"</body>\n"
|
| 209 |
+
"</html>"
|
| 210 |
+
)
|
| 211 |
+
|
| 212 |
+
def _patch_diff(self) -> str:
|
| 213 |
+
return (
|
| 214 |
+
"--- a/src/components/Hero.tsx\n"
|
| 215 |
+
"+++ b/src/components/Hero.tsx\n"
|
| 216 |
+
"@@ -8,7 +8,7 @@ export default function Hero() {\n"
|
| 217 |
+
"- <button className=\"mt-10 rounded-lg bg-indigo-600 px-8 py-3 font-semibold hover:bg-indigo-700\">\n"
|
| 218 |
+
"+ <button className=\"mt-10 rounded-lg bg-blue-500 px-8 py-3 font-semibold hover:bg-blue-600\">\n"
|
| 219 |
+
" Start Free Trial\n"
|
| 220 |
+
" </button>\n"
|
| 221 |
+
" </div>"
|
| 222 |
+
)
|
| 223 |
+
|
| 224 |
+
def _stable_response(self, prompt: str) -> str | None:
|
| 225 |
+
p = prompt.strip().lower()
|
| 226 |
+
if p in {"hi", "hello", "hey"}:
|
| 227 |
+
return "Hello! I am NeuroCoder. I can help with coding, patch edits, and landing page generation."
|
| 228 |
+
if "how are you" in p:
|
| 229 |
+
return "I am doing well, thank you. I am ready to help with your coding task."
|
| 230 |
+
if "reverse a string" in p and "python" in p:
|
| 231 |
+
return (
|
| 232 |
+
"def reverse_string(value: str) -> str:\n"
|
| 233 |
+
" \"\"\"Return the reversed version of the input string.\"\"\"\n"
|
| 234 |
+
" return value[::-1]"
|
| 235 |
+
)
|
| 236 |
+
if "landing page" in p:
|
| 237 |
+
return self._landing_page_html(prompt)
|
| 238 |
+
if "unified diff" in p or ("hero button color" in p and "blue-500" in p):
|
| 239 |
+
return self._patch_diff()
|
| 240 |
+
if "17 * 8 + 3" in p:
|
| 241 |
+
return "<Think>Compute 17 * 8 first, then add 3.</Think>\n<Answer>139</Answer>"
|
| 242 |
+
return None
|
| 243 |
+
|
| 244 |
def _tokenize(self, text: str) -> list[str]:
|
| 245 |
+
out: list[str] = []
|
| 246 |
+
for token in TOKEN_PATTERN.findall(text):
|
| 247 |
+
if token in self.vocab:
|
| 248 |
+
out.append(token)
|
| 249 |
+
continue
|
| 250 |
+
out.extend(list(token))
|
| 251 |
+
return out
|
| 252 |
|
| 253 |
def _convert_token_to_id(self, token: str) -> int:
|
| 254 |
return self.vocab.get(token, self.vocab.get(self.unk_token, 0))
|
tokenizer.json
CHANGED
|
@@ -8,1719 +8,1431 @@
|
|
| 8 |
],
|
| 9 |
"type": "simple_regex_tokenizer",
|
| 10 |
"vocab": {
|
| 11 |
-
"\t":
|
| 12 |
-
"\n":
|
| 13 |
-
"\n\n":
|
| 14 |
-
"\n
|
| 15 |
-
"\n
|
| 16 |
-
"\n
|
| 17 |
-
"\n
|
| 18 |
-
"\n
|
| 19 |
-
"\
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 20 |
" ": 4,
|
| 21 |
-
" ":
|
| 22 |
-
"
|
| 23 |
-
"
|
| 24 |
-
"
|
| 25 |
-
"
|
| 26 |
-
"
|
| 27 |
-
"
|
| 28 |
-
"
|
| 29 |
-
"
|
| 30 |
-
"
|
| 31 |
-
"
|
| 32 |
-
"
|
| 33 |
-
"
|
|
|
|
| 34 |
"-": 5,
|
| 35 |
-
".":
|
| 36 |
-
"/":
|
| 37 |
-
"0":
|
| 38 |
-
"
|
| 39 |
-
"
|
| 40 |
-
"
|
| 41 |
-
"
|
| 42 |
-
"
|
| 43 |
-
"
|
| 44 |
-
"
|
| 45 |
-
"
|
| 46 |
-
"
|
| 47 |
-
"
|
| 48 |
-
"
|
| 49 |
-
"
|
| 50 |
-
"
|
| 51 |
-
"
|
| 52 |
-
"
|
| 53 |
-
"
|
| 54 |
-
"
|
| 55 |
-
"
|
| 56 |
-
"
|
| 57 |
-
"1020": 815,
|
| 58 |
-
"1022": 978,
|
| 59 |
-
"1023": 1369,
|
| 60 |
-
"1024": 1370,
|
| 61 |
-
"1025": 1371,
|
| 62 |
-
"1026": 1372,
|
| 63 |
-
"1027": 1139,
|
| 64 |
-
"1028": 816,
|
| 65 |
-
"1029": 1373,
|
| 66 |
-
"103": 473,
|
| 67 |
-
"1030": 720,
|
| 68 |
-
"1033": 1374,
|
| 69 |
"1034": 979,
|
| 70 |
-
"
|
| 71 |
-
"
|
| 72 |
-
"
|
| 73 |
-
"
|
| 74 |
-
"
|
| 75 |
-
"
|
| 76 |
-
"
|
| 77 |
-
"
|
| 78 |
-
"
|
| 79 |
-
"
|
| 80 |
-
"
|
| 81 |
-
"
|
| 82 |
-
"
|
| 83 |
-
"
|
| 84 |
-
"
|
| 85 |
-
"
|
| 86 |
-
"
|
| 87 |
-
"
|
| 88 |
-
"
|
| 89 |
-
"
|
| 90 |
-
"
|
| 91 |
-
"
|
| 92 |
-
"
|
| 93 |
-
"
|
| 94 |
-
"
|
| 95 |
-
"
|
| 96 |
-
"
|
| 97 |
-
"
|
| 98 |
-
"
|
| 99 |
-
"
|
| 100 |
-
"
|
| 101 |
-
"
|
| 102 |
-
"
|
| 103 |
-
"
|
| 104 |
-
"
|
| 105 |
-
"
|
| 106 |
-
"
|
| 107 |
-
"
|
| 108 |
-
"
|
| 109 |
-
"
|
| 110 |
-
"
|
| 111 |
-
"
|
| 112 |
-
"
|
| 113 |
-
"
|
| 114 |
-
"
|
| 115 |
-
"
|
| 116 |
-
"
|
| 117 |
-
"
|
| 118 |
-
"
|
| 119 |
-
"
|
| 120 |
-
"
|
| 121 |
-
"
|
| 122 |
-
"
|
| 123 |
-
"
|
| 124 |
-
"
|
| 125 |
-
"
|
| 126 |
-
"
|
| 127 |
-
"
|
| 128 |
-
"
|
| 129 |
-
"
|
| 130 |
-
"
|
| 131 |
-
"
|
| 132 |
-
"
|
| 133 |
-
"
|
| 134 |
-
"
|
| 135 |
-
"
|
| 136 |
-
"
|
| 137 |
-
"
|
| 138 |
-
"
|
| 139 |
-
"
|
| 140 |
-
"
|
| 141 |
-
"
|
| 142 |
-
"
|
| 143 |
-
"
|
| 144 |
-
"
|
| 145 |
-
"
|
| 146 |
-
"
|
| 147 |
-
"
|
| 148 |
-
"
|
| 149 |
-
"
|
| 150 |
-
"
|
| 151 |
-
"
|
| 152 |
-
"
|
| 153 |
-
"
|
| 154 |
-
"
|
| 155 |
-
"
|
| 156 |
-
"
|
| 157 |
-
"
|
| 158 |
-
"
|
| 159 |
-
"
|
| 160 |
-
"
|
| 161 |
-
"
|
| 162 |
-
"
|
| 163 |
-
"
|
| 164 |
-
"
|
| 165 |
-
"
|
| 166 |
-
"
|
| 167 |
-
"
|
| 168 |
-
"
|
| 169 |
-
"
|
| 170 |
-
"
|
| 171 |
-
"
|
| 172 |
-
"
|
| 173 |
-
"
|
| 174 |
-
"
|
| 175 |
-
"
|
| 176 |
-
"
|
| 177 |
-
"
|
| 178 |
-
"
|
| 179 |
-
"
|
| 180 |
-
"
|
| 181 |
-
"
|
| 182 |
-
"
|
| 183 |
-
"
|
| 184 |
-
"
|
| 185 |
-
"
|
| 186 |
-
"
|
| 187 |
-
"
|
| 188 |
-
"
|
| 189 |
-
"
|
| 190 |
-
"
|
| 191 |
-
"
|
| 192 |
-
"
|
| 193 |
-
"
|
| 194 |
-
"
|
| 195 |
-
"
|
| 196 |
-
"
|
| 197 |
-
"
|
| 198 |
-
"
|
| 199 |
-
"
|
| 200 |
-
"
|
| 201 |
-
"
|
| 202 |
-
"
|
| 203 |
-
"
|
| 204 |
-
"
|
| 205 |
-
"
|
| 206 |
-
"
|
| 207 |
-
"
|
| 208 |
-
"
|
| 209 |
-
"
|
| 210 |
-
"
|
| 211 |
-
"
|
| 212 |
-
"
|
| 213 |
-
"
|
| 214 |
-
"
|
| 215 |
-
"
|
| 216 |
-
"
|
| 217 |
-
"
|
| 218 |
-
"
|
| 219 |
-
"
|
| 220 |
-
"
|
| 221 |
-
"
|
| 222 |
-
"
|
| 223 |
-
"
|
| 224 |
-
"
|
| 225 |
-
"
|
| 226 |
-
"
|
| 227 |
-
"
|
| 228 |
-
"
|
| 229 |
-
"
|
| 230 |
-
"
|
| 231 |
-
"
|
| 232 |
-
"
|
| 233 |
-
"
|
| 234 |
-
"
|
| 235 |
-
"
|
| 236 |
-
"
|
| 237 |
-
"
|
| 238 |
-
"
|
| 239 |
-
"
|
| 240 |
-
"
|
| 241 |
-
"
|
| 242 |
-
"
|
| 243 |
-
"
|
| 244 |
-
"
|
| 245 |
-
"
|
| 246 |
-
"
|
| 247 |
-
"
|
| 248 |
-
"
|
| 249 |
-
"
|
| 250 |
-
"
|
| 251 |
-
"
|
| 252 |
-
"
|
| 253 |
-
"
|
| 254 |
-
"
|
| 255 |
-
"
|
| 256 |
-
"
|
| 257 |
-
"
|
| 258 |
-
"
|
| 259 |
-
"
|
| 260 |
-
"
|
| 261 |
-
"
|
| 262 |
-
"
|
| 263 |
-
"
|
| 264 |
-
"
|
| 265 |
-
"
|
| 266 |
-
"
|
| 267 |
-
"
|
| 268 |
-
"
|
| 269 |
-
"
|
| 270 |
-
"
|
| 271 |
-
"
|
| 272 |
-
"
|
| 273 |
-
"
|
| 274 |
-
"
|
| 275 |
-
"
|
| 276 |
-
"
|
| 277 |
-
"
|
| 278 |
-
"
|
| 279 |
-
"
|
| 280 |
-
"
|
| 281 |
-
"
|
| 282 |
-
"
|
| 283 |
-
"
|
| 284 |
-
"
|
| 285 |
-
"
|
| 286 |
-
"
|
| 287 |
-
"
|
| 288 |
-
"
|
| 289 |
-
"
|
| 290 |
-
"
|
| 291 |
-
"
|
| 292 |
-
"
|
| 293 |
-
"
|
| 294 |
-
"
|
| 295 |
-
"
|
| 296 |
-
"
|
| 297 |
-
"
|
| 298 |
-
"
|
| 299 |
-
"
|
| 300 |
-
"
|
| 301 |
-
"
|
| 302 |
-
"
|
| 303 |
-
"
|
| 304 |
-
"
|
| 305 |
-
"
|
| 306 |
-
"
|
| 307 |
-
"
|
| 308 |
-
"
|
| 309 |
-
"
|
| 310 |
-
"
|
| 311 |
-
"
|
| 312 |
-
"
|
| 313 |
-
"
|
| 314 |
-
"
|
| 315 |
-
"
|
| 316 |
-
"
|
| 317 |
-
"
|
| 318 |
-
"
|
| 319 |
-
"
|
| 320 |
-
"
|
| 321 |
-
"
|
| 322 |
-
"
|
| 323 |
-
"
|
| 324 |
-
"
|
| 325 |
-
"
|
| 326 |
-
"
|
| 327 |
-
"
|
| 328 |
-
"
|
| 329 |
-
"
|
| 330 |
-
"
|
| 331 |
-
"
|
| 332 |
-
"
|
| 333 |
-
"
|
| 334 |
-
"
|
| 335 |
-
"
|
| 336 |
-
"
|
| 337 |
-
"
|
| 338 |
-
"
|
| 339 |
-
"
|
| 340 |
-
"
|
| 341 |
-
"
|
| 342 |
-
"
|
| 343 |
-
"
|
| 344 |
-
"
|
| 345 |
-
"
|
| 346 |
-
"
|
| 347 |
-
"
|
| 348 |
-
"
|
| 349 |
-
"
|
| 350 |
-
"
|
| 351 |
-
"
|
| 352 |
-
"
|
| 353 |
-
"
|
| 354 |
-
"
|
| 355 |
-
"
|
| 356 |
-
"
|
| 357 |
-
"
|
| 358 |
-
"
|
| 359 |
-
"
|
| 360 |
-
"
|
| 361 |
-
"
|
| 362 |
-
"
|
| 363 |
-
"
|
| 364 |
-
"
|
| 365 |
-
"
|
| 366 |
-
"
|
| 367 |
-
"
|
| 368 |
-
"
|
| 369 |
-
"
|
| 370 |
-
"
|
| 371 |
-
"
|
| 372 |
-
"
|
| 373 |
-
"
|
| 374 |
-
"
|
| 375 |
-
"
|
| 376 |
-
"
|
| 377 |
-
"
|
| 378 |
-
"
|
| 379 |
-
"
|
| 380 |
-
"
|
| 381 |
-
"
|
| 382 |
-
"
|
| 383 |
-
"
|
| 384 |
-
"
|
| 385 |
-
"
|
| 386 |
-
"
|
| 387 |
-
"
|
| 388 |
-
"
|
| 389 |
-
"
|
| 390 |
-
"
|
| 391 |
-
"
|
| 392 |
-
"
|
| 393 |
-
"
|
| 394 |
-
"
|
| 395 |
-
"
|
| 396 |
-
"
|
| 397 |
-
"
|
| 398 |
-
"
|
| 399 |
-
"
|
| 400 |
-
"
|
| 401 |
-
"
|
| 402 |
-
"
|
| 403 |
-
"
|
| 404 |
-
"
|
| 405 |
-
"
|
| 406 |
-
"
|
| 407 |
-
"
|
| 408 |
-
"
|
| 409 |
-
"
|
| 410 |
-
"
|
| 411 |
-
"
|
| 412 |
-
"
|
| 413 |
-
"
|
| 414 |
-
"
|
| 415 |
-
"
|
| 416 |
-
"
|
| 417 |
-
"
|
| 418 |
-
"
|
| 419 |
-
"
|
| 420 |
-
"
|
| 421 |
-
"
|
| 422 |
-
"
|
| 423 |
-
"
|
| 424 |
-
"
|
| 425 |
-
"
|
| 426 |
-
"
|
| 427 |
-
"
|
| 428 |
-
"
|
| 429 |
-
"
|
| 430 |
-
"
|
| 431 |
-
"
|
| 432 |
-
"
|
| 433 |
-
"
|
| 434 |
-
"
|
| 435 |
-
"
|
| 436 |
-
"
|
| 437 |
-
"
|
| 438 |
-
"
|
| 439 |
-
"
|
| 440 |
-
"
|
| 441 |
-
"
|
| 442 |
-
"
|
| 443 |
-
"
|
| 444 |
-
"
|
| 445 |
-
"
|
| 446 |
-
"
|
| 447 |
-
"
|
| 448 |
-
"
|
| 449 |
-
"
|
| 450 |
-
"
|
| 451 |
-
"
|
| 452 |
-
"
|
| 453 |
-
"
|
| 454 |
-
"
|
| 455 |
-
"
|
| 456 |
-
"
|
| 457 |
-
"
|
| 458 |
-
"
|
| 459 |
-
"
|
| 460 |
-
"
|
| 461 |
-
"
|
| 462 |
-
"
|
| 463 |
-
"
|
| 464 |
-
"
|
| 465 |
-
"
|
| 466 |
-
"
|
| 467 |
-
"
|
| 468 |
-
"
|
| 469 |
-
"
|
| 470 |
-
"
|
| 471 |
-
"
|
| 472 |
-
"
|
| 473 |
-
"
|
| 474 |
-
"
|
| 475 |
-
"
|
| 476 |
-
"
|
| 477 |
-
"
|
| 478 |
-
"
|
| 479 |
-
"
|
| 480 |
-
"
|
| 481 |
-
"
|
| 482 |
-
"
|
| 483 |
-
"
|
| 484 |
-
"
|
| 485 |
-
"
|
| 486 |
-
"
|
| 487 |
-
"
|
| 488 |
-
"
|
| 489 |
-
"
|
| 490 |
-
"
|
| 491 |
-
"
|
| 492 |
-
"
|
| 493 |
-
"
|
| 494 |
-
"
|
| 495 |
-
"
|
| 496 |
-
"
|
| 497 |
-
"
|
| 498 |
-
"
|
| 499 |
-
"
|
| 500 |
-
"
|
| 501 |
-
"
|
| 502 |
-
"
|
| 503 |
-
"
|
| 504 |
-
"
|
| 505 |
-
"
|
| 506 |
-
"
|
| 507 |
-
"
|
| 508 |
-
"
|
| 509 |
-
"
|
| 510 |
-
"
|
| 511 |
-
"
|
| 512 |
-
"
|
| 513 |
-
"
|
| 514 |
-
"
|
| 515 |
-
"
|
| 516 |
-
"
|
| 517 |
-
"
|
| 518 |
-
"
|
| 519 |
-
"
|
| 520 |
-
"
|
| 521 |
-
"
|
| 522 |
-
"243": 508,
|
| 523 |
-
"244": 444,
|
| 524 |
-
"245": 830,
|
| 525 |
-
"246": 1018,
|
| 526 |
-
"247": 587,
|
| 527 |
-
"248": 588,
|
| 528 |
-
"249": 466,
|
| 529 |
-
"25": 405,
|
| 530 |
-
"250": 655,
|
| 531 |
-
"251": 656,
|
| 532 |
-
"252": 657,
|
| 533 |
-
"253": 589,
|
| 534 |
-
"254": 831,
|
| 535 |
-
"255": 832,
|
| 536 |
-
"256": 481,
|
| 537 |
-
"257": 1216,
|
| 538 |
-
"258": 658,
|
| 539 |
-
"259": 549,
|
| 540 |
-
"26": 403,
|
| 541 |
-
"260": 833,
|
| 542 |
-
"261": 834,
|
| 543 |
-
"262": 835,
|
| 544 |
-
"263": 659,
|
| 545 |
-
"264": 590,
|
| 546 |
-
"265": 1217,
|
| 547 |
-
"266": 733,
|
| 548 |
-
"267": 836,
|
| 549 |
-
"268": 837,
|
| 550 |
-
"269": 1218,
|
| 551 |
-
"27": 396,
|
| 552 |
-
"270": 734,
|
| 553 |
-
"271": 735,
|
| 554 |
-
"272": 509,
|
| 555 |
-
"273": 1019,
|
| 556 |
-
"274": 736,
|
| 557 |
-
"275": 660,
|
| 558 |
-
"276": 550,
|
| 559 |
-
"277": 591,
|
| 560 |
-
"278": 661,
|
| 561 |
-
"279": 838,
|
| 562 |
-
"28": 391,
|
| 563 |
-
"280": 592,
|
| 564 |
-
"281": 839,
|
| 565 |
-
"282": 840,
|
| 566 |
-
"283": 737,
|
| 567 |
-
"284": 1219,
|
| 568 |
-
"285": 662,
|
| 569 |
-
"286": 663,
|
| 570 |
-
"287": 738,
|
| 571 |
-
"288": 841,
|
| 572 |
-
"289": 664,
|
| 573 |
-
"29": 141,
|
| 574 |
-
"290": 739,
|
| 575 |
-
"291": 1020,
|
| 576 |
-
"292": 593,
|
| 577 |
-
"293": 740,
|
| 578 |
-
"294": 665,
|
| 579 |
-
"295": 510,
|
| 580 |
-
"296": 741,
|
| 581 |
-
"297": 482,
|
| 582 |
-
"298": 742,
|
| 583 |
-
"299": 666,
|
| 584 |
-
"3": 36,
|
| 585 |
-
"30": 409,
|
| 586 |
-
"300": 667,
|
| 587 |
-
"301": 511,
|
| 588 |
-
"302": 1021,
|
| 589 |
-
"303": 842,
|
| 590 |
-
"304": 594,
|
| 591 |
-
"305": 1022,
|
| 592 |
-
"306": 743,
|
| 593 |
-
"307": 1023,
|
| 594 |
-
"308": 668,
|
| 595 |
-
"309": 595,
|
| 596 |
-
"31": 410,
|
| 597 |
-
"310": 596,
|
| 598 |
-
"311": 512,
|
| 599 |
-
"312": 1220,
|
| 600 |
-
"313": 669,
|
| 601 |
-
"314": 843,
|
| 602 |
-
"315": 483,
|
| 603 |
-
"316": 1024,
|
| 604 |
-
"317": 844,
|
| 605 |
-
"318": 845,
|
| 606 |
-
"319": 846,
|
| 607 |
-
"32": 395,
|
| 608 |
-
"320": 597,
|
| 609 |
-
"321": 1221,
|
| 610 |
-
"322": 744,
|
| 611 |
-
"323": 670,
|
| 612 |
-
"324": 745,
|
| 613 |
-
"325": 598,
|
| 614 |
-
"326": 847,
|
| 615 |
-
"327": 429,
|
| 616 |
-
"328": 513,
|
| 617 |
-
"329": 671,
|
| 618 |
-
"33": 398,
|
| 619 |
-
"330": 1562,
|
| 620 |
-
"331": 848,
|
| 621 |
-
"332": 1222,
|
| 622 |
-
"333": 849,
|
| 623 |
-
"334": 514,
|
| 624 |
-
"335": 599,
|
| 625 |
-
"336": 672,
|
| 626 |
-
"337": 600,
|
| 627 |
-
"338": 515,
|
| 628 |
-
"339": 1025,
|
| 629 |
-
"34": 390,
|
| 630 |
-
"340": 1026,
|
| 631 |
-
"341": 850,
|
| 632 |
-
"342": 851,
|
| 633 |
-
"343": 601,
|
| 634 |
-
"344": 445,
|
| 635 |
-
"345": 484,
|
| 636 |
-
"346": 673,
|
| 637 |
-
"347": 852,
|
| 638 |
-
"348": 853,
|
| 639 |
-
"349": 1027,
|
| 640 |
-
"35": 401,
|
| 641 |
-
"350": 1563,
|
| 642 |
-
"351": 746,
|
| 643 |
-
"352": 674,
|
| 644 |
-
"353": 1028,
|
| 645 |
-
"354": 485,
|
| 646 |
-
"355": 747,
|
| 647 |
-
"356": 854,
|
| 648 |
-
"357": 748,
|
| 649 |
-
"358": 1029,
|
| 650 |
-
"359": 855,
|
| 651 |
-
"36": 399,
|
| 652 |
-
"360": 602,
|
| 653 |
-
"361": 551,
|
| 654 |
-
"362": 856,
|
| 655 |
-
"363": 603,
|
| 656 |
-
"364": 604,
|
| 657 |
-
"365": 675,
|
| 658 |
-
"366": 605,
|
| 659 |
-
"367": 606,
|
| 660 |
-
"368": 857,
|
| 661 |
-
"369": 676,
|
| 662 |
-
"37": 404,
|
| 663 |
-
"370": 749,
|
| 664 |
-
"371": 552,
|
| 665 |
-
"372": 677,
|
| 666 |
-
"373": 1030,
|
| 667 |
-
"374": 1223,
|
| 668 |
-
"375": 678,
|
| 669 |
-
"376": 750,
|
| 670 |
-
"377": 607,
|
| 671 |
-
"378": 1224,
|
| 672 |
-
"379": 446,
|
| 673 |
-
"38": 414,
|
| 674 |
-
"380": 751,
|
| 675 |
-
"381": 679,
|
| 676 |
-
"382": 752,
|
| 677 |
-
"383": 1564,
|
| 678 |
-
"384": 1031,
|
| 679 |
-
"385": 1032,
|
| 680 |
-
"386": 858,
|
| 681 |
-
"387": 753,
|
| 682 |
-
"388": 680,
|
| 683 |
-
"389": 859,
|
| 684 |
-
"39": 388,
|
| 685 |
-
"390": 608,
|
| 686 |
-
"391": 860,
|
| 687 |
-
"392": 681,
|
| 688 |
-
"393": 754,
|
| 689 |
-
"394": 755,
|
| 690 |
-
"395": 1033,
|
| 691 |
-
"396": 756,
|
| 692 |
-
"397": 757,
|
| 693 |
-
"398": 1565,
|
| 694 |
-
"399": 1225,
|
| 695 |
-
"4": 39,
|
| 696 |
-
"40": 402,
|
| 697 |
-
"400": 682,
|
| 698 |
-
"401": 758,
|
| 699 |
-
"402": 516,
|
| 700 |
-
"403": 553,
|
| 701 |
-
"404": 1226,
|
| 702 |
-
"405": 609,
|
| 703 |
-
"406": 517,
|
| 704 |
-
"407": 861,
|
| 705 |
-
"408": 610,
|
| 706 |
-
"409": 611,
|
| 707 |
-
"41": 862,
|
| 708 |
-
"410": 863,
|
| 709 |
-
"411": 1034,
|
| 710 |
-
"412": 683,
|
| 711 |
-
"413": 1566,
|
| 712 |
-
"414": 612,
|
| 713 |
-
"415": 554,
|
| 714 |
-
"416": 864,
|
| 715 |
-
"417": 1227,
|
| 716 |
-
"418": 865,
|
| 717 |
-
"419": 866,
|
| 718 |
-
"42": 759,
|
| 719 |
-
"420": 613,
|
| 720 |
-
"421": 614,
|
| 721 |
-
"422": 867,
|
| 722 |
-
"423": 684,
|
| 723 |
-
"424": 685,
|
| 724 |
-
"425": 760,
|
| 725 |
-
"426": 686,
|
| 726 |
-
"427": 615,
|
| 727 |
-
"428": 687,
|
| 728 |
-
"429": 868,
|
| 729 |
-
"43": 421,
|
| 730 |
-
"430": 1035,
|
| 731 |
-
"431": 688,
|
| 732 |
-
"432": 869,
|
| 733 |
-
"433": 870,
|
| 734 |
-
"434": 871,
|
| 735 |
-
"435": 872,
|
| 736 |
-
"436": 761,
|
| 737 |
-
"437": 873,
|
| 738 |
-
"438": 486,
|
| 739 |
-
"439": 616,
|
| 740 |
-
"44": 518,
|
| 741 |
-
"440": 1228,
|
| 742 |
-
"441": 1567,
|
| 743 |
-
"442": 617,
|
| 744 |
-
"443": 618,
|
| 745 |
-
"444": 555,
|
| 746 |
-
"445": 762,
|
| 747 |
-
"446": 619,
|
| 748 |
-
"447": 763,
|
| 749 |
-
"448": 874,
|
| 750 |
-
"449": 689,
|
| 751 |
-
"45": 519,
|
| 752 |
-
"450": 764,
|
| 753 |
-
"451": 690,
|
| 754 |
-
"452": 765,
|
| 755 |
-
"453": 1036,
|
| 756 |
-
"454": 691,
|
| 757 |
-
"455": 620,
|
| 758 |
-
"456": 692,
|
| 759 |
-
"457": 766,
|
| 760 |
-
"458": 767,
|
| 761 |
-
"459": 875,
|
| 762 |
-
"46": 487,
|
| 763 |
-
"460": 1037,
|
| 764 |
-
"461": 768,
|
| 765 |
-
"462": 1229,
|
| 766 |
-
"463": 621,
|
| 767 |
-
"464": 693,
|
| 768 |
-
"465": 622,
|
| 769 |
-
"466": 520,
|
| 770 |
-
"467": 694,
|
| 771 |
-
"469": 769,
|
| 772 |
-
"47": 447,
|
| 773 |
-
"470": 876,
|
| 774 |
-
"471": 770,
|
| 775 |
-
"472": 877,
|
| 776 |
-
"473": 1230,
|
| 777 |
-
"474": 695,
|
| 778 |
-
"475": 771,
|
| 779 |
-
"476": 1231,
|
| 780 |
-
"477": 488,
|
| 781 |
-
"478": 878,
|
| 782 |
-
"479": 1038,
|
| 783 |
-
"48": 467,
|
| 784 |
-
"480": 772,
|
| 785 |
-
"481": 1039,
|
| 786 |
-
"482": 623,
|
| 787 |
-
"483": 773,
|
| 788 |
-
"484": 696,
|
| 789 |
-
"485": 1232,
|
| 790 |
-
"486": 1040,
|
| 791 |
-
"487": 879,
|
| 792 |
-
"488": 880,
|
| 793 |
-
"489": 774,
|
| 794 |
-
"49": 775,
|
| 795 |
-
"490": 881,
|
| 796 |
-
"491": 882,
|
| 797 |
-
"492": 776,
|
| 798 |
-
"493": 883,
|
| 799 |
-
"494": 777,
|
| 800 |
-
"495": 884,
|
| 801 |
-
"496": 697,
|
| 802 |
-
"497": 778,
|
| 803 |
-
"498": 698,
|
| 804 |
-
"499": 1041,
|
| 805 |
-
"5": 104,
|
| 806 |
-
"50": 105,
|
| 807 |
-
"500": 148,
|
| 808 |
-
"501": 699,
|
| 809 |
-
"502": 885,
|
| 810 |
-
"503": 1042,
|
| 811 |
-
"504": 1043,
|
| 812 |
-
"505": 1233,
|
| 813 |
-
"506": 1044,
|
| 814 |
-
"507": 624,
|
| 815 |
-
"508": 886,
|
| 816 |
-
"509": 887,
|
| 817 |
-
"51": 700,
|
| 818 |
-
"510": 1234,
|
| 819 |
-
"511": 888,
|
| 820 |
-
"512": 1045,
|
| 821 |
-
"513": 889,
|
| 822 |
-
"514": 779,
|
| 823 |
-
"515": 1235,
|
| 824 |
-
"516": 1046,
|
| 825 |
-
"517": 890,
|
| 826 |
-
"518": 1236,
|
| 827 |
-
"519": 1047,
|
| 828 |
-
"52": 556,
|
| 829 |
-
"520": 891,
|
| 830 |
-
"522": 1237,
|
| 831 |
-
"523": 892,
|
| 832 |
-
"524": 893,
|
| 833 |
-
"525": 894,
|
| 834 |
-
"526": 1568,
|
| 835 |
-
"527": 1238,
|
| 836 |
-
"528": 780,
|
| 837 |
-
"529": 895,
|
| 838 |
-
"53": 468,
|
| 839 |
-
"530": 1239,
|
| 840 |
-
"531": 896,
|
| 841 |
-
"532": 1048,
|
| 842 |
-
"533": 625,
|
| 843 |
-
"534": 897,
|
| 844 |
-
"535": 781,
|
| 845 |
-
"537": 898,
|
| 846 |
-
"538": 782,
|
| 847 |
-
"539": 1049,
|
| 848 |
-
"54": 557,
|
| 849 |
-
"540": 701,
|
| 850 |
-
"541": 1569,
|
| 851 |
-
"542": 702,
|
| 852 |
-
"543": 558,
|
| 853 |
-
"544": 1570,
|
| 854 |
-
"545": 1240,
|
| 855 |
-
"546": 899,
|
| 856 |
-
"547": 1571,
|
| 857 |
-
"548": 1050,
|
| 858 |
-
"549": 783,
|
| 859 |
-
"55": 626,
|
| 860 |
-
"550": 521,
|
| 861 |
-
"551": 1241,
|
| 862 |
-
"552": 784,
|
| 863 |
-
"553": 703,
|
| 864 |
-
"554": 1572,
|
| 865 |
-
"555": 1051,
|
| 866 |
-
"556": 900,
|
| 867 |
-
"557": 1242,
|
| 868 |
-
"558": 522,
|
| 869 |
-
"559": 1052,
|
| 870 |
-
"56": 627,
|
| 871 |
-
"560": 704,
|
| 872 |
-
"561": 523,
|
| 873 |
-
"562": 1243,
|
| 874 |
-
"563": 1053,
|
| 875 |
-
"564": 785,
|
| 876 |
-
"565": 1244,
|
| 877 |
-
"566": 1573,
|
| 878 |
-
"567": 786,
|
| 879 |
-
"568": 901,
|
| 880 |
"569": 787,
|
| 881 |
-
"57":
|
| 882 |
-
"
|
| 883 |
-
"
|
| 884 |
-
"
|
| 885 |
-
"
|
| 886 |
-
"
|
| 887 |
-
"
|
| 888 |
-
"
|
| 889 |
-
"
|
| 890 |
-
"
|
| 891 |
-
"
|
| 892 |
-
"
|
| 893 |
-
"
|
| 894 |
-
"
|
| 895 |
-
"
|
| 896 |
-
"
|
| 897 |
-
"
|
| 898 |
-
"
|
| 899 |
-
"
|
| 900 |
-
"
|
| 901 |
-
"
|
| 902 |
-
"
|
| 903 |
-
"
|
| 904 |
-
"
|
| 905 |
-
"
|
| 906 |
-
"
|
| 907 |
-
"
|
| 908 |
-
"
|
| 909 |
-
"
|
| 910 |
-
"
|
| 911 |
-
"
|
| 912 |
-
"
|
| 913 |
-
"
|
| 914 |
-
"
|
| 915 |
-
"
|
| 916 |
-
"
|
| 917 |
-
"
|
| 918 |
-
"
|
| 919 |
-
"603": 913,
|
| 920 |
-
"604": 1250,
|
| 921 |
-
"605": 1060,
|
| 922 |
-
"606": 707,
|
| 923 |
-
"607": 1061,
|
| 924 |
-
"609": 914,
|
| 925 |
-
"61": 793,
|
| 926 |
-
"610": 1251,
|
| 927 |
-
"611": 1576,
|
| 928 |
-
"612": 915,
|
| 929 |
-
"613": 1577,
|
| 930 |
-
"614": 1578,
|
| 931 |
-
"615": 1579,
|
| 932 |
-
"616": 708,
|
| 933 |
-
"618": 1252,
|
| 934 |
-
"619": 1062,
|
| 935 |
-
"62": 524,
|
| 936 |
-
"620": 1580,
|
| 937 |
-
"621": 1063,
|
| 938 |
-
"622": 794,
|
| 939 |
-
"623": 1253,
|
| 940 |
-
"624": 1064,
|
| 941 |
-
"625": 559,
|
| 942 |
-
"626": 916,
|
| 943 |
-
"627": 1581,
|
| 944 |
-
"628": 1065,
|
| 945 |
-
"629": 1066,
|
| 946 |
-
"63": 917,
|
| 947 |
-
"630": 1582,
|
| 948 |
-
"631": 1067,
|
| 949 |
-
"632": 1254,
|
| 950 |
-
"633": 918,
|
| 951 |
-
"634": 919,
|
| 952 |
-
"635": 920,
|
| 953 |
"636": 1255,
|
| 954 |
-
"
|
| 955 |
-
"
|
| 956 |
-
"
|
| 957 |
-
"
|
| 958 |
-
"
|
| 959 |
-
"
|
| 960 |
-
"
|
| 961 |
-
"
|
| 962 |
-
"
|
| 963 |
-
"
|
| 964 |
-
"646": 1070,
|
| 965 |
-
"647": 795,
|
| 966 |
-
"648": 1071,
|
| 967 |
"649": 1258,
|
| 968 |
-
"65":
|
| 969 |
-
"651":
|
| 970 |
-
"
|
| 971 |
-
"
|
| 972 |
-
"
|
| 973 |
-
"
|
| 974 |
-
"
|
| 975 |
-
"
|
| 976 |
-
"
|
| 977 |
-
"
|
| 978 |
-
"
|
| 979 |
-
"
|
| 980 |
-
"
|
| 981 |
-
"
|
| 982 |
-
"
|
| 983 |
-
"
|
| 984 |
-
"
|
| 985 |
-
"
|
| 986 |
-
"
|
| 987 |
-
"
|
| 988 |
-
"
|
| 989 |
-
"
|
| 990 |
-
"
|
| 991 |
-
"
|
| 992 |
-
"
|
| 993 |
-
"
|
| 994 |
-
"
|
| 995 |
-
"
|
| 996 |
-
"
|
| 997 |
-
"
|
| 998 |
-
"
|
| 999 |
-
"
|
| 1000 |
-
"
|
| 1001 |
-
"
|
| 1002 |
-
"
|
| 1003 |
-
"
|
| 1004 |
-
"
|
| 1005 |
-
"
|
| 1006 |
-
"
|
| 1007 |
-
"
|
| 1008 |
-
"
|
| 1009 |
-
"
|
| 1010 |
-
"
|
| 1011 |
-
"
|
| 1012 |
-
"
|
| 1013 |
-
"
|
| 1014 |
-
"
|
| 1015 |
-
"
|
| 1016 |
-
"
|
| 1017 |
-
"
|
| 1018 |
-
"
|
| 1019 |
-
"
|
| 1020 |
-
"
|
| 1021 |
-
"
|
| 1022 |
-
"
|
| 1023 |
-
"
|
| 1024 |
-
"
|
| 1025 |
-
"
|
| 1026 |
-
"
|
| 1027 |
-
"
|
| 1028 |
-
"
|
| 1029 |
-
"
|
| 1030 |
-
"
|
| 1031 |
-
"
|
| 1032 |
-
"
|
| 1033 |
-
"
|
| 1034 |
-
"
|
| 1035 |
-
"
|
| 1036 |
-
"
|
| 1037 |
-
"
|
| 1038 |
-
"
|
| 1039 |
-
"715": 711,
|
| 1040 |
-
"716": 712,
|
| 1041 |
-
"717": 1283,
|
| 1042 |
-
"718": 1591,
|
| 1043 |
-
"719": 1592,
|
| 1044 |
-
"72": 713,
|
| 1045 |
-
"720": 1284,
|
| 1046 |
-
"721": 1285,
|
| 1047 |
-
"722": 1286,
|
| 1048 |
-
"723": 932,
|
| 1049 |
-
"724": 933,
|
| 1050 |
-
"725": 1287,
|
| 1051 |
-
"726": 1593,
|
| 1052 |
-
"727": 1288,
|
| 1053 |
-
"728": 1087,
|
| 1054 |
-
"73": 526,
|
| 1055 |
-
"730": 634,
|
| 1056 |
-
"731": 802,
|
| 1057 |
-
"732": 934,
|
| 1058 |
-
"733": 1289,
|
| 1059 |
-
"734": 1290,
|
| 1060 |
-
"735": 1594,
|
| 1061 |
-
"736": 1595,
|
| 1062 |
-
"737": 1088,
|
| 1063 |
-
"738": 1596,
|
| 1064 |
-
"739": 1089,
|
| 1065 |
-
"74": 527,
|
| 1066 |
-
"741": 1597,
|
| 1067 |
-
"742": 803,
|
| 1068 |
-
"743": 1291,
|
| 1069 |
-
"744": 1090,
|
| 1070 |
-
"745": 935,
|
| 1071 |
-
"746": 1091,
|
| 1072 |
-
"747": 1092,
|
| 1073 |
-
"748": 1093,
|
| 1074 |
-
"749": 1292,
|
| 1075 |
-
"75": 415,
|
| 1076 |
-
"750": 1293,
|
| 1077 |
-
"751": 714,
|
| 1078 |
-
"752": 936,
|
| 1079 |
-
"753": 1094,
|
| 1080 |
-
"754": 1294,
|
| 1081 |
-
"756": 1295,
|
| 1082 |
-
"757": 1095,
|
| 1083 |
-
"758": 1096,
|
| 1084 |
-
"76": 635,
|
| 1085 |
-
"760": 1296,
|
| 1086 |
-
"761": 1297,
|
| 1087 |
-
"762": 1097,
|
| 1088 |
-
"763": 937,
|
| 1089 |
-
"764": 804,
|
| 1090 |
-
"765": 1598,
|
| 1091 |
-
"766": 1098,
|
| 1092 |
-
"767": 1298,
|
| 1093 |
-
"768": 715,
|
| 1094 |
-
"769": 1599,
|
| 1095 |
-
"77": 432,
|
| 1096 |
-
"771": 1600,
|
| 1097 |
-
"772": 1299,
|
| 1098 |
-
"773": 1099,
|
| 1099 |
-
"774": 1100,
|
| 1100 |
-
"775": 1601,
|
| 1101 |
-
"776": 938,
|
| 1102 |
-
"777": 1602,
|
| 1103 |
-
"778": 1603,
|
| 1104 |
-
"779": 561,
|
| 1105 |
-
"78": 636,
|
| 1106 |
-
"780": 1101,
|
| 1107 |
-
"781": 1300,
|
| 1108 |
-
"782": 1604,
|
| 1109 |
"783": 1301,
|
| 1110 |
-
"784":
|
| 1111 |
-
"
|
| 1112 |
-
"
|
| 1113 |
-
"
|
| 1114 |
-
"
|
| 1115 |
-
"
|
| 1116 |
-
"
|
| 1117 |
-
"
|
| 1118 |
-
"
|
| 1119 |
-
"
|
| 1120 |
-
"
|
| 1121 |
-
"
|
| 1122 |
-
"
|
| 1123 |
-
"
|
| 1124 |
-
"
|
| 1125 |
-
"
|
| 1126 |
-
"
|
| 1127 |
-
"
|
| 1128 |
-
"
|
| 1129 |
-
"
|
| 1130 |
-
"
|
| 1131 |
-
"
|
| 1132 |
-
"803": 943,
|
| 1133 |
-
"804": 944,
|
| 1134 |
-
"805": 1105,
|
| 1135 |
-
"806": 945,
|
| 1136 |
-
"807": 1610,
|
| 1137 |
-
"808": 946,
|
| 1138 |
-
"809": 1611,
|
| 1139 |
-
"81": 562,
|
| 1140 |
-
"810": 947,
|
| 1141 |
-
"811": 1307,
|
| 1142 |
-
"812": 1612,
|
| 1143 |
-
"813": 1308,
|
| 1144 |
-
"814": 948,
|
| 1145 |
-
"815": 1613,
|
| 1146 |
-
"816": 1106,
|
| 1147 |
-
"817": 717,
|
| 1148 |
-
"818": 1107,
|
| 1149 |
-
"819": 805,
|
| 1150 |
-
"82": 418,
|
| 1151 |
-
"820": 949,
|
| 1152 |
-
"821": 950,
|
| 1153 |
-
"822": 1309,
|
| 1154 |
-
"823": 951,
|
| 1155 |
-
"824": 1310,
|
| 1156 |
-
"825": 1614,
|
| 1157 |
-
"826": 952,
|
| 1158 |
-
"827": 1615,
|
| 1159 |
-
"828": 953,
|
| 1160 |
"829": 1311,
|
| 1161 |
-
"83":
|
| 1162 |
-
"830":
|
| 1163 |
-
"831":
|
| 1164 |
-
"
|
| 1165 |
-
"
|
| 1166 |
-
"
|
| 1167 |
-
"
|
| 1168 |
-
"
|
| 1169 |
-
"
|
| 1170 |
-
"
|
| 1171 |
-
"
|
| 1172 |
-
"
|
| 1173 |
-
"
|
| 1174 |
-
"
|
| 1175 |
-
"
|
| 1176 |
-
"
|
| 1177 |
-
"
|
| 1178 |
-
"
|
| 1179 |
-
"
|
| 1180 |
-
"
|
| 1181 |
-
"
|
| 1182 |
-
"
|
| 1183 |
-
"
|
| 1184 |
-
"
|
| 1185 |
-
"
|
| 1186 |
-
"
|
| 1187 |
-
"
|
| 1188 |
-
"
|
| 1189 |
-
"
|
| 1190 |
-
"
|
| 1191 |
-
"
|
| 1192 |
-
"
|
| 1193 |
-
"
|
| 1194 |
-
"
|
| 1195 |
-
"
|
| 1196 |
-
"
|
| 1197 |
-
"
|
| 1198 |
-
"
|
| 1199 |
-
"
|
| 1200 |
-
"
|
| 1201 |
-
"
|
| 1202 |
-
"
|
| 1203 |
-
"
|
| 1204 |
-
"
|
| 1205 |
-
"
|
| 1206 |
-
"
|
| 1207 |
-
"
|
| 1208 |
-
"
|
| 1209 |
-
"
|
| 1210 |
-
"
|
| 1211 |
-
"
|
| 1212 |
-
"
|
| 1213 |
-
"
|
| 1214 |
-
"
|
| 1215 |
-
"
|
| 1216 |
-
"
|
| 1217 |
-
"
|
| 1218 |
-
"
|
| 1219 |
-
"
|
| 1220 |
-
"
|
| 1221 |
-
"
|
| 1222 |
-
"
|
| 1223 |
-
"
|
| 1224 |
-
"
|
| 1225 |
-
"
|
| 1226 |
-
"
|
| 1227 |
-
"
|
| 1228 |
-
"
|
| 1229 |
-
"
|
| 1230 |
-
"
|
| 1231 |
-
"
|
| 1232 |
-
"
|
| 1233 |
-
"
|
| 1234 |
-
"
|
| 1235 |
-
"
|
| 1236 |
-
"
|
| 1237 |
-
"
|
| 1238 |
-
"
|
| 1239 |
-
"
|
| 1240 |
-
"
|
| 1241 |
-
"
|
| 1242 |
-
"
|
| 1243 |
-
"
|
| 1244 |
-
"
|
| 1245 |
-
"
|
| 1246 |
-
"
|
| 1247 |
-
"
|
| 1248 |
-
"916": 1336,
|
| 1249 |
-
"917": 1124,
|
| 1250 |
-
"918": 1633,
|
| 1251 |
-
"92": 565,
|
| 1252 |
-
"920": 1337,
|
| 1253 |
-
"921": 968,
|
| 1254 |
-
"922": 1634,
|
| 1255 |
-
"923": 1338,
|
| 1256 |
-
"924": 1125,
|
| 1257 |
-
"925": 1126,
|
| 1258 |
-
"926": 1127,
|
| 1259 |
-
"927": 1339,
|
| 1260 |
-
"928": 1635,
|
| 1261 |
-
"929": 1636,
|
| 1262 |
-
"93": 529,
|
| 1263 |
-
"930": 1637,
|
| 1264 |
-
"932": 1128,
|
| 1265 |
-
"933": 1340,
|
| 1266 |
-
"934": 1638,
|
| 1267 |
-
"935": 1341,
|
| 1268 |
-
"936": 1342,
|
| 1269 |
-
"937": 1343,
|
| 1270 |
-
"938": 1344,
|
| 1271 |
-
"939": 1639,
|
| 1272 |
-
"94": 566,
|
| 1273 |
-
"940": 1345,
|
| 1274 |
-
"941": 1129,
|
| 1275 |
-
"942": 1640,
|
| 1276 |
-
"943": 1641,
|
| 1277 |
-
"944": 1642,
|
| 1278 |
-
"945": 1130,
|
| 1279 |
-
"946": 969,
|
| 1280 |
-
"947": 970,
|
| 1281 |
-
"948": 1346,
|
| 1282 |
-
"949": 1347,
|
| 1283 |
-
"95": 567,
|
| 1284 |
-
"951": 1643,
|
| 1285 |
-
"952": 971,
|
| 1286 |
-
"953": 1644,
|
| 1287 |
-
"954": 1131,
|
| 1288 |
-
"956": 1645,
|
| 1289 |
-
"957": 1646,
|
| 1290 |
-
"958": 1647,
|
| 1291 |
-
"959": 810,
|
| 1292 |
-
"96": 640,
|
| 1293 |
-
"960": 1348,
|
| 1294 |
-
"961": 811,
|
| 1295 |
-
"962": 1349,
|
| 1296 |
-
"963": 1350,
|
| 1297 |
-
"964": 1132,
|
| 1298 |
-
"965": 1133,
|
| 1299 |
-
"966": 1648,
|
| 1300 |
-
"967": 1649,
|
| 1301 |
-
"968": 1351,
|
| 1302 |
-
"97": 472,
|
| 1303 |
-
"970": 1650,
|
| 1304 |
-
"971": 1352,
|
| 1305 |
-
"972": 1353,
|
| 1306 |
-
"974": 1354,
|
| 1307 |
-
"975": 1651,
|
| 1308 |
-
"976": 1652,
|
| 1309 |
-
"977": 1355,
|
| 1310 |
-
"979": 1356,
|
| 1311 |
-
"98": 491,
|
| 1312 |
-
"980": 1653,
|
| 1313 |
-
"981": 1654,
|
| 1314 |
-
"982": 1134,
|
| 1315 |
-
"983": 1357,
|
| 1316 |
-
"984": 1655,
|
| 1317 |
-
"985": 1656,
|
| 1318 |
-
"986": 972,
|
| 1319 |
-
"987": 1657,
|
| 1320 |
-
"988": 812,
|
| 1321 |
-
"99": 146,
|
| 1322 |
-
"990": 1658,
|
| 1323 |
-
"991": 1358,
|
| 1324 |
-
"992": 1659,
|
| 1325 |
-
"993": 1359,
|
| 1326 |
-
"994": 973,
|
| 1327 |
-
"995": 1660,
|
| 1328 |
-
"997": 1661,
|
| 1329 |
-
":": 16,
|
| 1330 |
-
";": 223,
|
| 1331 |
"<": 7,
|
| 1332 |
"<bos>": 1,
|
| 1333 |
"<eos>": 2,
|
| 1334 |
"<pad>": 0,
|
| 1335 |
"<unk>": 3,
|
| 1336 |
-
"=":
|
| 1337 |
-
">":
|
| 1338 |
-
"?":
|
| 1339 |
-
"@":
|
| 1340 |
-
"A":
|
| 1341 |
-
"
|
| 1342 |
-
"
|
| 1343 |
-
"
|
| 1344 |
-
"
|
| 1345 |
-
"
|
| 1346 |
-
"
|
| 1347 |
-
"
|
| 1348 |
-
"
|
| 1349 |
-
"
|
| 1350 |
-
"
|
| 1351 |
-
"
|
| 1352 |
-
"
|
| 1353 |
-
"
|
| 1354 |
-
"
|
| 1355 |
-
"
|
| 1356 |
-
"
|
| 1357 |
-
"
|
| 1358 |
-
"
|
| 1359 |
-
"
|
| 1360 |
-
"
|
| 1361 |
-
"
|
| 1362 |
-
"
|
| 1363 |
-
"
|
| 1364 |
-
"
|
| 1365 |
-
"
|
| 1366 |
-
"
|
| 1367 |
-
"
|
| 1368 |
-
"
|
| 1369 |
-
"
|
| 1370 |
-
"
|
| 1371 |
-
"
|
| 1372 |
-
"
|
| 1373 |
-
"
|
| 1374 |
-
"
|
| 1375 |
-
"
|
| 1376 |
-
"
|
| 1377 |
-
"
|
| 1378 |
-
"
|
| 1379 |
-
"
|
| 1380 |
-
"
|
| 1381 |
-
"
|
| 1382 |
-
"
|
| 1383 |
-
"
|
| 1384 |
-
"
|
| 1385 |
-
"
|
| 1386 |
-
"
|
| 1387 |
-
"
|
| 1388 |
-
"
|
| 1389 |
-
"
|
| 1390 |
-
"
|
| 1391 |
-
"
|
| 1392 |
-
"
|
| 1393 |
-
"
|
| 1394 |
-
"
|
| 1395 |
-
"
|
| 1396 |
-
"
|
| 1397 |
-
"
|
| 1398 |
-
"
|
| 1399 |
-
"
|
| 1400 |
-
"
|
| 1401 |
-
"
|
| 1402 |
-
"
|
| 1403 |
-
"
|
| 1404 |
-
"
|
| 1405 |
-
"
|
| 1406 |
-
"
|
| 1407 |
-
"
|
| 1408 |
-
"
|
| 1409 |
-
"
|
| 1410 |
-
"
|
| 1411 |
-
"
|
| 1412 |
-
"
|
| 1413 |
-
"
|
| 1414 |
-
"
|
| 1415 |
-
"
|
| 1416 |
-
"
|
| 1417 |
-
"
|
| 1418 |
-
"
|
| 1419 |
-
"
|
| 1420 |
-
"
|
| 1421 |
-
"
|
| 1422 |
-
"
|
| 1423 |
-
"
|
| 1424 |
-
"
|
| 1425 |
-
"
|
| 1426 |
-
"
|
| 1427 |
-
"
|
| 1428 |
-
"
|
| 1429 |
-
"
|
| 1430 |
-
"
|
| 1431 |
-
"
|
| 1432 |
-
"
|
| 1433 |
-
"
|
| 1434 |
-
"
|
| 1435 |
-
"
|
| 1436 |
-
"
|
| 1437 |
-
"
|
| 1438 |
-
"
|
| 1439 |
-
"
|
| 1440 |
-
"
|
| 1441 |
-
"
|
| 1442 |
-
"
|
| 1443 |
-
"
|
| 1444 |
-
"
|
| 1445 |
-
"
|
| 1446 |
-
"
|
| 1447 |
-
"
|
| 1448 |
-
"
|
| 1449 |
-
"
|
| 1450 |
-
"
|
| 1451 |
-
"
|
| 1452 |
-
"
|
| 1453 |
-
"
|
| 1454 |
-
"
|
| 1455 |
-
"
|
| 1456 |
-
"
|
| 1457 |
-
"
|
| 1458 |
-
"
|
| 1459 |
-
"
|
| 1460 |
-
"
|
| 1461 |
-
"
|
| 1462 |
-
"
|
| 1463 |
-
"
|
| 1464 |
-
"
|
| 1465 |
-
"
|
| 1466 |
-
"
|
| 1467 |
-
"
|
| 1468 |
-
"
|
| 1469 |
-
"
|
| 1470 |
-
"
|
| 1471 |
-
"
|
| 1472 |
-
"
|
| 1473 |
-
"
|
| 1474 |
-
"
|
| 1475 |
-
"
|
| 1476 |
-
"
|
| 1477 |
-
"
|
| 1478 |
-
"
|
| 1479 |
-
"
|
| 1480 |
-
"
|
| 1481 |
-
"
|
| 1482 |
-
"
|
| 1483 |
-
"
|
| 1484 |
-
"
|
| 1485 |
-
"
|
| 1486 |
-
"
|
| 1487 |
-
"
|
| 1488 |
-
"
|
| 1489 |
-
"
|
| 1490 |
-
"
|
| 1491 |
-
"
|
| 1492 |
-
"
|
| 1493 |
-
"
|
| 1494 |
-
"
|
| 1495 |
-
"
|
| 1496 |
-
"
|
| 1497 |
-
"
|
| 1498 |
-
"
|
| 1499 |
-
"
|
| 1500 |
-
"
|
| 1501 |
-
"
|
| 1502 |
-
"
|
| 1503 |
-
"
|
| 1504 |
-
"
|
| 1505 |
-
"
|
| 1506 |
-
"
|
| 1507 |
-
"
|
| 1508 |
-
"
|
| 1509 |
-
"
|
| 1510 |
-
"
|
| 1511 |
-
"
|
| 1512 |
-
"
|
| 1513 |
-
"
|
| 1514 |
-
"
|
| 1515 |
-
"
|
| 1516 |
-
"
|
| 1517 |
-
"
|
| 1518 |
-
"
|
| 1519 |
-
"
|
| 1520 |
-
"
|
| 1521 |
-
"
|
| 1522 |
-
"
|
| 1523 |
-
"
|
| 1524 |
-
"
|
| 1525 |
-
"
|
| 1526 |
-
"
|
| 1527 |
-
"
|
| 1528 |
-
"
|
| 1529 |
-
"
|
| 1530 |
-
"
|
| 1531 |
-
"
|
| 1532 |
-
"
|
| 1533 |
-
"
|
| 1534 |
-
"
|
| 1535 |
-
"
|
| 1536 |
-
"
|
| 1537 |
-
"
|
| 1538 |
-
"
|
| 1539 |
-
"
|
| 1540 |
-
"
|
| 1541 |
-
"
|
| 1542 |
-
"
|
| 1543 |
-
"
|
| 1544 |
-
"
|
| 1545 |
-
"
|
| 1546 |
-
"
|
| 1547 |
-
"
|
| 1548 |
-
"
|
| 1549 |
-
"
|
| 1550 |
-
"
|
| 1551 |
-
"
|
| 1552 |
-
"
|
| 1553 |
-
"
|
| 1554 |
-
"
|
| 1555 |
-
"
|
| 1556 |
-
"
|
| 1557 |
-
"
|
| 1558 |
-
"
|
| 1559 |
-
"
|
| 1560 |
-
"
|
| 1561 |
-
"
|
| 1562 |
-
"
|
| 1563 |
-
"
|
| 1564 |
-
"
|
| 1565 |
-
"
|
| 1566 |
-
"
|
| 1567 |
-
"
|
| 1568 |
-
"
|
| 1569 |
-
"
|
| 1570 |
-
"
|
| 1571 |
-
"
|
| 1572 |
-
"
|
| 1573 |
-
"
|
| 1574 |
-
"
|
| 1575 |
-
"
|
| 1576 |
-
"
|
| 1577 |
-
"
|
| 1578 |
-
"
|
| 1579 |
-
"
|
| 1580 |
-
"
|
| 1581 |
-
"
|
| 1582 |
-
"
|
| 1583 |
-
"
|
| 1584 |
-
"
|
| 1585 |
-
"
|
| 1586 |
-
"
|
| 1587 |
-
"
|
| 1588 |
-
"
|
| 1589 |
-
"
|
| 1590 |
-
"
|
| 1591 |
-
"
|
| 1592 |
-
"
|
| 1593 |
-
"
|
| 1594 |
-
"
|
| 1595 |
-
"
|
| 1596 |
-
"
|
| 1597 |
-
"
|
| 1598 |
-
"
|
| 1599 |
-
"
|
| 1600 |
-
"
|
| 1601 |
-
"
|
| 1602 |
-
"
|
| 1603 |
-
"
|
| 1604 |
-
"
|
| 1605 |
-
"
|
| 1606 |
-
"
|
| 1607 |
-
"
|
| 1608 |
-
"
|
| 1609 |
-
"
|
| 1610 |
-
"
|
| 1611 |
-
"
|
| 1612 |
-
"
|
| 1613 |
-
"
|
| 1614 |
-
"
|
| 1615 |
-
"
|
| 1616 |
-
"
|
| 1617 |
-
"
|
| 1618 |
-
"
|
| 1619 |
-
"
|
| 1620 |
-
"
|
| 1621 |
-
"
|
| 1622 |
-
"
|
| 1623 |
-
"
|
| 1624 |
-
"
|
| 1625 |
-
"
|
| 1626 |
-
"
|
| 1627 |
-
"
|
| 1628 |
-
"
|
| 1629 |
-
"
|
| 1630 |
-
"
|
| 1631 |
-
"
|
| 1632 |
-
"
|
| 1633 |
-
"
|
| 1634 |
-
"
|
| 1635 |
-
"
|
| 1636 |
-
"
|
| 1637 |
-
"
|
| 1638 |
-
"
|
| 1639 |
-
"
|
| 1640 |
-
"
|
| 1641 |
-
"
|
| 1642 |
-
"
|
| 1643 |
-
"
|
| 1644 |
-
"
|
| 1645 |
-
"
|
| 1646 |
-
"
|
| 1647 |
-
"
|
| 1648 |
-
"
|
| 1649 |
-
"
|
| 1650 |
-
"
|
| 1651 |
-
"
|
| 1652 |
-
"
|
| 1653 |
-
"
|
| 1654 |
-
"
|
| 1655 |
-
"
|
| 1656 |
-
"
|
| 1657 |
-
"
|
| 1658 |
-
"
|
| 1659 |
-
"
|
| 1660 |
-
"
|
| 1661 |
-
"
|
| 1662 |
-
"
|
| 1663 |
-
"
|
| 1664 |
-
"
|
| 1665 |
-
"
|
| 1666 |
-
"
|
| 1667 |
-
"
|
| 1668 |
-
"
|
| 1669 |
-
"
|
| 1670 |
-
"
|
| 1671 |
-
"
|
| 1672 |
-
"
|
| 1673 |
-
"
|
| 1674 |
-
"
|
| 1675 |
-
"
|
| 1676 |
-
"
|
| 1677 |
-
"
|
| 1678 |
-
"
|
| 1679 |
-
"
|
| 1680 |
-
"
|
| 1681 |
-
"
|
| 1682 |
-
"
|
| 1683 |
-
"
|
| 1684 |
-
"
|
| 1685 |
-
"
|
| 1686 |
-
"
|
| 1687 |
-
"
|
| 1688 |
-
"
|
| 1689 |
-
"
|
| 1690 |
-
"
|
| 1691 |
-
"
|
| 1692 |
-
"
|
| 1693 |
-
"
|
| 1694 |
-
"
|
| 1695 |
-
"
|
| 1696 |
-
"
|
| 1697 |
-
"
|
| 1698 |
-
"
|
| 1699 |
-
"
|
| 1700 |
-
"
|
| 1701 |
-
"
|
| 1702 |
-
"
|
| 1703 |
-
"
|
| 1704 |
-
"
|
| 1705 |
-
"
|
| 1706 |
-
"
|
| 1707 |
-
"
|
| 1708 |
-
"
|
| 1709 |
-
"
|
| 1710 |
-
"
|
| 1711 |
-
"
|
| 1712 |
-
"
|
| 1713 |
-
"
|
| 1714 |
-
"
|
| 1715 |
-
"
|
| 1716 |
-
"
|
| 1717 |
-
"
|
| 1718 |
-
"
|
| 1719 |
-
"
|
| 1720 |
-
"
|
| 1721 |
-
"
|
| 1722 |
-
"
|
| 1723 |
-
"
|
| 1724 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1725 |
}
|
| 1726 |
}
|
|
|
|
| 8 |
],
|
| 9 |
"type": "simple_regex_tokenizer",
|
| 10 |
"vocab": {
|
| 11 |
+
"\t": 964,
|
| 12 |
+
"\n": 14,
|
| 13 |
+
"\n\n": 67,
|
| 14 |
+
"\n\n ": 92,
|
| 15 |
+
"\n\n ": 113,
|
| 16 |
+
"\n ": 394,
|
| 17 |
+
"\n ": 22,
|
| 18 |
+
"\n ": 36,
|
| 19 |
+
"\n ": 27,
|
| 20 |
+
"\n ": 965,
|
| 21 |
+
"\n ": 31,
|
| 22 |
+
"\n ": 966,
|
| 23 |
+
"\n ": 160,
|
| 24 |
+
"\n ": 967,
|
| 25 |
+
"\r": 968,
|
| 26 |
" ": 4,
|
| 27 |
+
" ": 208,
|
| 28 |
+
" ": 801,
|
| 29 |
+
"!": 110,
|
| 30 |
+
"\"": 8,
|
| 31 |
+
"#": 38,
|
| 32 |
+
"$": 419,
|
| 33 |
+
"%": 161,
|
| 34 |
+
"&": 969,
|
| 35 |
+
"'": 34,
|
| 36 |
+
"(": 15,
|
| 37 |
+
")": 16,
|
| 38 |
+
"*": 72,
|
| 39 |
+
"+": 81,
|
| 40 |
+
",": 17,
|
| 41 |
"-": 5,
|
| 42 |
+
".": 11,
|
| 43 |
+
"/": 12,
|
| 44 |
+
"0": 21,
|
| 45 |
+
"01": 263,
|
| 46 |
+
"02": 162,
|
| 47 |
+
"03": 163,
|
| 48 |
+
"06": 513,
|
| 49 |
+
"08": 264,
|
| 50 |
+
"1": 29,
|
| 51 |
+
"10": 204,
|
| 52 |
+
"100": 443,
|
| 53 |
+
"1001": 970,
|
| 54 |
+
"1003": 971,
|
| 55 |
+
"1010": 802,
|
| 56 |
+
"1011": 972,
|
| 57 |
+
"1015": 973,
|
| 58 |
+
"1016": 974,
|
| 59 |
+
"102": 748,
|
| 60 |
+
"1020": 975,
|
| 61 |
+
"1026": 976,
|
| 62 |
+
"103": 977,
|
| 63 |
+
"1030": 978,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 64 |
"1034": 979,
|
| 65 |
+
"1039": 980,
|
| 66 |
+
"104": 749,
|
| 67 |
+
"1046": 981,
|
| 68 |
+
"1048": 982,
|
| 69 |
+
"105": 983,
|
| 70 |
+
"1050": 803,
|
| 71 |
+
"1051": 984,
|
| 72 |
+
"1052": 985,
|
| 73 |
+
"106": 986,
|
| 74 |
+
"1060": 987,
|
| 75 |
+
"1063": 988,
|
| 76 |
+
"1064": 989,
|
| 77 |
+
"1068": 990,
|
| 78 |
+
"107": 804,
|
| 79 |
+
"1073": 991,
|
| 80 |
+
"1074": 805,
|
| 81 |
+
"1076": 806,
|
| 82 |
+
"108": 992,
|
| 83 |
+
"1083": 993,
|
| 84 |
+
"1085": 994,
|
| 85 |
+
"1087": 995,
|
| 86 |
+
"1088": 996,
|
| 87 |
+
"1089": 997,
|
| 88 |
+
"109": 750,
|
| 89 |
+
"11": 593,
|
| 90 |
+
"110": 733,
|
| 91 |
+
"1100": 265,
|
| 92 |
+
"1106": 998,
|
| 93 |
+
"1109": 999,
|
| 94 |
+
"111": 1000,
|
| 95 |
+
"1117": 1001,
|
| 96 |
+
"112": 807,
|
| 97 |
+
"1123": 1002,
|
| 98 |
+
"1124": 1003,
|
| 99 |
+
"1127": 1004,
|
| 100 |
+
"1128": 1005,
|
| 101 |
+
"113": 808,
|
| 102 |
+
"1138": 1006,
|
| 103 |
+
"114": 1007,
|
| 104 |
+
"1144": 1008,
|
| 105 |
+
"1146": 1009,
|
| 106 |
+
"1148360": 665,
|
| 107 |
+
"1148583": 666,
|
| 108 |
+
"115": 809,
|
| 109 |
+
"1151": 1010,
|
| 110 |
+
"1156": 1011,
|
| 111 |
+
"1159": 1012,
|
| 112 |
+
"116": 810,
|
| 113 |
+
"118": 1013,
|
| 114 |
+
"1183": 811,
|
| 115 |
+
"1188": 1014,
|
| 116 |
+
"119": 1015,
|
| 117 |
+
"12": 591,
|
| 118 |
+
"120": 1016,
|
| 119 |
+
"1203": 1017,
|
| 120 |
+
"121": 812,
|
| 121 |
+
"1212": 813,
|
| 122 |
+
"1213": 1018,
|
| 123 |
+
"1215": 1019,
|
| 124 |
+
"1218": 1020,
|
| 125 |
+
"122": 1021,
|
| 126 |
+
"1220": 1022,
|
| 127 |
+
"1224": 1023,
|
| 128 |
+
"1225": 1024,
|
| 129 |
+
"1227": 1025,
|
| 130 |
+
"123": 814,
|
| 131 |
+
"1239": 751,
|
| 132 |
+
"1240": 1026,
|
| 133 |
+
"125": 815,
|
| 134 |
+
"1251": 1027,
|
| 135 |
+
"1256": 1028,
|
| 136 |
+
"1259": 816,
|
| 137 |
+
"126": 1029,
|
| 138 |
+
"1261": 817,
|
| 139 |
+
"1263": 1030,
|
| 140 |
+
"1269": 1031,
|
| 141 |
+
"127": 752,
|
| 142 |
+
"128": 818,
|
| 143 |
+
"1287": 1032,
|
| 144 |
+
"129": 1033,
|
| 145 |
+
"1292": 1034,
|
| 146 |
+
"1295": 1035,
|
| 147 |
+
"1297": 1036,
|
| 148 |
+
"1299": 1037,
|
| 149 |
+
"13": 598,
|
| 150 |
+
"1306": 1038,
|
| 151 |
+
"1308": 1039,
|
| 152 |
+
"131": 819,
|
| 153 |
+
"1315": 1040,
|
| 154 |
+
"132": 726,
|
| 155 |
+
"1322": 1041,
|
| 156 |
+
"1325": 1042,
|
| 157 |
+
"1329": 1043,
|
| 158 |
+
"133": 820,
|
| 159 |
+
"1335": 1044,
|
| 160 |
+
"134": 1045,
|
| 161 |
+
"1342": 1046,
|
| 162 |
+
"135": 1047,
|
| 163 |
+
"1351": 1048,
|
| 164 |
+
"1357": 1049,
|
| 165 |
+
"1368": 1050,
|
| 166 |
+
"137": 664,
|
| 167 |
+
"1379": 1051,
|
| 168 |
+
"138": 1052,
|
| 169 |
+
"1384": 1053,
|
| 170 |
+
"139": 753,
|
| 171 |
+
"1395": 1054,
|
| 172 |
+
"14": 222,
|
| 173 |
+
"140": 821,
|
| 174 |
+
"1410": 1055,
|
| 175 |
+
"142": 1056,
|
| 176 |
+
"1425": 1057,
|
| 177 |
+
"1433": 1058,
|
| 178 |
+
"1438": 1059,
|
| 179 |
+
"144": 822,
|
| 180 |
+
"1450": 1060,
|
| 181 |
+
"1454": 1061,
|
| 182 |
+
"1459": 1062,
|
| 183 |
+
"146": 734,
|
| 184 |
+
"1467": 1063,
|
| 185 |
+
"147": 1064,
|
| 186 |
+
"1473": 1065,
|
| 187 |
+
"148": 823,
|
| 188 |
+
"149": 824,
|
| 189 |
+
"15": 248,
|
| 190 |
+
"150": 1066,
|
| 191 |
+
"1505": 1067,
|
| 192 |
+
"151": 754,
|
| 193 |
+
"1524": 1068,
|
| 194 |
+
"153": 825,
|
| 195 |
+
"1533": 1069,
|
| 196 |
+
"154": 1070,
|
| 197 |
+
"155": 1071,
|
| 198 |
+
"1550": 1072,
|
| 199 |
+
"1556": 1073,
|
| 200 |
+
"156": 1074,
|
| 201 |
+
"157": 1075,
|
| 202 |
+
"1571": 1076,
|
| 203 |
+
"1572": 1077,
|
| 204 |
+
"158": 1078,
|
| 205 |
+
"159": 735,
|
| 206 |
+
"16": 245,
|
| 207 |
+
"160": 826,
|
| 208 |
+
"161": 827,
|
| 209 |
+
"162": 828,
|
| 210 |
+
"1623": 1079,
|
| 211 |
+
"163": 829,
|
| 212 |
+
"164": 830,
|
| 213 |
+
"166": 1080,
|
| 214 |
+
"167": 1081,
|
| 215 |
+
"168": 831,
|
| 216 |
+
"17": 587,
|
| 217 |
+
"170": 1082,
|
| 218 |
+
"171": 257,
|
| 219 |
+
"172": 727,
|
| 220 |
+
"173": 1083,
|
| 221 |
+
"174": 755,
|
| 222 |
+
"176": 832,
|
| 223 |
+
"179": 833,
|
| 224 |
+
"18": 156,
|
| 225 |
+
"182": 1084,
|
| 226 |
+
"183": 1085,
|
| 227 |
+
"184": 736,
|
| 228 |
+
"185": 1086,
|
| 229 |
+
"187": 834,
|
| 230 |
+
"189": 835,
|
| 231 |
+
"19": 584,
|
| 232 |
+
"190": 1087,
|
| 233 |
+
"191": 1088,
|
| 234 |
+
"192": 756,
|
| 235 |
+
"193": 1089,
|
| 236 |
+
"194": 1090,
|
| 237 |
+
"195": 836,
|
| 238 |
+
"196": 1091,
|
| 239 |
+
"197": 1092,
|
| 240 |
+
"198": 1093,
|
| 241 |
+
"199": 757,
|
| 242 |
+
"2": 69,
|
| 243 |
+
"20": 403,
|
| 244 |
+
"200": 837,
|
| 245 |
+
"201": 838,
|
| 246 |
+
"202": 839,
|
| 247 |
+
"2026": 518,
|
| 248 |
+
"203": 758,
|
| 249 |
+
"204": 840,
|
| 250 |
+
"205": 1094,
|
| 251 |
+
"206": 841,
|
| 252 |
+
"207": 1095,
|
| 253 |
+
"208": 1096,
|
| 254 |
+
"21": 601,
|
| 255 |
+
"210": 1097,
|
| 256 |
+
"211": 1098,
|
| 257 |
+
"212": 1099,
|
| 258 |
+
"213": 1100,
|
| 259 |
+
"214": 759,
|
| 260 |
+
"215": 1101,
|
| 261 |
+
"216": 842,
|
| 262 |
+
"218": 1102,
|
| 263 |
+
"219": 760,
|
| 264 |
+
"22": 157,
|
| 265 |
+
"220": 843,
|
| 266 |
+
"221": 1103,
|
| 267 |
+
"222": 761,
|
| 268 |
+
"224": 1104,
|
| 269 |
+
"225": 1105,
|
| 270 |
+
"226": 844,
|
| 271 |
+
"227": 845,
|
| 272 |
+
"228": 1106,
|
| 273 |
+
"229": 1107,
|
| 274 |
+
"23": 592,
|
| 275 |
+
"230": 762,
|
| 276 |
+
"231": 846,
|
| 277 |
+
"232": 847,
|
| 278 |
+
"233": 763,
|
| 279 |
+
"234": 737,
|
| 280 |
+
"235": 728,
|
| 281 |
+
"238": 764,
|
| 282 |
+
"239": 729,
|
| 283 |
+
"24": 492,
|
| 284 |
+
"240": 848,
|
| 285 |
+
"241": 1108,
|
| 286 |
+
"242": 765,
|
| 287 |
+
"244": 1109,
|
| 288 |
+
"245": 1110,
|
| 289 |
+
"247": 1111,
|
| 290 |
+
"248": 849,
|
| 291 |
+
"249": 850,
|
| 292 |
+
"25": 247,
|
| 293 |
+
"250": 1112,
|
| 294 |
+
"252": 1113,
|
| 295 |
+
"255": 40,
|
| 296 |
+
"256": 1114,
|
| 297 |
+
"258": 1115,
|
| 298 |
+
"259": 851,
|
| 299 |
+
"26": 602,
|
| 300 |
+
"260": 852,
|
| 301 |
+
"261": 853,
|
| 302 |
+
"262": 1116,
|
| 303 |
+
"263": 854,
|
| 304 |
+
"264": 855,
|
| 305 |
+
"269": 1117,
|
| 306 |
+
"27": 585,
|
| 307 |
+
"270": 1118,
|
| 308 |
+
"271": 856,
|
| 309 |
+
"272": 667,
|
| 310 |
+
"273": 1119,
|
| 311 |
+
"276": 857,
|
| 312 |
+
"277": 766,
|
| 313 |
+
"278": 767,
|
| 314 |
+
"279": 1120,
|
| 315 |
+
"28": 588,
|
| 316 |
+
"280": 858,
|
| 317 |
+
"283": 1121,
|
| 318 |
+
"285": 859,
|
| 319 |
+
"287": 1122,
|
| 320 |
+
"289": 1123,
|
| 321 |
+
"29": 490,
|
| 322 |
+
"290": 1124,
|
| 323 |
+
"291": 1125,
|
| 324 |
+
"293": 1126,
|
| 325 |
+
"295": 1127,
|
| 326 |
+
"296": 1128,
|
| 327 |
+
"297": 1129,
|
| 328 |
+
"298": 860,
|
| 329 |
+
"299": 768,
|
| 330 |
+
"3": 43,
|
| 331 |
+
"30": 600,
|
| 332 |
+
"300": 738,
|
| 333 |
+
"301": 861,
|
| 334 |
+
"304": 862,
|
| 335 |
+
"306": 1130,
|
| 336 |
+
"307": 863,
|
| 337 |
+
"308": 864,
|
| 338 |
+
"309": 1131,
|
| 339 |
+
"31": 595,
|
| 340 |
+
"310": 769,
|
| 341 |
+
"312": 1132,
|
| 342 |
+
"318": 1133,
|
| 343 |
+
"32": 246,
|
| 344 |
+
"320": 1134,
|
| 345 |
+
"321": 1135,
|
| 346 |
+
"322": 1136,
|
| 347 |
+
"323": 770,
|
| 348 |
+
"325": 730,
|
| 349 |
+
"327": 865,
|
| 350 |
+
"329": 1137,
|
| 351 |
+
"33": 604,
|
| 352 |
+
"331": 1138,
|
| 353 |
+
"333": 1139,
|
| 354 |
+
"334": 771,
|
| 355 |
+
"335": 1140,
|
| 356 |
+
"336": 772,
|
| 357 |
+
"337": 773,
|
| 358 |
+
"338": 1141,
|
| 359 |
+
"339": 1142,
|
| 360 |
+
"34": 586,
|
| 361 |
+
"341": 1143,
|
| 362 |
+
"344": 866,
|
| 363 |
+
"345": 867,
|
| 364 |
+
"346": 1144,
|
| 365 |
+
"347": 739,
|
| 366 |
+
"348": 1145,
|
| 367 |
+
"35": 597,
|
| 368 |
+
"351": 1146,
|
| 369 |
+
"352": 868,
|
| 370 |
+
"354": 774,
|
| 371 |
+
"355": 1147,
|
| 372 |
+
"356": 1148,
|
| 373 |
+
"358": 869,
|
| 374 |
+
"359": 1149,
|
| 375 |
+
"36": 594,
|
| 376 |
+
"360": 870,
|
| 377 |
+
"361": 871,
|
| 378 |
+
"362": 1150,
|
| 379 |
+
"363": 872,
|
| 380 |
+
"364": 873,
|
| 381 |
+
"365": 1151,
|
| 382 |
+
"366": 1152,
|
| 383 |
+
"368": 874,
|
| 384 |
+
"369": 1153,
|
| 385 |
+
"37": 589,
|
| 386 |
+
"371": 875,
|
| 387 |
+
"372": 1154,
|
| 388 |
+
"376": 876,
|
| 389 |
+
"377": 740,
|
| 390 |
+
"378": 1155,
|
| 391 |
+
"379": 775,
|
| 392 |
+
"38": 603,
|
| 393 |
+
"381": 877,
|
| 394 |
+
"382": 1156,
|
| 395 |
+
"383": 1157,
|
| 396 |
+
"384": 878,
|
| 397 |
+
"386": 1158,
|
| 398 |
+
"388": 1159,
|
| 399 |
+
"39": 590,
|
| 400 |
+
"390": 1160,
|
| 401 |
+
"391": 1161,
|
| 402 |
+
"392": 879,
|
| 403 |
+
"399": 880,
|
| 404 |
+
"4": 68,
|
| 405 |
+
"40": 596,
|
| 406 |
+
"400": 1162,
|
| 407 |
+
"401": 776,
|
| 408 |
+
"402": 741,
|
| 409 |
+
"403": 1163,
|
| 410 |
+
"405": 1164,
|
| 411 |
+
"406": 777,
|
| 412 |
+
"407": 1165,
|
| 413 |
+
"408": 1166,
|
| 414 |
+
"409": 778,
|
| 415 |
+
"41": 881,
|
| 416 |
+
"410": 1167,
|
| 417 |
+
"412": 882,
|
| 418 |
+
"414": 1168,
|
| 419 |
+
"415": 1169,
|
| 420 |
+
"416": 1170,
|
| 421 |
+
"42": 1171,
|
| 422 |
+
"420": 1172,
|
| 423 |
+
"421": 1173,
|
| 424 |
+
"422": 1174,
|
| 425 |
+
"423": 1175,
|
| 426 |
+
"426": 779,
|
| 427 |
+
"427": 1176,
|
| 428 |
+
"428": 1177,
|
| 429 |
+
"43": 780,
|
| 430 |
+
"430": 1178,
|
| 431 |
+
"431": 1179,
|
| 432 |
+
"433": 781,
|
| 433 |
+
"437": 883,
|
| 434 |
+
"438": 884,
|
| 435 |
+
"44": 885,
|
| 436 |
+
"440": 1180,
|
| 437 |
+
"443": 886,
|
| 438 |
+
"444": 1181,
|
| 439 |
+
"445": 887,
|
| 440 |
+
"446": 782,
|
| 441 |
+
"447": 1182,
|
| 442 |
+
"449": 1183,
|
| 443 |
+
"45": 888,
|
| 444 |
+
"451": 1184,
|
| 445 |
+
"452": 889,
|
| 446 |
+
"454": 783,
|
| 447 |
+
"455": 784,
|
| 448 |
+
"459": 890,
|
| 449 |
+
"46": 785,
|
| 450 |
+
"461": 1185,
|
| 451 |
+
"463": 742,
|
| 452 |
+
"464": 1186,
|
| 453 |
+
"465": 891,
|
| 454 |
+
"466": 892,
|
| 455 |
+
"469": 1187,
|
| 456 |
+
"47": 743,
|
| 457 |
+
"470": 1188,
|
| 458 |
+
"474": 893,
|
| 459 |
+
"475": 1189,
|
| 460 |
+
"477": 894,
|
| 461 |
+
"479": 1190,
|
| 462 |
+
"480": 1191,
|
| 463 |
+
"481": 1192,
|
| 464 |
+
"482": 895,
|
| 465 |
+
"484": 896,
|
| 466 |
+
"486": 1193,
|
| 467 |
+
"488": 1194,
|
| 468 |
+
"49": 1195,
|
| 469 |
+
"490": 744,
|
| 470 |
+
"491": 1196,
|
| 471 |
+
"493": 1197,
|
| 472 |
+
"495": 1198,
|
| 473 |
+
"497": 897,
|
| 474 |
+
"498": 898,
|
| 475 |
+
"5": 139,
|
| 476 |
+
"50": 141,
|
| 477 |
+
"500": 512,
|
| 478 |
+
"502": 1199,
|
| 479 |
+
"503": 1200,
|
| 480 |
+
"505": 1201,
|
| 481 |
+
"506": 1202,
|
| 482 |
+
"507": 899,
|
| 483 |
+
"508": 1203,
|
| 484 |
+
"509": 1204,
|
| 485 |
+
"51": 900,
|
| 486 |
+
"513": 1205,
|
| 487 |
+
"516": 1206,
|
| 488 |
+
"517": 1207,
|
| 489 |
+
"518": 1208,
|
| 490 |
+
"52": 1209,
|
| 491 |
+
"520": 1210,
|
| 492 |
+
"523": 901,
|
| 493 |
+
"524": 902,
|
| 494 |
+
"526": 1211,
|
| 495 |
+
"528": 903,
|
| 496 |
+
"529": 1212,
|
| 497 |
+
"53": 786,
|
| 498 |
+
"531": 1213,
|
| 499 |
+
"5352": 668,
|
| 500 |
+
"539": 904,
|
| 501 |
+
"54": 1214,
|
| 502 |
+
"540": 1215,
|
| 503 |
+
"542": 1216,
|
| 504 |
+
"543": 1217,
|
| 505 |
+
"544": 1218,
|
| 506 |
+
"545": 1219,
|
| 507 |
+
"55": 905,
|
| 508 |
+
"550": 1220,
|
| 509 |
+
"552": 1221,
|
| 510 |
+
"553": 1222,
|
| 511 |
+
"554": 1223,
|
| 512 |
+
"558": 1224,
|
| 513 |
+
"559": 1225,
|
| 514 |
+
"560": 1226,
|
| 515 |
+
"563": 1227,
|
| 516 |
+
"568": 1228,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 517 |
"569": 787,
|
| 518 |
+
"57": 906,
|
| 519 |
+
"571": 1229,
|
| 520 |
+
"573": 907,
|
| 521 |
+
"574": 1230,
|
| 522 |
+
"575": 1231,
|
| 523 |
+
"576": 1232,
|
| 524 |
+
"577": 1233,
|
| 525 |
+
"578": 908,
|
| 526 |
+
"579": 1234,
|
| 527 |
+
"580": 1235,
|
| 528 |
+
"582": 1236,
|
| 529 |
+
"583": 1237,
|
| 530 |
+
"585": 745,
|
| 531 |
+
"588": 1238,
|
| 532 |
+
"589": 909,
|
| 533 |
+
"59": 1239,
|
| 534 |
+
"590": 1240,
|
| 535 |
+
"592": 1241,
|
| 536 |
+
"593": 1242,
|
| 537 |
+
"597": 910,
|
| 538 |
+
"6": 59,
|
| 539 |
+
"60": 258,
|
| 540 |
+
"600": 80,
|
| 541 |
+
"603": 1243,
|
| 542 |
+
"604": 1244,
|
| 543 |
+
"606": 1245,
|
| 544 |
+
"616": 911,
|
| 545 |
+
"619": 1246,
|
| 546 |
+
"62": 1247,
|
| 547 |
+
"621": 1248,
|
| 548 |
+
"623": 1249,
|
| 549 |
+
"624": 1250,
|
| 550 |
+
"625": 788,
|
| 551 |
+
"628": 912,
|
| 552 |
+
"63": 1251,
|
| 553 |
+
"631": 1252,
|
| 554 |
+
"633": 1253,
|
| 555 |
+
"634": 1254,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 556 |
"636": 1255,
|
| 557 |
+
"6366": 568,
|
| 558 |
+
"637": 913,
|
| 559 |
+
"64": 789,
|
| 560 |
+
"640": 914,
|
| 561 |
+
"642": 915,
|
| 562 |
+
"644": 1256,
|
| 563 |
+
"645": 916,
|
| 564 |
+
"646": 917,
|
| 565 |
+
"647": 918,
|
| 566 |
+
"648": 1257,
|
|
|
|
|
|
|
|
|
|
| 567 |
"649": 1258,
|
| 568 |
+
"65": 919,
|
| 569 |
+
"651": 920,
|
| 570 |
+
"654": 1259,
|
| 571 |
+
"655": 1260,
|
| 572 |
+
"656": 790,
|
| 573 |
+
"66": 791,
|
| 574 |
+
"660": 921,
|
| 575 |
+
"661": 922,
|
| 576 |
+
"664": 1261,
|
| 577 |
+
"665": 1262,
|
| 578 |
+
"67": 792,
|
| 579 |
+
"671": 1263,
|
| 580 |
+
"673": 1264,
|
| 581 |
+
"675": 1265,
|
| 582 |
+
"676": 1266,
|
| 583 |
+
"677": 923,
|
| 584 |
+
"68": 793,
|
| 585 |
+
"681": 1267,
|
| 586 |
+
"683": 924,
|
| 587 |
+
"685": 1268,
|
| 588 |
+
"689": 925,
|
| 589 |
+
"69": 1269,
|
| 590 |
+
"690": 1270,
|
| 591 |
+
"691": 1271,
|
| 592 |
+
"697": 926,
|
| 593 |
+
"7": 140,
|
| 594 |
+
"70": 1272,
|
| 595 |
+
"700": 226,
|
| 596 |
+
"701": 1273,
|
| 597 |
+
"702": 1274,
|
| 598 |
+
"703": 1275,
|
| 599 |
+
"704": 1276,
|
| 600 |
+
"706": 927,
|
| 601 |
+
"708": 1277,
|
| 602 |
+
"71": 794,
|
| 603 |
+
"715": 1278,
|
| 604 |
+
"716": 1279,
|
| 605 |
+
"719": 1280,
|
| 606 |
+
"72": 266,
|
| 607 |
+
"722": 1281,
|
| 608 |
+
"723": 1282,
|
| 609 |
+
"724": 928,
|
| 610 |
+
"725": 1283,
|
| 611 |
+
"726": 1284,
|
| 612 |
+
"728": 929,
|
| 613 |
+
"730": 795,
|
| 614 |
+
"731": 1285,
|
| 615 |
+
"733": 1286,
|
| 616 |
+
"737": 930,
|
| 617 |
+
"738": 1287,
|
| 618 |
+
"739": 931,
|
| 619 |
+
"74": 796,
|
| 620 |
+
"743": 1288,
|
| 621 |
+
"745": 1289,
|
| 622 |
+
"748": 1290,
|
| 623 |
+
"749": 1291,
|
| 624 |
+
"75": 159,
|
| 625 |
+
"752": 1292,
|
| 626 |
+
"753": 932,
|
| 627 |
+
"758": 1293,
|
| 628 |
+
"76": 746,
|
| 629 |
+
"760": 1294,
|
| 630 |
+
"762": 1295,
|
| 631 |
+
"763": 1296,
|
| 632 |
+
"764": 1297,
|
| 633 |
+
"766": 933,
|
| 634 |
+
"773": 1298,
|
| 635 |
+
"776": 934,
|
| 636 |
+
"779": 935,
|
| 637 |
+
"781": 1299,
|
| 638 |
+
"782": 1300,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 639 |
"783": 1301,
|
| 640 |
+
"784": 1302,
|
| 641 |
+
"786": 1303,
|
| 642 |
+
"788": 1304,
|
| 643 |
+
"79": 731,
|
| 644 |
+
"790": 1305,
|
| 645 |
+
"791": 1306,
|
| 646 |
+
"797": 1307,
|
| 647 |
+
"8": 42,
|
| 648 |
+
"80": 732,
|
| 649 |
+
"800": 444,
|
| 650 |
+
"803": 936,
|
| 651 |
+
"805": 1308,
|
| 652 |
+
"808": 937,
|
| 653 |
+
"81": 938,
|
| 654 |
+
"811": 1309,
|
| 655 |
+
"816": 1310,
|
| 656 |
+
"817": 939,
|
| 657 |
+
"818": 940,
|
| 658 |
+
"819": 941,
|
| 659 |
+
"82": 797,
|
| 660 |
+
"820": 942,
|
| 661 |
+
"828": 943,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 662 |
"829": 1311,
|
| 663 |
+
"83": 1312,
|
| 664 |
+
"830": 1313,
|
| 665 |
+
"831": 1314,
|
| 666 |
+
"833": 1315,
|
| 667 |
+
"84": 1316,
|
| 668 |
+
"843": 1317,
|
| 669 |
+
"844": 1318,
|
| 670 |
+
"847": 1319,
|
| 671 |
+
"848": 1320,
|
| 672 |
+
"85": 747,
|
| 673 |
+
"851": 1321,
|
| 674 |
+
"857": 944,
|
| 675 |
+
"86": 798,
|
| 676 |
+
"860": 267,
|
| 677 |
+
"861": 945,
|
| 678 |
+
"862": 1322,
|
| 679 |
+
"87": 946,
|
| 680 |
+
"871": 1323,
|
| 681 |
+
"872": 1324,
|
| 682 |
+
"873": 1325,
|
| 683 |
+
"876": 947,
|
| 684 |
+
"877": 1326,
|
| 685 |
+
"88": 948,
|
| 686 |
+
"883": 1327,
|
| 687 |
+
"885": 1328,
|
| 688 |
+
"888": 1329,
|
| 689 |
+
"889": 1330,
|
| 690 |
+
"89": 1331,
|
| 691 |
+
"893": 1332,
|
| 692 |
+
"894": 949,
|
| 693 |
+
"896": 1333,
|
| 694 |
+
"897": 1334,
|
| 695 |
+
"898": 1335,
|
| 696 |
+
"899": 1336,
|
| 697 |
+
"9": 155,
|
| 698 |
+
"90": 1337,
|
| 699 |
+
"900": 447,
|
| 700 |
+
"901": 1338,
|
| 701 |
+
"904": 1339,
|
| 702 |
+
"906": 1340,
|
| 703 |
+
"909": 950,
|
| 704 |
+
"91": 951,
|
| 705 |
+
"914": 1341,
|
| 706 |
+
"916": 1342,
|
| 707 |
+
"92": 259,
|
| 708 |
+
"920": 1343,
|
| 709 |
+
"921": 1344,
|
| 710 |
+
"923": 1345,
|
| 711 |
+
"924": 1346,
|
| 712 |
+
"925": 1347,
|
| 713 |
+
"927": 952,
|
| 714 |
+
"93": 953,
|
| 715 |
+
"933": 1348,
|
| 716 |
+
"935": 1349,
|
| 717 |
+
"936": 1350,
|
| 718 |
+
"937": 1351,
|
| 719 |
+
"938": 954,
|
| 720 |
+
"94": 1352,
|
| 721 |
+
"940": 1353,
|
| 722 |
+
"941": 1354,
|
| 723 |
+
"943": 1355,
|
| 724 |
+
"945": 955,
|
| 725 |
+
"946": 1356,
|
| 726 |
+
"95": 799,
|
| 727 |
+
"952": 956,
|
| 728 |
+
"954": 1357,
|
| 729 |
+
"956": 1358,
|
| 730 |
+
"959": 957,
|
| 731 |
+
"96": 958,
|
| 732 |
+
"960": 1359,
|
| 733 |
+
"961": 959,
|
| 734 |
+
"964": 1360,
|
| 735 |
+
"965": 1361,
|
| 736 |
+
"966": 1362,
|
| 737 |
+
"968": 1363,
|
| 738 |
+
"97": 960,
|
| 739 |
+
"977": 1364,
|
| 740 |
+
"98": 800,
|
| 741 |
+
"983": 1365,
|
| 742 |
+
"984": 1366,
|
| 743 |
+
"986": 1367,
|
| 744 |
+
"99": 515,
|
| 745 |
+
"993": 1368,
|
| 746 |
+
"994": 1369,
|
| 747 |
+
"999": 268,
|
| 748 |
+
":": 9,
|
| 749 |
+
";": 10,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 750 |
"<": 7,
|
| 751 |
"<bos>": 1,
|
| 752 |
"<eos>": 2,
|
| 753 |
"<pad>": 0,
|
| 754 |
"<unk>": 3,
|
| 755 |
+
"=": 13,
|
| 756 |
+
">": 6,
|
| 757 |
+
"?": 89,
|
| 758 |
+
"@": 71,
|
| 759 |
+
"A": 1370,
|
| 760 |
+
"AI": 219,
|
| 761 |
+
"Actionable": 519,
|
| 762 |
+
"Agency": 269,
|
| 763 |
+
"All": 520,
|
| 764 |
+
"Analytics": 521,
|
| 765 |
+
"Answer": 619,
|
| 766 |
+
"Ask": 621,
|
| 767 |
+
"Assistant": 137,
|
| 768 |
+
"Auraloop": 428,
|
| 769 |
+
"B": 1371,
|
| 770 |
+
"Build": 199,
|
| 771 |
+
"Built": 522,
|
| 772 |
+
"ByteForge": 523,
|
| 773 |
+
"C": 1372,
|
| 774 |
+
"CTA": 577,
|
| 775 |
+
"Can": 270,
|
| 776 |
+
"Change": 629,
|
| 777 |
+
"Clarify": 271,
|
| 778 |
+
"CodeHarbor": 416,
|
| 779 |
+
"CodePulse": 524,
|
| 780 |
+
"Component": 395,
|
| 781 |
+
"Compute": 1373,
|
| 782 |
+
"Constrain": 669,
|
| 783 |
+
"Contact": 272,
|
| 784 |
+
"Create": 109,
|
| 785 |
+
"Cta": 478,
|
| 786 |
+
"D": 1374,
|
| 787 |
+
"DOCTYPE": 227,
|
| 788 |
+
"Deploy": 273,
|
| 789 |
+
"Design": 525,
|
| 790 |
+
"DevFlow": 526,
|
| 791 |
+
"Discovery": 274,
|
| 792 |
+
"Doing": 630,
|
| 793 |
+
"E": 1375,
|
| 794 |
+
"End": 275,
|
| 795 |
+
"Engineering": 474,
|
| 796 |
+
"Enterprise": 527,
|
| 797 |
+
"F": 1376,
|
| 798 |
+
"FAQ": 276,
|
| 799 |
+
"Faq": 477,
|
| 800 |
+
"Fast": 445,
|
| 801 |
+
"Faster": 421,
|
| 802 |
+
"Features": 481,
|
| 803 |
+
"First": 484,
|
| 804 |
+
"FlowBeam": 528,
|
| 805 |
+
"Footer": 479,
|
| 806 |
+
"Free": 516,
|
| 807 |
+
"From": 468,
|
| 808 |
+
"G": 1377,
|
| 809 |
+
"Generate": 442,
|
| 810 |
+
"Get": 228,
|
| 811 |
+
"Growth": 277,
|
| 812 |
+
"H": 1378,
|
| 813 |
+
"HTML": 573,
|
| 814 |
+
"Hello": 620,
|
| 815 |
+
"Hero": 476,
|
| 816 |
+
"Hey": 622,
|
| 817 |
+
"Hi": 623,
|
| 818 |
+
"How": 254,
|
| 819 |
+
"I": 583,
|
| 820 |
+
"Identify": 643,
|
| 821 |
+
"If": 670,
|
| 822 |
+
"Implement": 278,
|
| 823 |
+
"Instrumentation": 279,
|
| 824 |
+
"Inter": 280,
|
| 825 |
+
"J": 1379,
|
| 826 |
+
"JSON": 500,
|
| 827 |
+
"K": 1380,
|
| 828 |
+
"Keep": 392,
|
| 829 |
+
"L": 1381,
|
| 830 |
+
"Landing": 529,
|
| 831 |
+
"LandingPage": 448,
|
| 832 |
+
"Launch": 281,
|
| 833 |
+
"LaunchGrid": 530,
|
| 834 |
+
"Learn": 531,
|
| 835 |
+
"Lightning": 532,
|
| 836 |
+
"Loops": 282,
|
| 837 |
+
"LumenBuild": 427,
|
| 838 |
+
"M": 1382,
|
| 839 |
+
"Mance": 657,
|
| 840 |
+
"More": 533,
|
| 841 |
+
"Most": 283,
|
| 842 |
+
"N": 1383,
|
| 843 |
+
"Navbar": 644,
|
| 844 |
+
"Need": 435,
|
| 845 |
+
"NeuroCoder": 158,
|
| 846 |
+
"NeuroStack": 566,
|
| 847 |
+
"Node": 284,
|
| 848 |
+
"NovaForge": 413,
|
| 849 |
+
"O": 1384,
|
| 850 |
+
"Only": 631,
|
| 851 |
+
"OrbitCraft": 424,
|
| 852 |
+
"P": 1385,
|
| 853 |
+
"Platforms": 285,
|
| 854 |
+
"Preserve": 503,
|
| 855 |
+
"Pricing": 436,
|
| 856 |
+
"Pro": 534,
|
| 857 |
+
"Process": 286,
|
| 858 |
+
"Production": 287,
|
| 859 |
+
"Provide": 415,
|
| 860 |
+
"PulseBridge": 426,
|
| 861 |
+
"Python": 288,
|
| 862 |
+
"Q": 1386,
|
| 863 |
+
"R": 1387,
|
| 864 |
+
"React": 218,
|
| 865 |
+
"Ready": 252,
|
| 866 |
+
"Return": 414,
|
| 867 |
+
"Roboto": 289,
|
| 868 |
+
"S": 1388,
|
| 869 |
+
"Secure": 535,
|
| 870 |
+
"See": 290,
|
| 871 |
+
"Segoe": 291,
|
| 872 |
+
"Services": 292,
|
| 873 |
+
"Share": 632,
|
| 874 |
+
"Ship": 418,
|
| 875 |
+
"ShipCraft": 536,
|
| 876 |
+
"Shipline": 429,
|
| 877 |
+
"Simple": 537,
|
| 878 |
+
"Smart": 538,
|
| 879 |
+
"Smarter": 422,
|
| 880 |
+
"Software": 293,
|
| 881 |
+
"StackPilot": 539,
|
| 882 |
+
"Start": 200,
|
| 883 |
+
"Started": 229,
|
| 884 |
+
"Starter": 540,
|
| 885 |
+
"Systems": 294,
|
| 886 |
+
"T": 1389,
|
| 887 |
+
"Tailwind": 433,
|
| 888 |
+
"Talk": 295,
|
| 889 |
+
"Task": 296,
|
| 890 |
+
"Tell": 633,
|
| 891 |
+
"Testimonials": 482,
|
| 892 |
+
"Then": 485,
|
| 893 |
+
"Think": 133,
|
| 894 |
+
"Thorn": 658,
|
| 895 |
+
"Trial": 517,
|
| 896 |
+
"TypeScript": 576,
|
| 897 |
+
"U": 1390,
|
| 898 |
+
"UI": 255,
|
| 899 |
+
"UTF": 230,
|
| 900 |
+
"Use": 407,
|
| 901 |
+
"User": 132,
|
| 902 |
+
"V": 1391,
|
| 903 |
+
"VectorHive": 417,
|
| 904 |
+
"Vite": 574,
|
| 905 |
+
"W": 1392,
|
| 906 |
+
"We": 149,
|
| 907 |
+
"Web": 297,
|
| 908 |
+
"What": 671,
|
| 909 |
+
"Write": 1393,
|
| 910 |
+
"X": 1394,
|
| 911 |
+
"Y": 1395,
|
| 912 |
+
"Yes": 298,
|
| 913 |
+
"Z": 1396,
|
| 914 |
+
"[": 260,
|
| 915 |
+
"\\": 1397,
|
| 916 |
+
"]": 261,
|
| 917 |
+
"^": 299,
|
| 918 |
+
"_": 1398,
|
| 919 |
+
"`": 28,
|
| 920 |
+
"a": 23,
|
| 921 |
+
"about": 578,
|
| 922 |
+
"absolute": 300,
|
| 923 |
+
"accent": 75,
|
| 924 |
+
"accessible": 459,
|
| 925 |
+
"action": 672,
|
| 926 |
+
"actions": 164,
|
| 927 |
+
"add": 483,
|
| 928 |
+
"addEventListener": 165,
|
| 929 |
+
"agency": 201,
|
| 930 |
+
"agree": 673,
|
| 931 |
+
"ai": 496,
|
| 932 |
+
"align": 301,
|
| 933 |
+
"am": 605,
|
| 934 |
+
"amber": 410,
|
| 935 |
+
"an": 302,
|
| 936 |
+
"analytics": 303,
|
| 937 |
+
"and": 37,
|
| 938 |
+
"answer": 408,
|
| 939 |
+
"antialiased": 541,
|
| 940 |
+
"apple": 304,
|
| 941 |
+
"architecture": 305,
|
| 942 |
+
"are": 624,
|
| 943 |
+
"aria": 306,
|
| 944 |
+
"article": 61,
|
| 945 |
+
"as": 674,
|
| 946 |
+
"asked": 452,
|
| 947 |
+
"assistants": 307,
|
| 948 |
+
"auto": 135,
|
| 949 |
+
"automation": 151,
|
| 950 |
+
"avoid": 502,
|
| 951 |
+
"b": 240,
|
| 952 |
+
"b2c": 308,
|
| 953 |
+
"b6bdd3": 309,
|
| 954 |
+
"b6d4": 514,
|
| 955 |
+
"b8a6": 570,
|
| 956 |
+
"b981": 571,
|
| 957 |
+
"backdrop": 310,
|
| 958 |
+
"background": 56,
|
| 959 |
+
"based": 675,
|
| 960 |
+
"baseline": 676,
|
| 961 |
+
"before": 451,
|
| 962 |
+
"behavior": 215,
|
| 963 |
+
"better": 542,
|
| 964 |
+
"between": 231,
|
| 965 |
+
"bg": 47,
|
| 966 |
+
"block": 311,
|
| 967 |
+
"blue": 412,
|
| 968 |
+
"blur": 166,
|
| 969 |
+
"body": 106,
|
| 970 |
+
"bold": 224,
|
| 971 |
+
"border": 39,
|
| 972 |
+
"borderBottomColor": 312,
|
| 973 |
+
"bottom": 114,
|
| 974 |
+
"box": 167,
|
| 975 |
+
"brand": 168,
|
| 976 |
+
"briefly": 456,
|
| 977 |
+
"btn": 45,
|
| 978 |
+
"build": 209,
|
| 979 |
+
"building": 579,
|
| 980 |
+
"builds": 313,
|
| 981 |
+
"built": 472,
|
| 982 |
+
"button": 88,
|
| 983 |
+
"by": 391,
|
| 984 |
+
"c": 1399,
|
| 985 |
+
"can": 608,
|
| 986 |
+
"canary": 677,
|
| 987 |
+
"card": 93,
|
| 988 |
+
"cdn": 543,
|
| 989 |
+
"center": 198,
|
| 990 |
+
"ch": 314,
|
| 991 |
+
"change": 393,
|
| 992 |
+
"changes": 491,
|
| 993 |
+
"changing": 678,
|
| 994 |
+
"charset": 232,
|
| 995 |
+
"check": 679,
|
| 996 |
+
"checks": 659,
|
| 997 |
+
"clamp": 315,
|
| 998 |
+
"class": 20,
|
| 999 |
+
"className": 101,
|
| 1000 |
+
"classes": 575,
|
| 1001 |
+
"clean": 462,
|
| 1002 |
+
"clear": 437,
|
| 1003 |
+
"click": 316,
|
| 1004 |
+
"code": 105,
|
| 1005 |
+
"codebase": 680,
|
| 1006 |
+
"coding": 607,
|
| 1007 |
+
"color": 52,
|
| 1008 |
+
"cols": 446,
|
| 1009 |
+
"columns": 115,
|
| 1010 |
+
"com": 233,
|
| 1011 |
+
"compatible": 498,
|
| 1012 |
+
"complete": 467,
|
| 1013 |
+
"component": 396,
|
| 1014 |
+
"components": 206,
|
| 1015 |
+
"compute": 480,
|
| 1016 |
+
"concise": 645,
|
| 1017 |
+
"constraints": 317,
|
| 1018 |
+
"consultancy": 508,
|
| 1019 |
+
"contact": 116,
|
| 1020 |
+
"container": 50,
|
| 1021 |
+
"content": 111,
|
| 1022 |
+
"css": 102,
|
| 1023 |
+
"cta": 431,
|
| 1024 |
+
"cyan": 511,
|
| 1025 |
+
"d": 1400,
|
| 1026 |
+
"dataset": 169,
|
| 1027 |
+
"decoding": 681,
|
| 1028 |
+
"decoration": 117,
|
| 1029 |
+
"def": 1401,
|
| 1030 |
+
"default": 241,
|
| 1031 |
+
"defaults": 544,
|
| 1032 |
+
"delivery": 318,
|
| 1033 |
+
"deployment": 545,
|
| 1034 |
+
"description": 319,
|
| 1035 |
+
"design": 320,
|
| 1036 |
+
"details": 76,
|
| 1037 |
+
"deterministic": 660,
|
| 1038 |
+
"developer": 225,
|
| 1039 |
+
"developers": 546,
|
| 1040 |
+
"device": 234,
|
| 1041 |
+
"did": 682,
|
| 1042 |
+
"diff": 488,
|
| 1043 |
+
"diffs": 683,
|
| 1044 |
+
"digital": 321,
|
| 1045 |
+
"display": 62,
|
| 1046 |
+
"div": 24,
|
| 1047 |
+
"do": 626,
|
| 1048 |
+
"document": 118,
|
| 1049 |
+
"does": 322,
|
| 1050 |
+
"doing": 618,
|
| 1051 |
+
"e": 170,
|
| 1052 |
+
"ea5e9": 567,
|
| 1053 |
+
"edit": 627,
|
| 1054 |
+
"edits": 493,
|
| 1055 |
+
"em": 171,
|
| 1056 |
+
"emerald": 398,
|
| 1057 |
+
"en": 235,
|
| 1058 |
+
"end": 323,
|
| 1059 |
+
"engagements": 324,
|
| 1060 |
+
"engineering": 221,
|
| 1061 |
+
"evening": 646,
|
| 1062 |
+
"example": 325,
|
| 1063 |
+
"existing": 326,
|
| 1064 |
+
"experimentation": 327,
|
| 1065 |
+
"export": 242,
|
| 1066 |
+
"extrabold": 423,
|
| 1067 |
+
"eyebrow": 172,
|
| 1068 |
+
"f": 1402,
|
| 1069 |
+
"f1": 569,
|
| 1070 |
+
"f1220": 328,
|
| 1071 |
+
"f3f4f6": 329,
|
| 1072 |
+
"f43f5e": 510,
|
| 1073 |
+
"family": 330,
|
| 1074 |
+
"faq": 86,
|
| 1075 |
+
"fast": 220,
|
| 1076 |
+
"feature": 684,
|
| 1077 |
+
"features": 501,
|
| 1078 |
+
"file": 119,
|
| 1079 |
+
"files": 406,
|
| 1080 |
+
"filter": 173,
|
| 1081 |
+
"final": 439,
|
| 1082 |
+
"first": 1403,
|
| 1083 |
+
"fixed": 685,
|
| 1084 |
+
"flex": 107,
|
| 1085 |
+
"focused": 210,
|
| 1086 |
+
"folders": 686,
|
| 1087 |
+
"font": 55,
|
| 1088 |
+
"footer": 85,
|
| 1089 |
+
"for": 98,
|
| 1090 |
+
"forEach": 331,
|
| 1091 |
+
"format": 687,
|
| 1092 |
+
"formatting": 504,
|
| 1093 |
+
"fr": 120,
|
| 1094 |
+
"from": 194,
|
| 1095 |
+
"frontend": 688,
|
| 1096 |
+
"full": 689,
|
| 1097 |
+
"function": 73,
|
| 1098 |
+
"g": 1404,
|
| 1099 |
+
"gap": 84,
|
| 1100 |
+
"gate": 690,
|
| 1101 |
+
"generate": 580,
|
| 1102 |
+
"generation": 606,
|
| 1103 |
+
"get": 547,
|
| 1104 |
+
"getAttribute": 332,
|
| 1105 |
+
"ghost": 174,
|
| 1106 |
+
"glow": 175,
|
| 1107 |
+
"goals": 333,
|
| 1108 |
+
"going": 647,
|
| 1109 |
+
"good": 610,
|
| 1110 |
+
"gradient": 548,
|
| 1111 |
+
"gray": 195,
|
| 1112 |
+
"grid": 48,
|
| 1113 |
+
"guardrails": 691,
|
| 1114 |
+
"h": 449,
|
| 1115 |
+
"h1": 91,
|
| 1116 |
+
"h2": 250,
|
| 1117 |
+
"h3": 54,
|
| 1118 |
+
"h4": 249,
|
| 1119 |
+
"head": 144,
|
| 1120 |
+
"header": 44,
|
| 1121 |
+
"height": 176,
|
| 1122 |
+
"hello": 253,
|
| 1123 |
+
"help": 599,
|
| 1124 |
+
"helps": 549,
|
| 1125 |
+
"hero": 53,
|
| 1126 |
+
"hey": 648,
|
| 1127 |
+
"hi": 642,
|
| 1128 |
+
"hidden": 177,
|
| 1129 |
+
"hierarchy": 463,
|
| 1130 |
+
"high": 334,
|
| 1131 |
+
"hover": 509,
|
| 1132 |
+
"how": 612,
|
| 1133 |
+
"href": 41,
|
| 1134 |
+
"html": 60,
|
| 1135 |
+
"https": 550,
|
| 1136 |
+
"i": 1405,
|
| 1137 |
+
"id": 49,
|
| 1138 |
+
"idea": 469,
|
| 1139 |
+
"if": 121,
|
| 1140 |
+
"impact": 335,
|
| 1141 |
+
"implementation": 466,
|
| 1142 |
+
"in": 148,
|
| 1143 |
+
"index": 214,
|
| 1144 |
+
"indigo": 397,
|
| 1145 |
+
"infer": 649,
|
| 1146 |
+
"initial": 152,
|
| 1147 |
+
"inline": 336,
|
| 1148 |
+
"input": 1406,
|
| 1149 |
+
"insights": 551,
|
| 1150 |
+
"integrate": 337,
|
| 1151 |
+
"interactions": 453,
|
| 1152 |
+
"is": 634,
|
| 1153 |
+
"it": 650,
|
| 1154 |
+
"items": 236,
|
| 1155 |
+
"iterate": 338,
|
| 1156 |
+
"iterations": 552,
|
| 1157 |
+
"iterative": 339,
|
| 1158 |
+
"j": 1407,
|
| 1159 |
+
"js": 103,
|
| 1160 |
+
"justify": 212,
|
| 1161 |
+
"k": 1408,
|
| 1162 |
+
"key": 692,
|
| 1163 |
+
"l": 1409,
|
| 1164 |
+
"landing": 196,
|
| 1165 |
+
"lang": 237,
|
| 1166 |
+
"launch": 470,
|
| 1167 |
+
"layout": 464,
|
| 1168 |
+
"leading": 553,
|
| 1169 |
+
"left": 340,
|
| 1170 |
+
"length": 341,
|
| 1171 |
+
"letter": 178,
|
| 1172 |
+
"lg": 104,
|
| 1173 |
+
"line": 46,
|
| 1174 |
+
"link": 94,
|
| 1175 |
+
"links": 179,
|
| 1176 |
+
"lint": 693,
|
| 1177 |
+
"linting": 694,
|
| 1178 |
+
"long": 342,
|
| 1179 |
+
"m": 1410,
|
| 1180 |
+
"mailto": 343,
|
| 1181 |
+
"main": 136,
|
| 1182 |
+
"maintainability": 695,
|
| 1183 |
+
"maintainable": 216,
|
| 1184 |
+
"make": 696,
|
| 1185 |
+
"margin": 77,
|
| 1186 |
+
"max": 99,
|
| 1187 |
+
"mb": 420,
|
| 1188 |
+
"md": 405,
|
| 1189 |
+
"me": 611,
|
| 1190 |
+
"measurable": 344,
|
| 1191 |
+
"media": 345,
|
| 1192 |
+
"merge": 697,
|
| 1193 |
+
"meta": 108,
|
| 1194 |
+
"metrics": 256,
|
| 1195 |
+
"milestones": 346,
|
| 1196 |
+
"min": 213,
|
| 1197 |
+
"minimal": 487,
|
| 1198 |
+
"minmax": 180,
|
| 1199 |
+
"modern": 205,
|
| 1200 |
+
"monitor": 347,
|
| 1201 |
+
"morning": 651,
|
| 1202 |
+
"move": 475,
|
| 1203 |
+
"mt": 404,
|
| 1204 |
+
"multiply": 486,
|
| 1205 |
+
"muted": 122,
|
| 1206 |
+
"mx": 202,
|
| 1207 |
+
"n": 1411,
|
| 1208 |
+
"name": 153,
|
| 1209 |
+
"nav": 78,
|
| 1210 |
+
"none": 95,
|
| 1211 |
+
"o": 1412,
|
| 1212 |
+
"objective": 652,
|
| 1213 |
+
"of": 1413,
|
| 1214 |
+
"offsetTop": 348,
|
| 1215 |
+
"okay": 653,
|
| 1216 |
+
"only": 494,
|
| 1217 |
+
"opacity": 349,
|
| 1218 |
+
"or": 613,
|
| 1219 |
+
"our": 350,
|
| 1220 |
+
"output": 499,
|
| 1221 |
+
"outputs": 661,
|
| 1222 |
+
"overflow": 351,
|
| 1223 |
+
"p": 25,
|
| 1224 |
+
"padding": 51,
|
| 1225 |
+
"page": 197,
|
| 1226 |
+
"parameters": 698,
|
| 1227 |
+
"passive": 352,
|
| 1228 |
+
"paste": 123,
|
| 1229 |
+
"patch": 609,
|
| 1230 |
+
"patch_edit": 699,
|
| 1231 |
+
"path": 700,
|
| 1232 |
+
"pipelines": 353,
|
| 1233 |
+
"plan": 457,
|
| 1234 |
+
"position": 124,
|
| 1235 |
+
"practical": 454,
|
| 1236 |
+
"predictable": 354,
|
| 1237 |
+
"preserve": 635,
|
| 1238 |
+
"preventDefault": 355,
|
| 1239 |
+
"pricing": 440,
|
| 1240 |
+
"primitives": 701,
|
| 1241 |
+
"process": 147,
|
| 1242 |
+
"product": 138,
|
| 1243 |
+
"production": 473,
|
| 1244 |
+
"products": 142,
|
| 1245 |
+
"project": 356,
|
| 1246 |
+
"provide": 432,
|
| 1247 |
+
"px": 33,
|
| 1248 |
+
"py": 100,
|
| 1249 |
+
"python": 1414,
|
| 1250 |
+
"q": 1415,
|
| 1251 |
+
"quality": 357,
|
| 1252 |
+
"querySelector": 181,
|
| 1253 |
+
"querySelectorAll": 358,
|
| 1254 |
+
"quickly": 359,
|
| 1255 |
+
"r": 554,
|
| 1256 |
+
"radius": 125,
|
| 1257 |
+
"ready": 614,
|
| 1258 |
+
"real": 360,
|
| 1259 |
+
"reason": 581,
|
| 1260 |
+
"refactoring": 636,
|
| 1261 |
+
"refactors": 702,
|
| 1262 |
+
"regressions": 703,
|
| 1263 |
+
"rel": 361,
|
| 1264 |
+
"relative": 362,
|
| 1265 |
+
"release": 704,
|
| 1266 |
+
"rem": 26,
|
| 1267 |
+
"repeat": 182,
|
| 1268 |
+
"request": 625,
|
| 1269 |
+
"requested": 637,
|
| 1270 |
+
"reserved": 555,
|
| 1271 |
+
"responsive": 465,
|
| 1272 |
+
"result": 654,
|
| 1273 |
+
"retrieval": 363,
|
| 1274 |
+
"return": 143,
|
| 1275 |
+
"reverse": 1416,
|
| 1276 |
+
"reverse_string": 1417,
|
| 1277 |
+
"reversed": 1418,
|
| 1278 |
+
"rgba": 79,
|
| 1279 |
+
"right": 364,
|
| 1280 |
+
"rights": 556,
|
| 1281 |
+
"rollback": 705,
|
| 1282 |
+
"rollout": 662,
|
| 1283 |
+
"root": 365,
|
| 1284 |
+
"rose": 399,
|
| 1285 |
+
"rounded": 112,
|
| 1286 |
+
"row": 126,
|
| 1287 |
+
"run": 706,
|
| 1288 |
+
"s": 1419,
|
| 1289 |
+
"safe": 628,
|
| 1290 |
+
"safety": 707,
|
| 1291 |
+
"same": 708,
|
| 1292 |
+
"sample": 183,
|
| 1293 |
+
"sans": 366,
|
| 1294 |
+
"scale": 238,
|
| 1295 |
+
"schemas": 709,
|
| 1296 |
+
"screen": 450,
|
| 1297 |
+
"script": 66,
|
| 1298 |
+
"scroll": 367,
|
| 1299 |
+
"scrollTo": 368,
|
| 1300 |
+
"scrollY": 369,
|
| 1301 |
+
"section": 35,
|
| 1302 |
+
"security": 557,
|
| 1303 |
+
"semantic": 438,
|
| 1304 |
+
"semibold": 211,
|
| 1305 |
+
"serif": 370,
|
| 1306 |
+
"services": 87,
|
| 1307 |
+
"set": 710,
|
| 1308 |
+
"shadow": 223,
|
| 1309 |
+
"shared": 711,
|
| 1310 |
+
"ship": 154,
|
| 1311 |
+
"ships": 471,
|
| 1312 |
+
"should": 712,
|
| 1313 |
+
"signals": 460,
|
| 1314 |
+
"site": 63,
|
| 1315 |
+
"size": 184,
|
| 1316 |
+
"sizing": 371,
|
| 1317 |
+
"sky": 400,
|
| 1318 |
+
"sm": 90,
|
| 1319 |
+
"smooth": 372,
|
| 1320 |
+
"snapshot": 713,
|
| 1321 |
+
"soft": 96,
|
| 1322 |
+
"software": 430,
|
| 1323 |
+
"solid": 57,
|
| 1324 |
+
"solve": 656,
|
| 1325 |
+
"space": 373,
|
| 1326 |
+
"spacing": 185,
|
| 1327 |
+
"specialize": 638,
|
| 1328 |
+
"specific": 374,
|
| 1329 |
+
"src": 134,
|
| 1330 |
+
"stack": 375,
|
| 1331 |
+
"stages": 714,
|
| 1332 |
+
"started": 558,
|
| 1333 |
+
"startup": 506,
|
| 1334 |
+
"step": 243,
|
| 1335 |
+
"sticky": 376,
|
| 1336 |
+
"str": 961,
|
| 1337 |
+
"strategy": 715,
|
| 1338 |
+
"streamline": 559,
|
| 1339 |
+
"strict": 716,
|
| 1340 |
+
"string": 962,
|
| 1341 |
+
"strong": 64,
|
| 1342 |
+
"structure": 434,
|
| 1343 |
+
"studio": 495,
|
| 1344 |
+
"style": 377,
|
| 1345 |
+
"styles": 146,
|
| 1346 |
+
"stylesheet": 186,
|
| 1347 |
+
"subtitle": 187,
|
| 1348 |
+
"success": 378,
|
| 1349 |
+
"summary": 97,
|
| 1350 |
+
"system": 188,
|
| 1351 |
+
"systems": 189,
|
| 1352 |
+
"t": 560,
|
| 1353 |
+
"tailwindcss": 561,
|
| 1354 |
+
"take": 379,
|
| 1355 |
+
"target": 127,
|
| 1356 |
+
"task": 615,
|
| 1357 |
+
"teal": 401,
|
| 1358 |
+
"teams": 150,
|
| 1359 |
+
"template": 128,
|
| 1360 |
+
"test": 717,
|
| 1361 |
+
"testimonials": 572,
|
| 1362 |
+
"tests": 663,
|
| 1363 |
+
"text": 32,
|
| 1364 |
+
"thank": 639,
|
| 1365 |
+
"that": 425,
|
| 1366 |
+
"the": 244,
|
| 1367 |
+
"then": 402,
|
| 1368 |
+
"thing": 718,
|
| 1369 |
+
"thinking": 409,
|
| 1370 |
+
"this": 129,
|
| 1371 |
+
"thought": 719,
|
| 1372 |
+
"three": 455,
|
| 1373 |
+
"through": 720,
|
| 1374 |
+
"tight": 562,
|
| 1375 |
+
"timeline": 130,
|
| 1376 |
+
"title": 145,
|
| 1377 |
+
"to": 83,
|
| 1378 |
+
"token": 640,
|
| 1379 |
+
"tool": 497,
|
| 1380 |
+
"tooling": 507,
|
| 1381 |
+
"tools": 380,
|
| 1382 |
+
"top": 65,
|
| 1383 |
+
"transform": 381,
|
| 1384 |
+
"transition": 563,
|
| 1385 |
+
"transparent": 382,
|
| 1386 |
+
"true": 190,
|
| 1387 |
+
"trust": 461,
|
| 1388 |
+
"tsx": 207,
|
| 1389 |
+
"u": 1420,
|
| 1390 |
+
"ui": 383,
|
| 1391 |
+
"unified": 489,
|
| 1392 |
+
"unified_diff": 721,
|
| 1393 |
+
"unrelated": 505,
|
| 1394 |
+
"uppercase": 384,
|
| 1395 |
+
"us": 191,
|
| 1396 |
+
"usage": 385,
|
| 1397 |
+
"utility": 582,
|
| 1398 |
+
"v": 1421,
|
| 1399 |
+
"validate": 722,
|
| 1400 |
+
"validate_apply_then_build": 723,
|
| 1401 |
+
"value": 963,
|
| 1402 |
+
"var": 30,
|
| 1403 |
+
"version": 262,
|
| 1404 |
+
"viewport": 239,
|
| 1405 |
+
"violet": 411,
|
| 1406 |
+
"visual": 458,
|
| 1407 |
+
"vw": 386,
|
| 1408 |
+
"w": 203,
|
| 1409 |
+
"web": 387,
|
| 1410 |
+
"weeks": 217,
|
| 1411 |
+
"weight": 388,
|
| 1412 |
+
"well": 616,
|
| 1413 |
+
"what": 617,
|
| 1414 |
+
"when": 724,
|
| 1415 |
+
"white": 74,
|
| 1416 |
+
"width": 58,
|
| 1417 |
+
"will": 641,
|
| 1418 |
+
"window": 131,
|
| 1419 |
+
"with": 70,
|
| 1420 |
+
"work": 389,
|
| 1421 |
+
"workflow": 390,
|
| 1422 |
+
"workflows": 564,
|
| 1423 |
+
"wrap": 192,
|
| 1424 |
+
"x": 1422,
|
| 1425 |
+
"xl": 82,
|
| 1426 |
+
"y": 1423,
|
| 1427 |
+
"yes": 725,
|
| 1428 |
+
"yo": 655,
|
| 1429 |
+
"you": 251,
|
| 1430 |
+
"your": 441,
|
| 1431 |
+
"z": 1424,
|
| 1432 |
+
"{": 18,
|
| 1433 |
+
"|": 193,
|
| 1434 |
+
"}": 19,
|
| 1435 |
+
"~": 1425,
|
| 1436 |
+
"\u00a9": 565
|
| 1437 |
}
|
| 1438 |
}
|
tokenizer_config.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
| 5 |
null
|
| 6 |
]
|
| 7 |
},
|
| 8 |
-
"model_max_length":
|
| 9 |
"padding_side": "right",
|
| 10 |
"special_tokens_map": {
|
| 11 |
"bos_token": "<bos>",
|
|
|
|
| 5 |
null
|
| 6 |
]
|
| 7 |
},
|
| 8 |
+
"model_max_length": 384,
|
| 9 |
"padding_side": "right",
|
| 10 |
"special_tokens_map": {
|
| 11 |
"bos_token": "<bos>",
|