somebody-to-love commited on
Commit
ee41940
·
verified ·
1 Parent(s): 3d85abb

Upload folder using huggingface_hub

Browse files
README.md CHANGED
@@ -1,3 +1,68 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - ko
4
+ license: other
5
+ tags:
6
+ - llm
7
+ - korean
8
+ - orpo
9
+ - gguf
10
+ ---
11
+
12
+ # FRANKENSTALLM 3B v2 (Byte-Fallback Fixed)
13
+
14
+ 한국어 중심 **FRANKENSTALLM 3B** ORPO 파인튜닝 체크포인트에 **byte-fallback 토큰 256개**를 추가한 버전입니다.
15
+ llama.cpp/GGUF 추론 시 줄바꿈(`\n`) 등 미등록 문자로 인한 크래시를 방지하기 위해 사용합니다.
16
+
17
+ ## 모델 상세
18
+
19
+ | 항목 | 값 |
20
+ |------|-----|
21
+ | **Architecture** | LlamaForCausalLM |
22
+ | **Params** | ~3B |
23
+ | **Hidden size** | 2048 |
24
+ | **Layers** | 24 |
25
+ | **Attention heads** | 16 |
26
+ | **KV heads** | 4 |
27
+ | **Max position** | 4096 |
28
+ | **Vocab size** | **64,256** (64,000 + 256 byte-fallback) |
29
+ | **Training** | ORPO (SFT → ORPO) |
30
+
31
+ ## 변경 사항 (v2)
32
+
33
+ - 토크나이저: `byte_fallback=True`, `<0x00>`~`<0xFF>` 256개 토큰 추가
34
+ - 임베딩: 64,000 → 64,256 리사이즈, 새 토큰 초기화
35
+ - GGUF 변환·Ollama 배포 시 뉴라인 포함 입력 정상 처리 확인
36
+
37
+ ## ORPO 평가 요약 (동일 체크포인트 기준)
38
+
39
+ - **평가 일시**: 2026-03-09
40
+ - **Preference Accuracy**: 76.02%
41
+ - **Reward Margin**: 0.6100
42
+ - **Eval Loss**: 1.7910 → 1.6250
43
+ - **KoBEST (0-shot) 평균**: 52.75%
44
+ - **생성 품질**: Greedy 3-gram 반복률 30.89%, EOS 종료율 66.67%
45
+ - **PPL Forgetting**: 최대 4.1% (기준 <15%)
46
+ - **종합**: 7/10 차원 통과, 정량 스코어 63.7/100
47
+
48
+ 상세: 프로젝트 내 `reports/2026-03-09_ORPO_EVALUATION_REPORT.md` 참고.
49
+
50
+ ## Ollama 배포 벤치마크 (Q4_K_M, 2026-03-09)
51
+
52
+ - **모델명**: `frankenstallm-3b-v2`
53
+ - **테스트 수**: 35 (자동 20 + 수동 15)
54
+ - **자동 채점 평균**: 46.7
55
+ - **카테고리**: korean_nlu 100.0, reasoning 50.0, knowledge 75.0, instruction_following 66.7, code 0.0, safety 10.0, repetition_resistance 2.2 등
56
+ - **지연**: Avg TTFT 16.7 ms, Avg TPS 142.5
57
+
58
+ 상세: `reports/2026-03-09_GGUF_DEPLOYMENT_AND_EVAL_REPORT.md`, `eval/results/frankenstallm-3b-v2/ollama_benchmark_summary.md`
59
+
60
+ ## 사용
61
+
62
+ - **Transformers**: 이 체크포인트를 그대로 `from_pretrained(...)` 로 로드 가능.
63
+ - **GGUF**: `scripts/fix_tokenizer_byte_fallback.py` 적용 후 `convert_hf_to_gguf.py` → `llama-quantize` 로 변환한 v2 파이프라인 사용 권장.
64
+ 이미 변환된 Q4_K_M GGUF는 Ollama에서 `frankenstallm-3b-v2` 로 배포 가능.
65
+
66
+ ## 라이선스
67
+
68
+ 프로젝트(FRANKENSTALLM) 라이선스에 따릅니다.
config.json ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "LlamaForCausalLM"
4
+ ],
5
+ "model_type": "llama",
6
+ "hidden_size": 2048,
7
+ "intermediate_size": 5472,
8
+ "num_hidden_layers": 24,
9
+ "num_attention_heads": 16,
10
+ "num_key_value_heads": 4,
11
+ "hidden_act": "silu",
12
+ "max_position_embeddings": 4096,
13
+ "initializer_range": 0.02,
14
+ "rms_norm_eps": 1e-05,
15
+ "vocab_size": 64256,
16
+ "rope_theta": 500000.0,
17
+ "rope_scaling": null,
18
+ "attention_bias": false,
19
+ "tie_word_embeddings": true,
20
+ "torch_dtype": "float16",
21
+ "transformers_version": "4.40.0"
22
+ }
generation_config.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token_id": 1,
3
+ "eos_token_id": 2,
4
+ "pad_token_id": 0,
5
+ "max_new_tokens": 512,
6
+ "temperature": 0.8,
7
+ "top_p": 0.9,
8
+ "do_sample": true
9
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d868c1edd46f9a5b8c217105fa56e96d98c8691db53a164c58453ac1f5863c80
3
+ size 4760961400
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer.model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:edcf1eaa0a5ba871302ff42df9f80d1d0baa166ff2a57f4392c29145796bc7b2
3
+ size 1424163
tokenizer_config.json ADDED
@@ -0,0 +1,2059 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_type": "llama",
3
+ "tokenizer_class": "PreTrainedTokenizerFast",
4
+ "bos_token": "<s>",
5
+ "eos_token": "</s>",
6
+ "unk_token": "<unk>",
7
+ "pad_token": "<pad>",
8
+ "clean_up_tokenization_spaces": false,
9
+ "added_tokens_decoder": {
10
+ "64000": {
11
+ "content": "<0x00>",
12
+ "lstrip": false,
13
+ "normalized": false,
14
+ "rstrip": false,
15
+ "single_word": false,
16
+ "special": true
17
+ },
18
+ "64001": {
19
+ "content": "<0x01>",
20
+ "lstrip": false,
21
+ "normalized": false,
22
+ "rstrip": false,
23
+ "single_word": false,
24
+ "special": true
25
+ },
26
+ "64002": {
27
+ "content": "<0x02>",
28
+ "lstrip": false,
29
+ "normalized": false,
30
+ "rstrip": false,
31
+ "single_word": false,
32
+ "special": true
33
+ },
34
+ "64003": {
35
+ "content": "<0x03>",
36
+ "lstrip": false,
37
+ "normalized": false,
38
+ "rstrip": false,
39
+ "single_word": false,
40
+ "special": true
41
+ },
42
+ "64004": {
43
+ "content": "<0x04>",
44
+ "lstrip": false,
45
+ "normalized": false,
46
+ "rstrip": false,
47
+ "single_word": false,
48
+ "special": true
49
+ },
50
+ "64005": {
51
+ "content": "<0x05>",
52
+ "lstrip": false,
53
+ "normalized": false,
54
+ "rstrip": false,
55
+ "single_word": false,
56
+ "special": true
57
+ },
58
+ "64006": {
59
+ "content": "<0x06>",
60
+ "lstrip": false,
61
+ "normalized": false,
62
+ "rstrip": false,
63
+ "single_word": false,
64
+ "special": true
65
+ },
66
+ "64007": {
67
+ "content": "<0x07>",
68
+ "lstrip": false,
69
+ "normalized": false,
70
+ "rstrip": false,
71
+ "single_word": false,
72
+ "special": true
73
+ },
74
+ "64008": {
75
+ "content": "<0x08>",
76
+ "lstrip": false,
77
+ "normalized": false,
78
+ "rstrip": false,
79
+ "single_word": false,
80
+ "special": true
81
+ },
82
+ "64009": {
83
+ "content": "<0x09>",
84
+ "lstrip": false,
85
+ "normalized": false,
86
+ "rstrip": false,
87
+ "single_word": false,
88
+ "special": true
89
+ },
90
+ "64010": {
91
+ "content": "<0x0A>",
92
+ "lstrip": false,
93
+ "normalized": false,
94
+ "rstrip": false,
95
+ "single_word": false,
96
+ "special": true
97
+ },
98
+ "64011": {
99
+ "content": "<0x0B>",
100
+ "lstrip": false,
101
+ "normalized": false,
102
+ "rstrip": false,
103
+ "single_word": false,
104
+ "special": true
105
+ },
106
+ "64012": {
107
+ "content": "<0x0C>",
108
+ "lstrip": false,
109
+ "normalized": false,
110
+ "rstrip": false,
111
+ "single_word": false,
112
+ "special": true
113
+ },
114
+ "64013": {
115
+ "content": "<0x0D>",
116
+ "lstrip": false,
117
+ "normalized": false,
118
+ "rstrip": false,
119
+ "single_word": false,
120
+ "special": true
121
+ },
122
+ "64014": {
123
+ "content": "<0x0E>",
124
+ "lstrip": false,
125
+ "normalized": false,
126
+ "rstrip": false,
127
+ "single_word": false,
128
+ "special": true
129
+ },
130
+ "64015": {
131
+ "content": "<0x0F>",
132
+ "lstrip": false,
133
+ "normalized": false,
134
+ "rstrip": false,
135
+ "single_word": false,
136
+ "special": true
137
+ },
138
+ "64016": {
139
+ "content": "<0x10>",
140
+ "lstrip": false,
141
+ "normalized": false,
142
+ "rstrip": false,
143
+ "single_word": false,
144
+ "special": true
145
+ },
146
+ "64017": {
147
+ "content": "<0x11>",
148
+ "lstrip": false,
149
+ "normalized": false,
150
+ "rstrip": false,
151
+ "single_word": false,
152
+ "special": true
153
+ },
154
+ "64018": {
155
+ "content": "<0x12>",
156
+ "lstrip": false,
157
+ "normalized": false,
158
+ "rstrip": false,
159
+ "single_word": false,
160
+ "special": true
161
+ },
162
+ "64019": {
163
+ "content": "<0x13>",
164
+ "lstrip": false,
165
+ "normalized": false,
166
+ "rstrip": false,
167
+ "single_word": false,
168
+ "special": true
169
+ },
170
+ "64020": {
171
+ "content": "<0x14>",
172
+ "lstrip": false,
173
+ "normalized": false,
174
+ "rstrip": false,
175
+ "single_word": false,
176
+ "special": true
177
+ },
178
+ "64021": {
179
+ "content": "<0x15>",
180
+ "lstrip": false,
181
+ "normalized": false,
182
+ "rstrip": false,
183
+ "single_word": false,
184
+ "special": true
185
+ },
186
+ "64022": {
187
+ "content": "<0x16>",
188
+ "lstrip": false,
189
+ "normalized": false,
190
+ "rstrip": false,
191
+ "single_word": false,
192
+ "special": true
193
+ },
194
+ "64023": {
195
+ "content": "<0x17>",
196
+ "lstrip": false,
197
+ "normalized": false,
198
+ "rstrip": false,
199
+ "single_word": false,
200
+ "special": true
201
+ },
202
+ "64024": {
203
+ "content": "<0x18>",
204
+ "lstrip": false,
205
+ "normalized": false,
206
+ "rstrip": false,
207
+ "single_word": false,
208
+ "special": true
209
+ },
210
+ "64025": {
211
+ "content": "<0x19>",
212
+ "lstrip": false,
213
+ "normalized": false,
214
+ "rstrip": false,
215
+ "single_word": false,
216
+ "special": true
217
+ },
218
+ "64026": {
219
+ "content": "<0x1A>",
220
+ "lstrip": false,
221
+ "normalized": false,
222
+ "rstrip": false,
223
+ "single_word": false,
224
+ "special": true
225
+ },
226
+ "64027": {
227
+ "content": "<0x1B>",
228
+ "lstrip": false,
229
+ "normalized": false,
230
+ "rstrip": false,
231
+ "single_word": false,
232
+ "special": true
233
+ },
234
+ "64028": {
235
+ "content": "<0x1C>",
236
+ "lstrip": false,
237
+ "normalized": false,
238
+ "rstrip": false,
239
+ "single_word": false,
240
+ "special": true
241
+ },
242
+ "64029": {
243
+ "content": "<0x1D>",
244
+ "lstrip": false,
245
+ "normalized": false,
246
+ "rstrip": false,
247
+ "single_word": false,
248
+ "special": true
249
+ },
250
+ "64030": {
251
+ "content": "<0x1E>",
252
+ "lstrip": false,
253
+ "normalized": false,
254
+ "rstrip": false,
255
+ "single_word": false,
256
+ "special": true
257
+ },
258
+ "64031": {
259
+ "content": "<0x1F>",
260
+ "lstrip": false,
261
+ "normalized": false,
262
+ "rstrip": false,
263
+ "single_word": false,
264
+ "special": true
265
+ },
266
+ "64032": {
267
+ "content": "<0x20>",
268
+ "lstrip": false,
269
+ "normalized": false,
270
+ "rstrip": false,
271
+ "single_word": false,
272
+ "special": true
273
+ },
274
+ "64033": {
275
+ "content": "<0x21>",
276
+ "lstrip": false,
277
+ "normalized": false,
278
+ "rstrip": false,
279
+ "single_word": false,
280
+ "special": true
281
+ },
282
+ "64034": {
283
+ "content": "<0x22>",
284
+ "lstrip": false,
285
+ "normalized": false,
286
+ "rstrip": false,
287
+ "single_word": false,
288
+ "special": true
289
+ },
290
+ "64035": {
291
+ "content": "<0x23>",
292
+ "lstrip": false,
293
+ "normalized": false,
294
+ "rstrip": false,
295
+ "single_word": false,
296
+ "special": true
297
+ },
298
+ "64036": {
299
+ "content": "<0x24>",
300
+ "lstrip": false,
301
+ "normalized": false,
302
+ "rstrip": false,
303
+ "single_word": false,
304
+ "special": true
305
+ },
306
+ "64037": {
307
+ "content": "<0x25>",
308
+ "lstrip": false,
309
+ "normalized": false,
310
+ "rstrip": false,
311
+ "single_word": false,
312
+ "special": true
313
+ },
314
+ "64038": {
315
+ "content": "<0x26>",
316
+ "lstrip": false,
317
+ "normalized": false,
318
+ "rstrip": false,
319
+ "single_word": false,
320
+ "special": true
321
+ },
322
+ "64039": {
323
+ "content": "<0x27>",
324
+ "lstrip": false,
325
+ "normalized": false,
326
+ "rstrip": false,
327
+ "single_word": false,
328
+ "special": true
329
+ },
330
+ "64040": {
331
+ "content": "<0x28>",
332
+ "lstrip": false,
333
+ "normalized": false,
334
+ "rstrip": false,
335
+ "single_word": false,
336
+ "special": true
337
+ },
338
+ "64041": {
339
+ "content": "<0x29>",
340
+ "lstrip": false,
341
+ "normalized": false,
342
+ "rstrip": false,
343
+ "single_word": false,
344
+ "special": true
345
+ },
346
+ "64042": {
347
+ "content": "<0x2A>",
348
+ "lstrip": false,
349
+ "normalized": false,
350
+ "rstrip": false,
351
+ "single_word": false,
352
+ "special": true
353
+ },
354
+ "64043": {
355
+ "content": "<0x2B>",
356
+ "lstrip": false,
357
+ "normalized": false,
358
+ "rstrip": false,
359
+ "single_word": false,
360
+ "special": true
361
+ },
362
+ "64044": {
363
+ "content": "<0x2C>",
364
+ "lstrip": false,
365
+ "normalized": false,
366
+ "rstrip": false,
367
+ "single_word": false,
368
+ "special": true
369
+ },
370
+ "64045": {
371
+ "content": "<0x2D>",
372
+ "lstrip": false,
373
+ "normalized": false,
374
+ "rstrip": false,
375
+ "single_word": false,
376
+ "special": true
377
+ },
378
+ "64046": {
379
+ "content": "<0x2E>",
380
+ "lstrip": false,
381
+ "normalized": false,
382
+ "rstrip": false,
383
+ "single_word": false,
384
+ "special": true
385
+ },
386
+ "64047": {
387
+ "content": "<0x2F>",
388
+ "lstrip": false,
389
+ "normalized": false,
390
+ "rstrip": false,
391
+ "single_word": false,
392
+ "special": true
393
+ },
394
+ "64048": {
395
+ "content": "<0x30>",
396
+ "lstrip": false,
397
+ "normalized": false,
398
+ "rstrip": false,
399
+ "single_word": false,
400
+ "special": true
401
+ },
402
+ "64049": {
403
+ "content": "<0x31>",
404
+ "lstrip": false,
405
+ "normalized": false,
406
+ "rstrip": false,
407
+ "single_word": false,
408
+ "special": true
409
+ },
410
+ "64050": {
411
+ "content": "<0x32>",
412
+ "lstrip": false,
413
+ "normalized": false,
414
+ "rstrip": false,
415
+ "single_word": false,
416
+ "special": true
417
+ },
418
+ "64051": {
419
+ "content": "<0x33>",
420
+ "lstrip": false,
421
+ "normalized": false,
422
+ "rstrip": false,
423
+ "single_word": false,
424
+ "special": true
425
+ },
426
+ "64052": {
427
+ "content": "<0x34>",
428
+ "lstrip": false,
429
+ "normalized": false,
430
+ "rstrip": false,
431
+ "single_word": false,
432
+ "special": true
433
+ },
434
+ "64053": {
435
+ "content": "<0x35>",
436
+ "lstrip": false,
437
+ "normalized": false,
438
+ "rstrip": false,
439
+ "single_word": false,
440
+ "special": true
441
+ },
442
+ "64054": {
443
+ "content": "<0x36>",
444
+ "lstrip": false,
445
+ "normalized": false,
446
+ "rstrip": false,
447
+ "single_word": false,
448
+ "special": true
449
+ },
450
+ "64055": {
451
+ "content": "<0x37>",
452
+ "lstrip": false,
453
+ "normalized": false,
454
+ "rstrip": false,
455
+ "single_word": false,
456
+ "special": true
457
+ },
458
+ "64056": {
459
+ "content": "<0x38>",
460
+ "lstrip": false,
461
+ "normalized": false,
462
+ "rstrip": false,
463
+ "single_word": false,
464
+ "special": true
465
+ },
466
+ "64057": {
467
+ "content": "<0x39>",
468
+ "lstrip": false,
469
+ "normalized": false,
470
+ "rstrip": false,
471
+ "single_word": false,
472
+ "special": true
473
+ },
474
+ "64058": {
475
+ "content": "<0x3A>",
476
+ "lstrip": false,
477
+ "normalized": false,
478
+ "rstrip": false,
479
+ "single_word": false,
480
+ "special": true
481
+ },
482
+ "64059": {
483
+ "content": "<0x3B>",
484
+ "lstrip": false,
485
+ "normalized": false,
486
+ "rstrip": false,
487
+ "single_word": false,
488
+ "special": true
489
+ },
490
+ "64060": {
491
+ "content": "<0x3C>",
492
+ "lstrip": false,
493
+ "normalized": false,
494
+ "rstrip": false,
495
+ "single_word": false,
496
+ "special": true
497
+ },
498
+ "64061": {
499
+ "content": "<0x3D>",
500
+ "lstrip": false,
501
+ "normalized": false,
502
+ "rstrip": false,
503
+ "single_word": false,
504
+ "special": true
505
+ },
506
+ "64062": {
507
+ "content": "<0x3E>",
508
+ "lstrip": false,
509
+ "normalized": false,
510
+ "rstrip": false,
511
+ "single_word": false,
512
+ "special": true
513
+ },
514
+ "64063": {
515
+ "content": "<0x3F>",
516
+ "lstrip": false,
517
+ "normalized": false,
518
+ "rstrip": false,
519
+ "single_word": false,
520
+ "special": true
521
+ },
522
+ "64064": {
523
+ "content": "<0x40>",
524
+ "lstrip": false,
525
+ "normalized": false,
526
+ "rstrip": false,
527
+ "single_word": false,
528
+ "special": true
529
+ },
530
+ "64065": {
531
+ "content": "<0x41>",
532
+ "lstrip": false,
533
+ "normalized": false,
534
+ "rstrip": false,
535
+ "single_word": false,
536
+ "special": true
537
+ },
538
+ "64066": {
539
+ "content": "<0x42>",
540
+ "lstrip": false,
541
+ "normalized": false,
542
+ "rstrip": false,
543
+ "single_word": false,
544
+ "special": true
545
+ },
546
+ "64067": {
547
+ "content": "<0x43>",
548
+ "lstrip": false,
549
+ "normalized": false,
550
+ "rstrip": false,
551
+ "single_word": false,
552
+ "special": true
553
+ },
554
+ "64068": {
555
+ "content": "<0x44>",
556
+ "lstrip": false,
557
+ "normalized": false,
558
+ "rstrip": false,
559
+ "single_word": false,
560
+ "special": true
561
+ },
562
+ "64069": {
563
+ "content": "<0x45>",
564
+ "lstrip": false,
565
+ "normalized": false,
566
+ "rstrip": false,
567
+ "single_word": false,
568
+ "special": true
569
+ },
570
+ "64070": {
571
+ "content": "<0x46>",
572
+ "lstrip": false,
573
+ "normalized": false,
574
+ "rstrip": false,
575
+ "single_word": false,
576
+ "special": true
577
+ },
578
+ "64071": {
579
+ "content": "<0x47>",
580
+ "lstrip": false,
581
+ "normalized": false,
582
+ "rstrip": false,
583
+ "single_word": false,
584
+ "special": true
585
+ },
586
+ "64072": {
587
+ "content": "<0x48>",
588
+ "lstrip": false,
589
+ "normalized": false,
590
+ "rstrip": false,
591
+ "single_word": false,
592
+ "special": true
593
+ },
594
+ "64073": {
595
+ "content": "<0x49>",
596
+ "lstrip": false,
597
+ "normalized": false,
598
+ "rstrip": false,
599
+ "single_word": false,
600
+ "special": true
601
+ },
602
+ "64074": {
603
+ "content": "<0x4A>",
604
+ "lstrip": false,
605
+ "normalized": false,
606
+ "rstrip": false,
607
+ "single_word": false,
608
+ "special": true
609
+ },
610
+ "64075": {
611
+ "content": "<0x4B>",
612
+ "lstrip": false,
613
+ "normalized": false,
614
+ "rstrip": false,
615
+ "single_word": false,
616
+ "special": true
617
+ },
618
+ "64076": {
619
+ "content": "<0x4C>",
620
+ "lstrip": false,
621
+ "normalized": false,
622
+ "rstrip": false,
623
+ "single_word": false,
624
+ "special": true
625
+ },
626
+ "64077": {
627
+ "content": "<0x4D>",
628
+ "lstrip": false,
629
+ "normalized": false,
630
+ "rstrip": false,
631
+ "single_word": false,
632
+ "special": true
633
+ },
634
+ "64078": {
635
+ "content": "<0x4E>",
636
+ "lstrip": false,
637
+ "normalized": false,
638
+ "rstrip": false,
639
+ "single_word": false,
640
+ "special": true
641
+ },
642
+ "64079": {
643
+ "content": "<0x4F>",
644
+ "lstrip": false,
645
+ "normalized": false,
646
+ "rstrip": false,
647
+ "single_word": false,
648
+ "special": true
649
+ },
650
+ "64080": {
651
+ "content": "<0x50>",
652
+ "lstrip": false,
653
+ "normalized": false,
654
+ "rstrip": false,
655
+ "single_word": false,
656
+ "special": true
657
+ },
658
+ "64081": {
659
+ "content": "<0x51>",
660
+ "lstrip": false,
661
+ "normalized": false,
662
+ "rstrip": false,
663
+ "single_word": false,
664
+ "special": true
665
+ },
666
+ "64082": {
667
+ "content": "<0x52>",
668
+ "lstrip": false,
669
+ "normalized": false,
670
+ "rstrip": false,
671
+ "single_word": false,
672
+ "special": true
673
+ },
674
+ "64083": {
675
+ "content": "<0x53>",
676
+ "lstrip": false,
677
+ "normalized": false,
678
+ "rstrip": false,
679
+ "single_word": false,
680
+ "special": true
681
+ },
682
+ "64084": {
683
+ "content": "<0x54>",
684
+ "lstrip": false,
685
+ "normalized": false,
686
+ "rstrip": false,
687
+ "single_word": false,
688
+ "special": true
689
+ },
690
+ "64085": {
691
+ "content": "<0x55>",
692
+ "lstrip": false,
693
+ "normalized": false,
694
+ "rstrip": false,
695
+ "single_word": false,
696
+ "special": true
697
+ },
698
+ "64086": {
699
+ "content": "<0x56>",
700
+ "lstrip": false,
701
+ "normalized": false,
702
+ "rstrip": false,
703
+ "single_word": false,
704
+ "special": true
705
+ },
706
+ "64087": {
707
+ "content": "<0x57>",
708
+ "lstrip": false,
709
+ "normalized": false,
710
+ "rstrip": false,
711
+ "single_word": false,
712
+ "special": true
713
+ },
714
+ "64088": {
715
+ "content": "<0x58>",
716
+ "lstrip": false,
717
+ "normalized": false,
718
+ "rstrip": false,
719
+ "single_word": false,
720
+ "special": true
721
+ },
722
+ "64089": {
723
+ "content": "<0x59>",
724
+ "lstrip": false,
725
+ "normalized": false,
726
+ "rstrip": false,
727
+ "single_word": false,
728
+ "special": true
729
+ },
730
+ "64090": {
731
+ "content": "<0x5A>",
732
+ "lstrip": false,
733
+ "normalized": false,
734
+ "rstrip": false,
735
+ "single_word": false,
736
+ "special": true
737
+ },
738
+ "64091": {
739
+ "content": "<0x5B>",
740
+ "lstrip": false,
741
+ "normalized": false,
742
+ "rstrip": false,
743
+ "single_word": false,
744
+ "special": true
745
+ },
746
+ "64092": {
747
+ "content": "<0x5C>",
748
+ "lstrip": false,
749
+ "normalized": false,
750
+ "rstrip": false,
751
+ "single_word": false,
752
+ "special": true
753
+ },
754
+ "64093": {
755
+ "content": "<0x5D>",
756
+ "lstrip": false,
757
+ "normalized": false,
758
+ "rstrip": false,
759
+ "single_word": false,
760
+ "special": true
761
+ },
762
+ "64094": {
763
+ "content": "<0x5E>",
764
+ "lstrip": false,
765
+ "normalized": false,
766
+ "rstrip": false,
767
+ "single_word": false,
768
+ "special": true
769
+ },
770
+ "64095": {
771
+ "content": "<0x5F>",
772
+ "lstrip": false,
773
+ "normalized": false,
774
+ "rstrip": false,
775
+ "single_word": false,
776
+ "special": true
777
+ },
778
+ "64096": {
779
+ "content": "<0x60>",
780
+ "lstrip": false,
781
+ "normalized": false,
782
+ "rstrip": false,
783
+ "single_word": false,
784
+ "special": true
785
+ },
786
+ "64097": {
787
+ "content": "<0x61>",
788
+ "lstrip": false,
789
+ "normalized": false,
790
+ "rstrip": false,
791
+ "single_word": false,
792
+ "special": true
793
+ },
794
+ "64098": {
795
+ "content": "<0x62>",
796
+ "lstrip": false,
797
+ "normalized": false,
798
+ "rstrip": false,
799
+ "single_word": false,
800
+ "special": true
801
+ },
802
+ "64099": {
803
+ "content": "<0x63>",
804
+ "lstrip": false,
805
+ "normalized": false,
806
+ "rstrip": false,
807
+ "single_word": false,
808
+ "special": true
809
+ },
810
+ "64100": {
811
+ "content": "<0x64>",
812
+ "lstrip": false,
813
+ "normalized": false,
814
+ "rstrip": false,
815
+ "single_word": false,
816
+ "special": true
817
+ },
818
+ "64101": {
819
+ "content": "<0x65>",
820
+ "lstrip": false,
821
+ "normalized": false,
822
+ "rstrip": false,
823
+ "single_word": false,
824
+ "special": true
825
+ },
826
+ "64102": {
827
+ "content": "<0x66>",
828
+ "lstrip": false,
829
+ "normalized": false,
830
+ "rstrip": false,
831
+ "single_word": false,
832
+ "special": true
833
+ },
834
+ "64103": {
835
+ "content": "<0x67>",
836
+ "lstrip": false,
837
+ "normalized": false,
838
+ "rstrip": false,
839
+ "single_word": false,
840
+ "special": true
841
+ },
842
+ "64104": {
843
+ "content": "<0x68>",
844
+ "lstrip": false,
845
+ "normalized": false,
846
+ "rstrip": false,
847
+ "single_word": false,
848
+ "special": true
849
+ },
850
+ "64105": {
851
+ "content": "<0x69>",
852
+ "lstrip": false,
853
+ "normalized": false,
854
+ "rstrip": false,
855
+ "single_word": false,
856
+ "special": true
857
+ },
858
+ "64106": {
859
+ "content": "<0x6A>",
860
+ "lstrip": false,
861
+ "normalized": false,
862
+ "rstrip": false,
863
+ "single_word": false,
864
+ "special": true
865
+ },
866
+ "64107": {
867
+ "content": "<0x6B>",
868
+ "lstrip": false,
869
+ "normalized": false,
870
+ "rstrip": false,
871
+ "single_word": false,
872
+ "special": true
873
+ },
874
+ "64108": {
875
+ "content": "<0x6C>",
876
+ "lstrip": false,
877
+ "normalized": false,
878
+ "rstrip": false,
879
+ "single_word": false,
880
+ "special": true
881
+ },
882
+ "64109": {
883
+ "content": "<0x6D>",
884
+ "lstrip": false,
885
+ "normalized": false,
886
+ "rstrip": false,
887
+ "single_word": false,
888
+ "special": true
889
+ },
890
+ "64110": {
891
+ "content": "<0x6E>",
892
+ "lstrip": false,
893
+ "normalized": false,
894
+ "rstrip": false,
895
+ "single_word": false,
896
+ "special": true
897
+ },
898
+ "64111": {
899
+ "content": "<0x6F>",
900
+ "lstrip": false,
901
+ "normalized": false,
902
+ "rstrip": false,
903
+ "single_word": false,
904
+ "special": true
905
+ },
906
+ "64112": {
907
+ "content": "<0x70>",
908
+ "lstrip": false,
909
+ "normalized": false,
910
+ "rstrip": false,
911
+ "single_word": false,
912
+ "special": true
913
+ },
914
+ "64113": {
915
+ "content": "<0x71>",
916
+ "lstrip": false,
917
+ "normalized": false,
918
+ "rstrip": false,
919
+ "single_word": false,
920
+ "special": true
921
+ },
922
+ "64114": {
923
+ "content": "<0x72>",
924
+ "lstrip": false,
925
+ "normalized": false,
926
+ "rstrip": false,
927
+ "single_word": false,
928
+ "special": true
929
+ },
930
+ "64115": {
931
+ "content": "<0x73>",
932
+ "lstrip": false,
933
+ "normalized": false,
934
+ "rstrip": false,
935
+ "single_word": false,
936
+ "special": true
937
+ },
938
+ "64116": {
939
+ "content": "<0x74>",
940
+ "lstrip": false,
941
+ "normalized": false,
942
+ "rstrip": false,
943
+ "single_word": false,
944
+ "special": true
945
+ },
946
+ "64117": {
947
+ "content": "<0x75>",
948
+ "lstrip": false,
949
+ "normalized": false,
950
+ "rstrip": false,
951
+ "single_word": false,
952
+ "special": true
953
+ },
954
+ "64118": {
955
+ "content": "<0x76>",
956
+ "lstrip": false,
957
+ "normalized": false,
958
+ "rstrip": false,
959
+ "single_word": false,
960
+ "special": true
961
+ },
962
+ "64119": {
963
+ "content": "<0x77>",
964
+ "lstrip": false,
965
+ "normalized": false,
966
+ "rstrip": false,
967
+ "single_word": false,
968
+ "special": true
969
+ },
970
+ "64120": {
971
+ "content": "<0x78>",
972
+ "lstrip": false,
973
+ "normalized": false,
974
+ "rstrip": false,
975
+ "single_word": false,
976
+ "special": true
977
+ },
978
+ "64121": {
979
+ "content": "<0x79>",
980
+ "lstrip": false,
981
+ "normalized": false,
982
+ "rstrip": false,
983
+ "single_word": false,
984
+ "special": true
985
+ },
986
+ "64122": {
987
+ "content": "<0x7A>",
988
+ "lstrip": false,
989
+ "normalized": false,
990
+ "rstrip": false,
991
+ "single_word": false,
992
+ "special": true
993
+ },
994
+ "64123": {
995
+ "content": "<0x7B>",
996
+ "lstrip": false,
997
+ "normalized": false,
998
+ "rstrip": false,
999
+ "single_word": false,
1000
+ "special": true
1001
+ },
1002
+ "64124": {
1003
+ "content": "<0x7C>",
1004
+ "lstrip": false,
1005
+ "normalized": false,
1006
+ "rstrip": false,
1007
+ "single_word": false,
1008
+ "special": true
1009
+ },
1010
+ "64125": {
1011
+ "content": "<0x7D>",
1012
+ "lstrip": false,
1013
+ "normalized": false,
1014
+ "rstrip": false,
1015
+ "single_word": false,
1016
+ "special": true
1017
+ },
1018
+ "64126": {
1019
+ "content": "<0x7E>",
1020
+ "lstrip": false,
1021
+ "normalized": false,
1022
+ "rstrip": false,
1023
+ "single_word": false,
1024
+ "special": true
1025
+ },
1026
+ "64127": {
1027
+ "content": "<0x7F>",
1028
+ "lstrip": false,
1029
+ "normalized": false,
1030
+ "rstrip": false,
1031
+ "single_word": false,
1032
+ "special": true
1033
+ },
1034
+ "64128": {
1035
+ "content": "<0x80>",
1036
+ "lstrip": false,
1037
+ "normalized": false,
1038
+ "rstrip": false,
1039
+ "single_word": false,
1040
+ "special": true
1041
+ },
1042
+ "64129": {
1043
+ "content": "<0x81>",
1044
+ "lstrip": false,
1045
+ "normalized": false,
1046
+ "rstrip": false,
1047
+ "single_word": false,
1048
+ "special": true
1049
+ },
1050
+ "64130": {
1051
+ "content": "<0x82>",
1052
+ "lstrip": false,
1053
+ "normalized": false,
1054
+ "rstrip": false,
1055
+ "single_word": false,
1056
+ "special": true
1057
+ },
1058
+ "64131": {
1059
+ "content": "<0x83>",
1060
+ "lstrip": false,
1061
+ "normalized": false,
1062
+ "rstrip": false,
1063
+ "single_word": false,
1064
+ "special": true
1065
+ },
1066
+ "64132": {
1067
+ "content": "<0x84>",
1068
+ "lstrip": false,
1069
+ "normalized": false,
1070
+ "rstrip": false,
1071
+ "single_word": false,
1072
+ "special": true
1073
+ },
1074
+ "64133": {
1075
+ "content": "<0x85>",
1076
+ "lstrip": false,
1077
+ "normalized": false,
1078
+ "rstrip": false,
1079
+ "single_word": false,
1080
+ "special": true
1081
+ },
1082
+ "64134": {
1083
+ "content": "<0x86>",
1084
+ "lstrip": false,
1085
+ "normalized": false,
1086
+ "rstrip": false,
1087
+ "single_word": false,
1088
+ "special": true
1089
+ },
1090
+ "64135": {
1091
+ "content": "<0x87>",
1092
+ "lstrip": false,
1093
+ "normalized": false,
1094
+ "rstrip": false,
1095
+ "single_word": false,
1096
+ "special": true
1097
+ },
1098
+ "64136": {
1099
+ "content": "<0x88>",
1100
+ "lstrip": false,
1101
+ "normalized": false,
1102
+ "rstrip": false,
1103
+ "single_word": false,
1104
+ "special": true
1105
+ },
1106
+ "64137": {
1107
+ "content": "<0x89>",
1108
+ "lstrip": false,
1109
+ "normalized": false,
1110
+ "rstrip": false,
1111
+ "single_word": false,
1112
+ "special": true
1113
+ },
1114
+ "64138": {
1115
+ "content": "<0x8A>",
1116
+ "lstrip": false,
1117
+ "normalized": false,
1118
+ "rstrip": false,
1119
+ "single_word": false,
1120
+ "special": true
1121
+ },
1122
+ "64139": {
1123
+ "content": "<0x8B>",
1124
+ "lstrip": false,
1125
+ "normalized": false,
1126
+ "rstrip": false,
1127
+ "single_word": false,
1128
+ "special": true
1129
+ },
1130
+ "64140": {
1131
+ "content": "<0x8C>",
1132
+ "lstrip": false,
1133
+ "normalized": false,
1134
+ "rstrip": false,
1135
+ "single_word": false,
1136
+ "special": true
1137
+ },
1138
+ "64141": {
1139
+ "content": "<0x8D>",
1140
+ "lstrip": false,
1141
+ "normalized": false,
1142
+ "rstrip": false,
1143
+ "single_word": false,
1144
+ "special": true
1145
+ },
1146
+ "64142": {
1147
+ "content": "<0x8E>",
1148
+ "lstrip": false,
1149
+ "normalized": false,
1150
+ "rstrip": false,
1151
+ "single_word": false,
1152
+ "special": true
1153
+ },
1154
+ "64143": {
1155
+ "content": "<0x8F>",
1156
+ "lstrip": false,
1157
+ "normalized": false,
1158
+ "rstrip": false,
1159
+ "single_word": false,
1160
+ "special": true
1161
+ },
1162
+ "64144": {
1163
+ "content": "<0x90>",
1164
+ "lstrip": false,
1165
+ "normalized": false,
1166
+ "rstrip": false,
1167
+ "single_word": false,
1168
+ "special": true
1169
+ },
1170
+ "64145": {
1171
+ "content": "<0x91>",
1172
+ "lstrip": false,
1173
+ "normalized": false,
1174
+ "rstrip": false,
1175
+ "single_word": false,
1176
+ "special": true
1177
+ },
1178
+ "64146": {
1179
+ "content": "<0x92>",
1180
+ "lstrip": false,
1181
+ "normalized": false,
1182
+ "rstrip": false,
1183
+ "single_word": false,
1184
+ "special": true
1185
+ },
1186
+ "64147": {
1187
+ "content": "<0x93>",
1188
+ "lstrip": false,
1189
+ "normalized": false,
1190
+ "rstrip": false,
1191
+ "single_word": false,
1192
+ "special": true
1193
+ },
1194
+ "64148": {
1195
+ "content": "<0x94>",
1196
+ "lstrip": false,
1197
+ "normalized": false,
1198
+ "rstrip": false,
1199
+ "single_word": false,
1200
+ "special": true
1201
+ },
1202
+ "64149": {
1203
+ "content": "<0x95>",
1204
+ "lstrip": false,
1205
+ "normalized": false,
1206
+ "rstrip": false,
1207
+ "single_word": false,
1208
+ "special": true
1209
+ },
1210
+ "64150": {
1211
+ "content": "<0x96>",
1212
+ "lstrip": false,
1213
+ "normalized": false,
1214
+ "rstrip": false,
1215
+ "single_word": false,
1216
+ "special": true
1217
+ },
1218
+ "64151": {
1219
+ "content": "<0x97>",
1220
+ "lstrip": false,
1221
+ "normalized": false,
1222
+ "rstrip": false,
1223
+ "single_word": false,
1224
+ "special": true
1225
+ },
1226
+ "64152": {
1227
+ "content": "<0x98>",
1228
+ "lstrip": false,
1229
+ "normalized": false,
1230
+ "rstrip": false,
1231
+ "single_word": false,
1232
+ "special": true
1233
+ },
1234
+ "64153": {
1235
+ "content": "<0x99>",
1236
+ "lstrip": false,
1237
+ "normalized": false,
1238
+ "rstrip": false,
1239
+ "single_word": false,
1240
+ "special": true
1241
+ },
1242
+ "64154": {
1243
+ "content": "<0x9A>",
1244
+ "lstrip": false,
1245
+ "normalized": false,
1246
+ "rstrip": false,
1247
+ "single_word": false,
1248
+ "special": true
1249
+ },
1250
+ "64155": {
1251
+ "content": "<0x9B>",
1252
+ "lstrip": false,
1253
+ "normalized": false,
1254
+ "rstrip": false,
1255
+ "single_word": false,
1256
+ "special": true
1257
+ },
1258
+ "64156": {
1259
+ "content": "<0x9C>",
1260
+ "lstrip": false,
1261
+ "normalized": false,
1262
+ "rstrip": false,
1263
+ "single_word": false,
1264
+ "special": true
1265
+ },
1266
+ "64157": {
1267
+ "content": "<0x9D>",
1268
+ "lstrip": false,
1269
+ "normalized": false,
1270
+ "rstrip": false,
1271
+ "single_word": false,
1272
+ "special": true
1273
+ },
1274
+ "64158": {
1275
+ "content": "<0x9E>",
1276
+ "lstrip": false,
1277
+ "normalized": false,
1278
+ "rstrip": false,
1279
+ "single_word": false,
1280
+ "special": true
1281
+ },
1282
+ "64159": {
1283
+ "content": "<0x9F>",
1284
+ "lstrip": false,
1285
+ "normalized": false,
1286
+ "rstrip": false,
1287
+ "single_word": false,
1288
+ "special": true
1289
+ },
1290
+ "64160": {
1291
+ "content": "<0xA0>",
1292
+ "lstrip": false,
1293
+ "normalized": false,
1294
+ "rstrip": false,
1295
+ "single_word": false,
1296
+ "special": true
1297
+ },
1298
+ "64161": {
1299
+ "content": "<0xA1>",
1300
+ "lstrip": false,
1301
+ "normalized": false,
1302
+ "rstrip": false,
1303
+ "single_word": false,
1304
+ "special": true
1305
+ },
1306
+ "64162": {
1307
+ "content": "<0xA2>",
1308
+ "lstrip": false,
1309
+ "normalized": false,
1310
+ "rstrip": false,
1311
+ "single_word": false,
1312
+ "special": true
1313
+ },
1314
+ "64163": {
1315
+ "content": "<0xA3>",
1316
+ "lstrip": false,
1317
+ "normalized": false,
1318
+ "rstrip": false,
1319
+ "single_word": false,
1320
+ "special": true
1321
+ },
1322
+ "64164": {
1323
+ "content": "<0xA4>",
1324
+ "lstrip": false,
1325
+ "normalized": false,
1326
+ "rstrip": false,
1327
+ "single_word": false,
1328
+ "special": true
1329
+ },
1330
+ "64165": {
1331
+ "content": "<0xA5>",
1332
+ "lstrip": false,
1333
+ "normalized": false,
1334
+ "rstrip": false,
1335
+ "single_word": false,
1336
+ "special": true
1337
+ },
1338
+ "64166": {
1339
+ "content": "<0xA6>",
1340
+ "lstrip": false,
1341
+ "normalized": false,
1342
+ "rstrip": false,
1343
+ "single_word": false,
1344
+ "special": true
1345
+ },
1346
+ "64167": {
1347
+ "content": "<0xA7>",
1348
+ "lstrip": false,
1349
+ "normalized": false,
1350
+ "rstrip": false,
1351
+ "single_word": false,
1352
+ "special": true
1353
+ },
1354
+ "64168": {
1355
+ "content": "<0xA8>",
1356
+ "lstrip": false,
1357
+ "normalized": false,
1358
+ "rstrip": false,
1359
+ "single_word": false,
1360
+ "special": true
1361
+ },
1362
+ "64169": {
1363
+ "content": "<0xA9>",
1364
+ "lstrip": false,
1365
+ "normalized": false,
1366
+ "rstrip": false,
1367
+ "single_word": false,
1368
+ "special": true
1369
+ },
1370
+ "64170": {
1371
+ "content": "<0xAA>",
1372
+ "lstrip": false,
1373
+ "normalized": false,
1374
+ "rstrip": false,
1375
+ "single_word": false,
1376
+ "special": true
1377
+ },
1378
+ "64171": {
1379
+ "content": "<0xAB>",
1380
+ "lstrip": false,
1381
+ "normalized": false,
1382
+ "rstrip": false,
1383
+ "single_word": false,
1384
+ "special": true
1385
+ },
1386
+ "64172": {
1387
+ "content": "<0xAC>",
1388
+ "lstrip": false,
1389
+ "normalized": false,
1390
+ "rstrip": false,
1391
+ "single_word": false,
1392
+ "special": true
1393
+ },
1394
+ "64173": {
1395
+ "content": "<0xAD>",
1396
+ "lstrip": false,
1397
+ "normalized": false,
1398
+ "rstrip": false,
1399
+ "single_word": false,
1400
+ "special": true
1401
+ },
1402
+ "64174": {
1403
+ "content": "<0xAE>",
1404
+ "lstrip": false,
1405
+ "normalized": false,
1406
+ "rstrip": false,
1407
+ "single_word": false,
1408
+ "special": true
1409
+ },
1410
+ "64175": {
1411
+ "content": "<0xAF>",
1412
+ "lstrip": false,
1413
+ "normalized": false,
1414
+ "rstrip": false,
1415
+ "single_word": false,
1416
+ "special": true
1417
+ },
1418
+ "64176": {
1419
+ "content": "<0xB0>",
1420
+ "lstrip": false,
1421
+ "normalized": false,
1422
+ "rstrip": false,
1423
+ "single_word": false,
1424
+ "special": true
1425
+ },
1426
+ "64177": {
1427
+ "content": "<0xB1>",
1428
+ "lstrip": false,
1429
+ "normalized": false,
1430
+ "rstrip": false,
1431
+ "single_word": false,
1432
+ "special": true
1433
+ },
1434
+ "64178": {
1435
+ "content": "<0xB2>",
1436
+ "lstrip": false,
1437
+ "normalized": false,
1438
+ "rstrip": false,
1439
+ "single_word": false,
1440
+ "special": true
1441
+ },
1442
+ "64179": {
1443
+ "content": "<0xB3>",
1444
+ "lstrip": false,
1445
+ "normalized": false,
1446
+ "rstrip": false,
1447
+ "single_word": false,
1448
+ "special": true
1449
+ },
1450
+ "64180": {
1451
+ "content": "<0xB4>",
1452
+ "lstrip": false,
1453
+ "normalized": false,
1454
+ "rstrip": false,
1455
+ "single_word": false,
1456
+ "special": true
1457
+ },
1458
+ "64181": {
1459
+ "content": "<0xB5>",
1460
+ "lstrip": false,
1461
+ "normalized": false,
1462
+ "rstrip": false,
1463
+ "single_word": false,
1464
+ "special": true
1465
+ },
1466
+ "64182": {
1467
+ "content": "<0xB6>",
1468
+ "lstrip": false,
1469
+ "normalized": false,
1470
+ "rstrip": false,
1471
+ "single_word": false,
1472
+ "special": true
1473
+ },
1474
+ "64183": {
1475
+ "content": "<0xB7>",
1476
+ "lstrip": false,
1477
+ "normalized": false,
1478
+ "rstrip": false,
1479
+ "single_word": false,
1480
+ "special": true
1481
+ },
1482
+ "64184": {
1483
+ "content": "<0xB8>",
1484
+ "lstrip": false,
1485
+ "normalized": false,
1486
+ "rstrip": false,
1487
+ "single_word": false,
1488
+ "special": true
1489
+ },
1490
+ "64185": {
1491
+ "content": "<0xB9>",
1492
+ "lstrip": false,
1493
+ "normalized": false,
1494
+ "rstrip": false,
1495
+ "single_word": false,
1496
+ "special": true
1497
+ },
1498
+ "64186": {
1499
+ "content": "<0xBA>",
1500
+ "lstrip": false,
1501
+ "normalized": false,
1502
+ "rstrip": false,
1503
+ "single_word": false,
1504
+ "special": true
1505
+ },
1506
+ "64187": {
1507
+ "content": "<0xBB>",
1508
+ "lstrip": false,
1509
+ "normalized": false,
1510
+ "rstrip": false,
1511
+ "single_word": false,
1512
+ "special": true
1513
+ },
1514
+ "64188": {
1515
+ "content": "<0xBC>",
1516
+ "lstrip": false,
1517
+ "normalized": false,
1518
+ "rstrip": false,
1519
+ "single_word": false,
1520
+ "special": true
1521
+ },
1522
+ "64189": {
1523
+ "content": "<0xBD>",
1524
+ "lstrip": false,
1525
+ "normalized": false,
1526
+ "rstrip": false,
1527
+ "single_word": false,
1528
+ "special": true
1529
+ },
1530
+ "64190": {
1531
+ "content": "<0xBE>",
1532
+ "lstrip": false,
1533
+ "normalized": false,
1534
+ "rstrip": false,
1535
+ "single_word": false,
1536
+ "special": true
1537
+ },
1538
+ "64191": {
1539
+ "content": "<0xBF>",
1540
+ "lstrip": false,
1541
+ "normalized": false,
1542
+ "rstrip": false,
1543
+ "single_word": false,
1544
+ "special": true
1545
+ },
1546
+ "64192": {
1547
+ "content": "<0xC0>",
1548
+ "lstrip": false,
1549
+ "normalized": false,
1550
+ "rstrip": false,
1551
+ "single_word": false,
1552
+ "special": true
1553
+ },
1554
+ "64193": {
1555
+ "content": "<0xC1>",
1556
+ "lstrip": false,
1557
+ "normalized": false,
1558
+ "rstrip": false,
1559
+ "single_word": false,
1560
+ "special": true
1561
+ },
1562
+ "64194": {
1563
+ "content": "<0xC2>",
1564
+ "lstrip": false,
1565
+ "normalized": false,
1566
+ "rstrip": false,
1567
+ "single_word": false,
1568
+ "special": true
1569
+ },
1570
+ "64195": {
1571
+ "content": "<0xC3>",
1572
+ "lstrip": false,
1573
+ "normalized": false,
1574
+ "rstrip": false,
1575
+ "single_word": false,
1576
+ "special": true
1577
+ },
1578
+ "64196": {
1579
+ "content": "<0xC4>",
1580
+ "lstrip": false,
1581
+ "normalized": false,
1582
+ "rstrip": false,
1583
+ "single_word": false,
1584
+ "special": true
1585
+ },
1586
+ "64197": {
1587
+ "content": "<0xC5>",
1588
+ "lstrip": false,
1589
+ "normalized": false,
1590
+ "rstrip": false,
1591
+ "single_word": false,
1592
+ "special": true
1593
+ },
1594
+ "64198": {
1595
+ "content": "<0xC6>",
1596
+ "lstrip": false,
1597
+ "normalized": false,
1598
+ "rstrip": false,
1599
+ "single_word": false,
1600
+ "special": true
1601
+ },
1602
+ "64199": {
1603
+ "content": "<0xC7>",
1604
+ "lstrip": false,
1605
+ "normalized": false,
1606
+ "rstrip": false,
1607
+ "single_word": false,
1608
+ "special": true
1609
+ },
1610
+ "64200": {
1611
+ "content": "<0xC8>",
1612
+ "lstrip": false,
1613
+ "normalized": false,
1614
+ "rstrip": false,
1615
+ "single_word": false,
1616
+ "special": true
1617
+ },
1618
+ "64201": {
1619
+ "content": "<0xC9>",
1620
+ "lstrip": false,
1621
+ "normalized": false,
1622
+ "rstrip": false,
1623
+ "single_word": false,
1624
+ "special": true
1625
+ },
1626
+ "64202": {
1627
+ "content": "<0xCA>",
1628
+ "lstrip": false,
1629
+ "normalized": false,
1630
+ "rstrip": false,
1631
+ "single_word": false,
1632
+ "special": true
1633
+ },
1634
+ "64203": {
1635
+ "content": "<0xCB>",
1636
+ "lstrip": false,
1637
+ "normalized": false,
1638
+ "rstrip": false,
1639
+ "single_word": false,
1640
+ "special": true
1641
+ },
1642
+ "64204": {
1643
+ "content": "<0xCC>",
1644
+ "lstrip": false,
1645
+ "normalized": false,
1646
+ "rstrip": false,
1647
+ "single_word": false,
1648
+ "special": true
1649
+ },
1650
+ "64205": {
1651
+ "content": "<0xCD>",
1652
+ "lstrip": false,
1653
+ "normalized": false,
1654
+ "rstrip": false,
1655
+ "single_word": false,
1656
+ "special": true
1657
+ },
1658
+ "64206": {
1659
+ "content": "<0xCE>",
1660
+ "lstrip": false,
1661
+ "normalized": false,
1662
+ "rstrip": false,
1663
+ "single_word": false,
1664
+ "special": true
1665
+ },
1666
+ "64207": {
1667
+ "content": "<0xCF>",
1668
+ "lstrip": false,
1669
+ "normalized": false,
1670
+ "rstrip": false,
1671
+ "single_word": false,
1672
+ "special": true
1673
+ },
1674
+ "64208": {
1675
+ "content": "<0xD0>",
1676
+ "lstrip": false,
1677
+ "normalized": false,
1678
+ "rstrip": false,
1679
+ "single_word": false,
1680
+ "special": true
1681
+ },
1682
+ "64209": {
1683
+ "content": "<0xD1>",
1684
+ "lstrip": false,
1685
+ "normalized": false,
1686
+ "rstrip": false,
1687
+ "single_word": false,
1688
+ "special": true
1689
+ },
1690
+ "64210": {
1691
+ "content": "<0xD2>",
1692
+ "lstrip": false,
1693
+ "normalized": false,
1694
+ "rstrip": false,
1695
+ "single_word": false,
1696
+ "special": true
1697
+ },
1698
+ "64211": {
1699
+ "content": "<0xD3>",
1700
+ "lstrip": false,
1701
+ "normalized": false,
1702
+ "rstrip": false,
1703
+ "single_word": false,
1704
+ "special": true
1705
+ },
1706
+ "64212": {
1707
+ "content": "<0xD4>",
1708
+ "lstrip": false,
1709
+ "normalized": false,
1710
+ "rstrip": false,
1711
+ "single_word": false,
1712
+ "special": true
1713
+ },
1714
+ "64213": {
1715
+ "content": "<0xD5>",
1716
+ "lstrip": false,
1717
+ "normalized": false,
1718
+ "rstrip": false,
1719
+ "single_word": false,
1720
+ "special": true
1721
+ },
1722
+ "64214": {
1723
+ "content": "<0xD6>",
1724
+ "lstrip": false,
1725
+ "normalized": false,
1726
+ "rstrip": false,
1727
+ "single_word": false,
1728
+ "special": true
1729
+ },
1730
+ "64215": {
1731
+ "content": "<0xD7>",
1732
+ "lstrip": false,
1733
+ "normalized": false,
1734
+ "rstrip": false,
1735
+ "single_word": false,
1736
+ "special": true
1737
+ },
1738
+ "64216": {
1739
+ "content": "<0xD8>",
1740
+ "lstrip": false,
1741
+ "normalized": false,
1742
+ "rstrip": false,
1743
+ "single_word": false,
1744
+ "special": true
1745
+ },
1746
+ "64217": {
1747
+ "content": "<0xD9>",
1748
+ "lstrip": false,
1749
+ "normalized": false,
1750
+ "rstrip": false,
1751
+ "single_word": false,
1752
+ "special": true
1753
+ },
1754
+ "64218": {
1755
+ "content": "<0xDA>",
1756
+ "lstrip": false,
1757
+ "normalized": false,
1758
+ "rstrip": false,
1759
+ "single_word": false,
1760
+ "special": true
1761
+ },
1762
+ "64219": {
1763
+ "content": "<0xDB>",
1764
+ "lstrip": false,
1765
+ "normalized": false,
1766
+ "rstrip": false,
1767
+ "single_word": false,
1768
+ "special": true
1769
+ },
1770
+ "64220": {
1771
+ "content": "<0xDC>",
1772
+ "lstrip": false,
1773
+ "normalized": false,
1774
+ "rstrip": false,
1775
+ "single_word": false,
1776
+ "special": true
1777
+ },
1778
+ "64221": {
1779
+ "content": "<0xDD>",
1780
+ "lstrip": false,
1781
+ "normalized": false,
1782
+ "rstrip": false,
1783
+ "single_word": false,
1784
+ "special": true
1785
+ },
1786
+ "64222": {
1787
+ "content": "<0xDE>",
1788
+ "lstrip": false,
1789
+ "normalized": false,
1790
+ "rstrip": false,
1791
+ "single_word": false,
1792
+ "special": true
1793
+ },
1794
+ "64223": {
1795
+ "content": "<0xDF>",
1796
+ "lstrip": false,
1797
+ "normalized": false,
1798
+ "rstrip": false,
1799
+ "single_word": false,
1800
+ "special": true
1801
+ },
1802
+ "64224": {
1803
+ "content": "<0xE0>",
1804
+ "lstrip": false,
1805
+ "normalized": false,
1806
+ "rstrip": false,
1807
+ "single_word": false,
1808
+ "special": true
1809
+ },
1810
+ "64225": {
1811
+ "content": "<0xE1>",
1812
+ "lstrip": false,
1813
+ "normalized": false,
1814
+ "rstrip": false,
1815
+ "single_word": false,
1816
+ "special": true
1817
+ },
1818
+ "64226": {
1819
+ "content": "<0xE2>",
1820
+ "lstrip": false,
1821
+ "normalized": false,
1822
+ "rstrip": false,
1823
+ "single_word": false,
1824
+ "special": true
1825
+ },
1826
+ "64227": {
1827
+ "content": "<0xE3>",
1828
+ "lstrip": false,
1829
+ "normalized": false,
1830
+ "rstrip": false,
1831
+ "single_word": false,
1832
+ "special": true
1833
+ },
1834
+ "64228": {
1835
+ "content": "<0xE4>",
1836
+ "lstrip": false,
1837
+ "normalized": false,
1838
+ "rstrip": false,
1839
+ "single_word": false,
1840
+ "special": true
1841
+ },
1842
+ "64229": {
1843
+ "content": "<0xE5>",
1844
+ "lstrip": false,
1845
+ "normalized": false,
1846
+ "rstrip": false,
1847
+ "single_word": false,
1848
+ "special": true
1849
+ },
1850
+ "64230": {
1851
+ "content": "<0xE6>",
1852
+ "lstrip": false,
1853
+ "normalized": false,
1854
+ "rstrip": false,
1855
+ "single_word": false,
1856
+ "special": true
1857
+ },
1858
+ "64231": {
1859
+ "content": "<0xE7>",
1860
+ "lstrip": false,
1861
+ "normalized": false,
1862
+ "rstrip": false,
1863
+ "single_word": false,
1864
+ "special": true
1865
+ },
1866
+ "64232": {
1867
+ "content": "<0xE8>",
1868
+ "lstrip": false,
1869
+ "normalized": false,
1870
+ "rstrip": false,
1871
+ "single_word": false,
1872
+ "special": true
1873
+ },
1874
+ "64233": {
1875
+ "content": "<0xE9>",
1876
+ "lstrip": false,
1877
+ "normalized": false,
1878
+ "rstrip": false,
1879
+ "single_word": false,
1880
+ "special": true
1881
+ },
1882
+ "64234": {
1883
+ "content": "<0xEA>",
1884
+ "lstrip": false,
1885
+ "normalized": false,
1886
+ "rstrip": false,
1887
+ "single_word": false,
1888
+ "special": true
1889
+ },
1890
+ "64235": {
1891
+ "content": "<0xEB>",
1892
+ "lstrip": false,
1893
+ "normalized": false,
1894
+ "rstrip": false,
1895
+ "single_word": false,
1896
+ "special": true
1897
+ },
1898
+ "64236": {
1899
+ "content": "<0xEC>",
1900
+ "lstrip": false,
1901
+ "normalized": false,
1902
+ "rstrip": false,
1903
+ "single_word": false,
1904
+ "special": true
1905
+ },
1906
+ "64237": {
1907
+ "content": "<0xED>",
1908
+ "lstrip": false,
1909
+ "normalized": false,
1910
+ "rstrip": false,
1911
+ "single_word": false,
1912
+ "special": true
1913
+ },
1914
+ "64238": {
1915
+ "content": "<0xEE>",
1916
+ "lstrip": false,
1917
+ "normalized": false,
1918
+ "rstrip": false,
1919
+ "single_word": false,
1920
+ "special": true
1921
+ },
1922
+ "64239": {
1923
+ "content": "<0xEF>",
1924
+ "lstrip": false,
1925
+ "normalized": false,
1926
+ "rstrip": false,
1927
+ "single_word": false,
1928
+ "special": true
1929
+ },
1930
+ "64240": {
1931
+ "content": "<0xF0>",
1932
+ "lstrip": false,
1933
+ "normalized": false,
1934
+ "rstrip": false,
1935
+ "single_word": false,
1936
+ "special": true
1937
+ },
1938
+ "64241": {
1939
+ "content": "<0xF1>",
1940
+ "lstrip": false,
1941
+ "normalized": false,
1942
+ "rstrip": false,
1943
+ "single_word": false,
1944
+ "special": true
1945
+ },
1946
+ "64242": {
1947
+ "content": "<0xF2>",
1948
+ "lstrip": false,
1949
+ "normalized": false,
1950
+ "rstrip": false,
1951
+ "single_word": false,
1952
+ "special": true
1953
+ },
1954
+ "64243": {
1955
+ "content": "<0xF3>",
1956
+ "lstrip": false,
1957
+ "normalized": false,
1958
+ "rstrip": false,
1959
+ "single_word": false,
1960
+ "special": true
1961
+ },
1962
+ "64244": {
1963
+ "content": "<0xF4>",
1964
+ "lstrip": false,
1965
+ "normalized": false,
1966
+ "rstrip": false,
1967
+ "single_word": false,
1968
+ "special": true
1969
+ },
1970
+ "64245": {
1971
+ "content": "<0xF5>",
1972
+ "lstrip": false,
1973
+ "normalized": false,
1974
+ "rstrip": false,
1975
+ "single_word": false,
1976
+ "special": true
1977
+ },
1978
+ "64246": {
1979
+ "content": "<0xF6>",
1980
+ "lstrip": false,
1981
+ "normalized": false,
1982
+ "rstrip": false,
1983
+ "single_word": false,
1984
+ "special": true
1985
+ },
1986
+ "64247": {
1987
+ "content": "<0xF7>",
1988
+ "lstrip": false,
1989
+ "normalized": false,
1990
+ "rstrip": false,
1991
+ "single_word": false,
1992
+ "special": true
1993
+ },
1994
+ "64248": {
1995
+ "content": "<0xF8>",
1996
+ "lstrip": false,
1997
+ "normalized": false,
1998
+ "rstrip": false,
1999
+ "single_word": false,
2000
+ "special": true
2001
+ },
2002
+ "64249": {
2003
+ "content": "<0xF9>",
2004
+ "lstrip": false,
2005
+ "normalized": false,
2006
+ "rstrip": false,
2007
+ "single_word": false,
2008
+ "special": true
2009
+ },
2010
+ "64250": {
2011
+ "content": "<0xFA>",
2012
+ "lstrip": false,
2013
+ "normalized": false,
2014
+ "rstrip": false,
2015
+ "single_word": false,
2016
+ "special": true
2017
+ },
2018
+ "64251": {
2019
+ "content": "<0xFB>",
2020
+ "lstrip": false,
2021
+ "normalized": false,
2022
+ "rstrip": false,
2023
+ "single_word": false,
2024
+ "special": true
2025
+ },
2026
+ "64252": {
2027
+ "content": "<0xFC>",
2028
+ "lstrip": false,
2029
+ "normalized": false,
2030
+ "rstrip": false,
2031
+ "single_word": false,
2032
+ "special": true
2033
+ },
2034
+ "64253": {
2035
+ "content": "<0xFD>",
2036
+ "lstrip": false,
2037
+ "normalized": false,
2038
+ "rstrip": false,
2039
+ "single_word": false,
2040
+ "special": true
2041
+ },
2042
+ "64254": {
2043
+ "content": "<0xFE>",
2044
+ "lstrip": false,
2045
+ "normalized": false,
2046
+ "rstrip": false,
2047
+ "single_word": false,
2048
+ "special": true
2049
+ },
2050
+ "64255": {
2051
+ "content": "<0xFF>",
2052
+ "lstrip": false,
2053
+ "normalized": false,
2054
+ "rstrip": false,
2055
+ "single_word": false,
2056
+ "special": true
2057
+ }
2058
+ }
2059
+ }