authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2026-01-12 18:59:34 -08:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2026-01-12 18:59:34 -08:00
log0bf65d58bbc8abb3a1d7f33b23f80f8f3b52243f
treed02696f4260bd059c5d07545e8b102b60ab92013

Initial commit


16 files changed, 12728 insertions(+), 0 deletions(-)

.gitattributes created+3
...@@ -0,0 +1,3 @@
1* text=auto
2*.zig text eol=lf
3zigmod.* text eol=lf
.gitignore created+7
...@@ -0,0 +1,7 @@
1.zig-cache
2zig-out
3.zigmod
4deps.zig
5files.zig
6zigmod.lock
7node_modules
2008.zig created+3097
...@@ -0,0 +1,3097 @@
1// This file is part of Unicode IDNA Compatibility Processing
2// For documentation, see http://www.unicode.org/reports/tr46/
3//
4
5// Based on the source file: https://www.unicode.org/Public/17.0.0/idna/Idna2008.txt
6//
7
8pub const Prop = struct {
9 cp: u21,
10 category: Category
11};
12
13pub const PropRange = struct {
14 from: u21,
15 to: u21,
16 category: Category
17};
18
19pub const Category = enum {
20 pvalid,
21 contextj,
22 contexto,
23 disallowed,
24 unassigned,
25};
26
27pub const data = [_]Prop{
28 .{ .cp = 0x002D, .category = .pvalid },
29 .{ .cp = 0x00B7, .category = .contexto },
30 .{ .cp = 0x00F7, .category = .disallowed },
31 .{ .cp = 0x0100, .category = .disallowed },
32 .{ .cp = 0x0101, .category = .pvalid },
33 .{ .cp = 0x0102, .category = .disallowed },
34 .{ .cp = 0x0103, .category = .pvalid },
35 .{ .cp = 0x0104, .category = .disallowed },
36 .{ .cp = 0x0105, .category = .pvalid },
37 .{ .cp = 0x0106, .category = .disallowed },
38 .{ .cp = 0x0107, .category = .pvalid },
39 .{ .cp = 0x0108, .category = .disallowed },
40 .{ .cp = 0x0109, .category = .pvalid },
41 .{ .cp = 0x010A, .category = .disallowed },
42 .{ .cp = 0x010B, .category = .pvalid },
43 .{ .cp = 0x010C, .category = .disallowed },
44 .{ .cp = 0x010D, .category = .pvalid },
45 .{ .cp = 0x010E, .category = .disallowed },
46 .{ .cp = 0x010F, .category = .pvalid },
47 .{ .cp = 0x0110, .category = .disallowed },
48 .{ .cp = 0x0111, .category = .pvalid },
49 .{ .cp = 0x0112, .category = .disallowed },
50 .{ .cp = 0x0113, .category = .pvalid },
51 .{ .cp = 0x0114, .category = .disallowed },
52 .{ .cp = 0x0115, .category = .pvalid },
53 .{ .cp = 0x0116, .category = .disallowed },
54 .{ .cp = 0x0117, .category = .pvalid },
55 .{ .cp = 0x0118, .category = .disallowed },
56 .{ .cp = 0x0119, .category = .pvalid },
57 .{ .cp = 0x011A, .category = .disallowed },
58 .{ .cp = 0x011B, .category = .pvalid },
59 .{ .cp = 0x011C, .category = .disallowed },
60 .{ .cp = 0x011D, .category = .pvalid },
61 .{ .cp = 0x011E, .category = .disallowed },
62 .{ .cp = 0x011F, .category = .pvalid },
63 .{ .cp = 0x0120, .category = .disallowed },
64 .{ .cp = 0x0121, .category = .pvalid },
65 .{ .cp = 0x0122, .category = .disallowed },
66 .{ .cp = 0x0123, .category = .pvalid },
67 .{ .cp = 0x0124, .category = .disallowed },
68 .{ .cp = 0x0125, .category = .pvalid },
69 .{ .cp = 0x0126, .category = .disallowed },
70 .{ .cp = 0x0127, .category = .pvalid },
71 .{ .cp = 0x0128, .category = .disallowed },
72 .{ .cp = 0x0129, .category = .pvalid },
73 .{ .cp = 0x012A, .category = .disallowed },
74 .{ .cp = 0x012B, .category = .pvalid },
75 .{ .cp = 0x012C, .category = .disallowed },
76 .{ .cp = 0x012D, .category = .pvalid },
77 .{ .cp = 0x012E, .category = .disallowed },
78 .{ .cp = 0x012F, .category = .pvalid },
79 .{ .cp = 0x0130, .category = .disallowed },
80 .{ .cp = 0x0131, .category = .pvalid },
81 .{ .cp = 0x0135, .category = .pvalid },
82 .{ .cp = 0x0136, .category = .disallowed },
83 .{ .cp = 0x0139, .category = .disallowed },
84 .{ .cp = 0x013A, .category = .pvalid },
85 .{ .cp = 0x013B, .category = .disallowed },
86 .{ .cp = 0x013C, .category = .pvalid },
87 .{ .cp = 0x013D, .category = .disallowed },
88 .{ .cp = 0x013E, .category = .pvalid },
89 .{ .cp = 0x0142, .category = .pvalid },
90 .{ .cp = 0x0143, .category = .disallowed },
91 .{ .cp = 0x0144, .category = .pvalid },
92 .{ .cp = 0x0145, .category = .disallowed },
93 .{ .cp = 0x0146, .category = .pvalid },
94 .{ .cp = 0x0147, .category = .disallowed },
95 .{ .cp = 0x0148, .category = .pvalid },
96 .{ .cp = 0x014B, .category = .pvalid },
97 .{ .cp = 0x014C, .category = .disallowed },
98 .{ .cp = 0x014D, .category = .pvalid },
99 .{ .cp = 0x014E, .category = .disallowed },
100 .{ .cp = 0x014F, .category = .pvalid },
101 .{ .cp = 0x0150, .category = .disallowed },
102 .{ .cp = 0x0151, .category = .pvalid },
103 .{ .cp = 0x0152, .category = .disallowed },
104 .{ .cp = 0x0153, .category = .pvalid },
105 .{ .cp = 0x0154, .category = .disallowed },
106 .{ .cp = 0x0155, .category = .pvalid },
107 .{ .cp = 0x0156, .category = .disallowed },
108 .{ .cp = 0x0157, .category = .pvalid },
109 .{ .cp = 0x0158, .category = .disallowed },
110 .{ .cp = 0x0159, .category = .pvalid },
111 .{ .cp = 0x015A, .category = .disallowed },
112 .{ .cp = 0x015B, .category = .pvalid },
113 .{ .cp = 0x015C, .category = .disallowed },
114 .{ .cp = 0x015D, .category = .pvalid },
115 .{ .cp = 0x015E, .category = .disallowed },
116 .{ .cp = 0x015F, .category = .pvalid },
117 .{ .cp = 0x0160, .category = .disallowed },
118 .{ .cp = 0x0161, .category = .pvalid },
119 .{ .cp = 0x0162, .category = .disallowed },
120 .{ .cp = 0x0163, .category = .pvalid },
121 .{ .cp = 0x0164, .category = .disallowed },
122 .{ .cp = 0x0165, .category = .pvalid },
123 .{ .cp = 0x0166, .category = .disallowed },
124 .{ .cp = 0x0167, .category = .pvalid },
125 .{ .cp = 0x0168, .category = .disallowed },
126 .{ .cp = 0x0169, .category = .pvalid },
127 .{ .cp = 0x016A, .category = .disallowed },
128 .{ .cp = 0x016B, .category = .pvalid },
129 .{ .cp = 0x016C, .category = .disallowed },
130 .{ .cp = 0x016D, .category = .pvalid },
131 .{ .cp = 0x016E, .category = .disallowed },
132 .{ .cp = 0x016F, .category = .pvalid },
133 .{ .cp = 0x0170, .category = .disallowed },
134 .{ .cp = 0x0171, .category = .pvalid },
135 .{ .cp = 0x0172, .category = .disallowed },
136 .{ .cp = 0x0173, .category = .pvalid },
137 .{ .cp = 0x0174, .category = .disallowed },
138 .{ .cp = 0x0175, .category = .pvalid },
139 .{ .cp = 0x0176, .category = .disallowed },
140 .{ .cp = 0x0177, .category = .pvalid },
141 .{ .cp = 0x017A, .category = .pvalid },
142 .{ .cp = 0x017B, .category = .disallowed },
143 .{ .cp = 0x017C, .category = .pvalid },
144 .{ .cp = 0x017D, .category = .disallowed },
145 .{ .cp = 0x017E, .category = .pvalid },
146 .{ .cp = 0x017F, .category = .disallowed },
147 .{ .cp = 0x0180, .category = .pvalid },
148 .{ .cp = 0x0183, .category = .pvalid },
149 .{ .cp = 0x0184, .category = .disallowed },
150 .{ .cp = 0x0185, .category = .pvalid },
151 .{ .cp = 0x0188, .category = .pvalid },
152 .{ .cp = 0x0192, .category = .pvalid },
153 .{ .cp = 0x0195, .category = .pvalid },
154 .{ .cp = 0x019E, .category = .pvalid },
155 .{ .cp = 0x01A1, .category = .pvalid },
156 .{ .cp = 0x01A2, .category = .disallowed },
157 .{ .cp = 0x01A3, .category = .pvalid },
158 .{ .cp = 0x01A4, .category = .disallowed },
159 .{ .cp = 0x01A5, .category = .pvalid },
160 .{ .cp = 0x01A8, .category = .pvalid },
161 .{ .cp = 0x01A9, .category = .disallowed },
162 .{ .cp = 0x01AC, .category = .disallowed },
163 .{ .cp = 0x01AD, .category = .pvalid },
164 .{ .cp = 0x01B0, .category = .pvalid },
165 .{ .cp = 0x01B4, .category = .pvalid },
166 .{ .cp = 0x01B5, .category = .disallowed },
167 .{ .cp = 0x01B6, .category = .pvalid },
168 .{ .cp = 0x01BC, .category = .disallowed },
169 .{ .cp = 0x01CE, .category = .pvalid },
170 .{ .cp = 0x01CF, .category = .disallowed },
171 .{ .cp = 0x01D0, .category = .pvalid },
172 .{ .cp = 0x01D1, .category = .disallowed },
173 .{ .cp = 0x01D2, .category = .pvalid },
174 .{ .cp = 0x01D3, .category = .disallowed },
175 .{ .cp = 0x01D4, .category = .pvalid },
176 .{ .cp = 0x01D5, .category = .disallowed },
177 .{ .cp = 0x01D6, .category = .pvalid },
178 .{ .cp = 0x01D7, .category = .disallowed },
179 .{ .cp = 0x01D8, .category = .pvalid },
180 .{ .cp = 0x01D9, .category = .disallowed },
181 .{ .cp = 0x01DA, .category = .pvalid },
182 .{ .cp = 0x01DB, .category = .disallowed },
183 .{ .cp = 0x01DE, .category = .disallowed },
184 .{ .cp = 0x01DF, .category = .pvalid },
185 .{ .cp = 0x01E0, .category = .disallowed },
186 .{ .cp = 0x01E1, .category = .pvalid },
187 .{ .cp = 0x01E2, .category = .disallowed },
188 .{ .cp = 0x01E3, .category = .pvalid },
189 .{ .cp = 0x01E4, .category = .disallowed },
190 .{ .cp = 0x01E5, .category = .pvalid },
191 .{ .cp = 0x01E6, .category = .disallowed },
192 .{ .cp = 0x01E7, .category = .pvalid },
193 .{ .cp = 0x01E8, .category = .disallowed },
194 .{ .cp = 0x01E9, .category = .pvalid },
195 .{ .cp = 0x01EA, .category = .disallowed },
196 .{ .cp = 0x01EB, .category = .pvalid },
197 .{ .cp = 0x01EC, .category = .disallowed },
198 .{ .cp = 0x01ED, .category = .pvalid },
199 .{ .cp = 0x01EE, .category = .disallowed },
200 .{ .cp = 0x01F5, .category = .pvalid },
201 .{ .cp = 0x01F9, .category = .pvalid },
202 .{ .cp = 0x01FA, .category = .disallowed },
203 .{ .cp = 0x01FB, .category = .pvalid },
204 .{ .cp = 0x01FC, .category = .disallowed },
205 .{ .cp = 0x01FD, .category = .pvalid },
206 .{ .cp = 0x01FE, .category = .disallowed },
207 .{ .cp = 0x01FF, .category = .pvalid },
208 .{ .cp = 0x0200, .category = .disallowed },
209 .{ .cp = 0x0201, .category = .pvalid },
210 .{ .cp = 0x0202, .category = .disallowed },
211 .{ .cp = 0x0203, .category = .pvalid },
212 .{ .cp = 0x0204, .category = .disallowed },
213 .{ .cp = 0x0205, .category = .pvalid },
214 .{ .cp = 0x0206, .category = .disallowed },
215 .{ .cp = 0x0207, .category = .pvalid },
216 .{ .cp = 0x0208, .category = .disallowed },
217 .{ .cp = 0x0209, .category = .pvalid },
218 .{ .cp = 0x020A, .category = .disallowed },
219 .{ .cp = 0x020B, .category = .pvalid },
220 .{ .cp = 0x020C, .category = .disallowed },
221 .{ .cp = 0x020D, .category = .pvalid },
222 .{ .cp = 0x020E, .category = .disallowed },
223 .{ .cp = 0x020F, .category = .pvalid },
224 .{ .cp = 0x0210, .category = .disallowed },
225 .{ .cp = 0x0211, .category = .pvalid },
226 .{ .cp = 0x0212, .category = .disallowed },
227 .{ .cp = 0x0213, .category = .pvalid },
228 .{ .cp = 0x0214, .category = .disallowed },
229 .{ .cp = 0x0215, .category = .pvalid },
230 .{ .cp = 0x0216, .category = .disallowed },
231 .{ .cp = 0x0217, .category = .pvalid },
232 .{ .cp = 0x0218, .category = .disallowed },
233 .{ .cp = 0x0219, .category = .pvalid },
234 .{ .cp = 0x021A, .category = .disallowed },
235 .{ .cp = 0x021B, .category = .pvalid },
236 .{ .cp = 0x021C, .category = .disallowed },
237 .{ .cp = 0x021D, .category = .pvalid },
238 .{ .cp = 0x021E, .category = .disallowed },
239 .{ .cp = 0x021F, .category = .pvalid },
240 .{ .cp = 0x0220, .category = .disallowed },
241 .{ .cp = 0x0221, .category = .pvalid },
242 .{ .cp = 0x0222, .category = .disallowed },
243 .{ .cp = 0x0223, .category = .pvalid },
244 .{ .cp = 0x0224, .category = .disallowed },
245 .{ .cp = 0x0225, .category = .pvalid },
246 .{ .cp = 0x0226, .category = .disallowed },
247 .{ .cp = 0x0227, .category = .pvalid },
248 .{ .cp = 0x0228, .category = .disallowed },
249 .{ .cp = 0x0229, .category = .pvalid },
250 .{ .cp = 0x022A, .category = .disallowed },
251 .{ .cp = 0x022B, .category = .pvalid },
252 .{ .cp = 0x022C, .category = .disallowed },
253 .{ .cp = 0x022D, .category = .pvalid },
254 .{ .cp = 0x022E, .category = .disallowed },
255 .{ .cp = 0x022F, .category = .pvalid },
256 .{ .cp = 0x0230, .category = .disallowed },
257 .{ .cp = 0x0231, .category = .pvalid },
258 .{ .cp = 0x0232, .category = .disallowed },
259 .{ .cp = 0x023C, .category = .pvalid },
260 .{ .cp = 0x0241, .category = .disallowed },
261 .{ .cp = 0x0242, .category = .pvalid },
262 .{ .cp = 0x0247, .category = .pvalid },
263 .{ .cp = 0x0248, .category = .disallowed },
264 .{ .cp = 0x0249, .category = .pvalid },
265 .{ .cp = 0x024A, .category = .disallowed },
266 .{ .cp = 0x024B, .category = .pvalid },
267 .{ .cp = 0x024C, .category = .disallowed },
268 .{ .cp = 0x024D, .category = .pvalid },
269 .{ .cp = 0x024E, .category = .disallowed },
270 .{ .cp = 0x02EC, .category = .pvalid },
271 .{ .cp = 0x02ED, .category = .disallowed },
272 .{ .cp = 0x02EE, .category = .pvalid },
273 .{ .cp = 0x0342, .category = .pvalid },
274 .{ .cp = 0x034F, .category = .disallowed },
275 .{ .cp = 0x0370, .category = .disallowed },
276 .{ .cp = 0x0371, .category = .pvalid },
277 .{ .cp = 0x0372, .category = .disallowed },
278 .{ .cp = 0x0373, .category = .pvalid },
279 .{ .cp = 0x0374, .category = .disallowed },
280 .{ .cp = 0x0375, .category = .contexto },
281 .{ .cp = 0x0376, .category = .disallowed },
282 .{ .cp = 0x0377, .category = .pvalid },
283 .{ .cp = 0x037A, .category = .disallowed },
284 .{ .cp = 0x038B, .category = .unassigned },
285 .{ .cp = 0x038C, .category = .disallowed },
286 .{ .cp = 0x038D, .category = .unassigned },
287 .{ .cp = 0x0390, .category = .pvalid },
288 .{ .cp = 0x03A2, .category = .unassigned },
289 .{ .cp = 0x03D7, .category = .pvalid },
290 .{ .cp = 0x03D8, .category = .disallowed },
291 .{ .cp = 0x03D9, .category = .pvalid },
292 .{ .cp = 0x03DA, .category = .disallowed },
293 .{ .cp = 0x03DB, .category = .pvalid },
294 .{ .cp = 0x03DC, .category = .disallowed },
295 .{ .cp = 0x03DD, .category = .pvalid },
296 .{ .cp = 0x03DE, .category = .disallowed },
297 .{ .cp = 0x03DF, .category = .pvalid },
298 .{ .cp = 0x03E0, .category = .disallowed },
299 .{ .cp = 0x03E1, .category = .pvalid },
300 .{ .cp = 0x03E2, .category = .disallowed },
301 .{ .cp = 0x03E3, .category = .pvalid },
302 .{ .cp = 0x03E4, .category = .disallowed },
303 .{ .cp = 0x03E5, .category = .pvalid },
304 .{ .cp = 0x03E6, .category = .disallowed },
305 .{ .cp = 0x03E7, .category = .pvalid },
306 .{ .cp = 0x03E8, .category = .disallowed },
307 .{ .cp = 0x03E9, .category = .pvalid },
308 .{ .cp = 0x03EA, .category = .disallowed },
309 .{ .cp = 0x03EB, .category = .pvalid },
310 .{ .cp = 0x03EC, .category = .disallowed },
311 .{ .cp = 0x03ED, .category = .pvalid },
312 .{ .cp = 0x03EE, .category = .disallowed },
313 .{ .cp = 0x03EF, .category = .pvalid },
314 .{ .cp = 0x03F3, .category = .pvalid },
315 .{ .cp = 0x03F8, .category = .pvalid },
316 .{ .cp = 0x0460, .category = .disallowed },
317 .{ .cp = 0x0461, .category = .pvalid },
318 .{ .cp = 0x0462, .category = .disallowed },
319 .{ .cp = 0x0463, .category = .pvalid },
320 .{ .cp = 0x0464, .category = .disallowed },
321 .{ .cp = 0x0465, .category = .pvalid },
322 .{ .cp = 0x0466, .category = .disallowed },
323 .{ .cp = 0x0467, .category = .pvalid },
324 .{ .cp = 0x0468, .category = .disallowed },
325 .{ .cp = 0x0469, .category = .pvalid },
326 .{ .cp = 0x046A, .category = .disallowed },
327 .{ .cp = 0x046B, .category = .pvalid },
328 .{ .cp = 0x046C, .category = .disallowed },
329 .{ .cp = 0x046D, .category = .pvalid },
330 .{ .cp = 0x046E, .category = .disallowed },
331 .{ .cp = 0x046F, .category = .pvalid },
332 .{ .cp = 0x0470, .category = .disallowed },
333 .{ .cp = 0x0471, .category = .pvalid },
334 .{ .cp = 0x0472, .category = .disallowed },
335 .{ .cp = 0x0473, .category = .pvalid },
336 .{ .cp = 0x0474, .category = .disallowed },
337 .{ .cp = 0x0475, .category = .pvalid },
338 .{ .cp = 0x0476, .category = .disallowed },
339 .{ .cp = 0x0477, .category = .pvalid },
340 .{ .cp = 0x0478, .category = .disallowed },
341 .{ .cp = 0x0479, .category = .pvalid },
342 .{ .cp = 0x047A, .category = .disallowed },
343 .{ .cp = 0x047B, .category = .pvalid },
344 .{ .cp = 0x047C, .category = .disallowed },
345 .{ .cp = 0x047D, .category = .pvalid },
346 .{ .cp = 0x047E, .category = .disallowed },
347 .{ .cp = 0x047F, .category = .pvalid },
348 .{ .cp = 0x0480, .category = .disallowed },
349 .{ .cp = 0x0481, .category = .pvalid },
350 .{ .cp = 0x0482, .category = .disallowed },
351 .{ .cp = 0x048B, .category = .pvalid },
352 .{ .cp = 0x048C, .category = .disallowed },
353 .{ .cp = 0x048D, .category = .pvalid },
354 .{ .cp = 0x048E, .category = .disallowed },
355 .{ .cp = 0x048F, .category = .pvalid },
356 .{ .cp = 0x0490, .category = .disallowed },
357 .{ .cp = 0x0491, .category = .pvalid },
358 .{ .cp = 0x0492, .category = .disallowed },
359 .{ .cp = 0x0493, .category = .pvalid },
360 .{ .cp = 0x0494, .category = .disallowed },
361 .{ .cp = 0x0495, .category = .pvalid },
362 .{ .cp = 0x0496, .category = .disallowed },
363 .{ .cp = 0x0497, .category = .pvalid },
364 .{ .cp = 0x0498, .category = .disallowed },
365 .{ .cp = 0x0499, .category = .pvalid },
366 .{ .cp = 0x049A, .category = .disallowed },
367 .{ .cp = 0x049B, .category = .pvalid },
368 .{ .cp = 0x049C, .category = .disallowed },
369 .{ .cp = 0x049D, .category = .pvalid },
370 .{ .cp = 0x049E, .category = .disallowed },
371 .{ .cp = 0x049F, .category = .pvalid },
372 .{ .cp = 0x04A0, .category = .disallowed },
373 .{ .cp = 0x04A1, .category = .pvalid },
374 .{ .cp = 0x04A2, .category = .disallowed },
375 .{ .cp = 0x04A3, .category = .pvalid },
376 .{ .cp = 0x04A4, .category = .disallowed },
377 .{ .cp = 0x04A5, .category = .pvalid },
378 .{ .cp = 0x04A6, .category = .disallowed },
379 .{ .cp = 0x04A7, .category = .pvalid },
380 .{ .cp = 0x04A8, .category = .disallowed },
381 .{ .cp = 0x04A9, .category = .pvalid },
382 .{ .cp = 0x04AA, .category = .disallowed },
383 .{ .cp = 0x04AB, .category = .pvalid },
384 .{ .cp = 0x04AC, .category = .disallowed },
385 .{ .cp = 0x04AD, .category = .pvalid },
386 .{ .cp = 0x04AE, .category = .disallowed },
387 .{ .cp = 0x04AF, .category = .pvalid },
388 .{ .cp = 0x04B0, .category = .disallowed },
389 .{ .cp = 0x04B1, .category = .pvalid },
390 .{ .cp = 0x04B2, .category = .disallowed },
391 .{ .cp = 0x04B3, .category = .pvalid },
392 .{ .cp = 0x04B4, .category = .disallowed },
393 .{ .cp = 0x04B5, .category = .pvalid },
394 .{ .cp = 0x04B6, .category = .disallowed },
395 .{ .cp = 0x04B7, .category = .pvalid },
396 .{ .cp = 0x04B8, .category = .disallowed },
397 .{ .cp = 0x04B9, .category = .pvalid },
398 .{ .cp = 0x04BA, .category = .disallowed },
399 .{ .cp = 0x04BB, .category = .pvalid },
400 .{ .cp = 0x04BC, .category = .disallowed },
401 .{ .cp = 0x04BD, .category = .pvalid },
402 .{ .cp = 0x04BE, .category = .disallowed },
403 .{ .cp = 0x04BF, .category = .pvalid },
404 .{ .cp = 0x04C2, .category = .pvalid },
405 .{ .cp = 0x04C3, .category = .disallowed },
406 .{ .cp = 0x04C4, .category = .pvalid },
407 .{ .cp = 0x04C5, .category = .disallowed },
408 .{ .cp = 0x04C6, .category = .pvalid },
409 .{ .cp = 0x04C7, .category = .disallowed },
410 .{ .cp = 0x04C8, .category = .pvalid },
411 .{ .cp = 0x04C9, .category = .disallowed },
412 .{ .cp = 0x04CA, .category = .pvalid },
413 .{ .cp = 0x04CB, .category = .disallowed },
414 .{ .cp = 0x04CC, .category = .pvalid },
415 .{ .cp = 0x04CD, .category = .disallowed },
416 .{ .cp = 0x04D0, .category = .disallowed },
417 .{ .cp = 0x04D1, .category = .pvalid },
418 .{ .cp = 0x04D2, .category = .disallowed },
419 .{ .cp = 0x04D3, .category = .pvalid },
420 .{ .cp = 0x04D4, .category = .disallowed },
421 .{ .cp = 0x04D5, .category = .pvalid },
422 .{ .cp = 0x04D6, .category = .disallowed },
423 .{ .cp = 0x04D7, .category = .pvalid },
424 .{ .cp = 0x04D8, .category = .disallowed },
425 .{ .cp = 0x04D9, .category = .pvalid },
426 .{ .cp = 0x04DA, .category = .disallowed },
427 .{ .cp = 0x04DB, .category = .pvalid },
428 .{ .cp = 0x04DC, .category = .disallowed },
429 .{ .cp = 0x04DD, .category = .pvalid },
430 .{ .cp = 0x04DE, .category = .disallowed },
431 .{ .cp = 0x04DF, .category = .pvalid },
432 .{ .cp = 0x04E0, .category = .disallowed },
433 .{ .cp = 0x04E1, .category = .pvalid },
434 .{ .cp = 0x04E2, .category = .disallowed },
435 .{ .cp = 0x04E3, .category = .pvalid },
436 .{ .cp = 0x04E4, .category = .disallowed },
437 .{ .cp = 0x04E5, .category = .pvalid },
438 .{ .cp = 0x04E6, .category = .disallowed },
439 .{ .cp = 0x04E7, .category = .pvalid },
440 .{ .cp = 0x04E8, .category = .disallowed },
441 .{ .cp = 0x04E9, .category = .pvalid },
442 .{ .cp = 0x04EA, .category = .disallowed },
443 .{ .cp = 0x04EB, .category = .pvalid },
444 .{ .cp = 0x04EC, .category = .disallowed },
445 .{ .cp = 0x04ED, .category = .pvalid },
446 .{ .cp = 0x04EE, .category = .disallowed },
447 .{ .cp = 0x04EF, .category = .pvalid },
448 .{ .cp = 0x04F0, .category = .disallowed },
449 .{ .cp = 0x04F1, .category = .pvalid },
450 .{ .cp = 0x04F2, .category = .disallowed },
451 .{ .cp = 0x04F3, .category = .pvalid },
452 .{ .cp = 0x04F4, .category = .disallowed },
453 .{ .cp = 0x04F5, .category = .pvalid },
454 .{ .cp = 0x04F6, .category = .disallowed },
455 .{ .cp = 0x04F7, .category = .pvalid },
456 .{ .cp = 0x04F8, .category = .disallowed },
457 .{ .cp = 0x04F9, .category = .pvalid },
458 .{ .cp = 0x04FA, .category = .disallowed },
459 .{ .cp = 0x04FB, .category = .pvalid },
460 .{ .cp = 0x04FC, .category = .disallowed },
461 .{ .cp = 0x04FD, .category = .pvalid },
462 .{ .cp = 0x04FE, .category = .disallowed },
463 .{ .cp = 0x04FF, .category = .pvalid },
464 .{ .cp = 0x0500, .category = .disallowed },
465 .{ .cp = 0x0501, .category = .pvalid },
466 .{ .cp = 0x0502, .category = .disallowed },
467 .{ .cp = 0x0503, .category = .pvalid },
468 .{ .cp = 0x0504, .category = .disallowed },
469 .{ .cp = 0x0505, .category = .pvalid },
470 .{ .cp = 0x0506, .category = .disallowed },
471 .{ .cp = 0x0507, .category = .pvalid },
472 .{ .cp = 0x0508, .category = .disallowed },
473 .{ .cp = 0x0509, .category = .pvalid },
474 .{ .cp = 0x050A, .category = .disallowed },
475 .{ .cp = 0x050B, .category = .pvalid },
476 .{ .cp = 0x050C, .category = .disallowed },
477 .{ .cp = 0x050D, .category = .pvalid },
478 .{ .cp = 0x050E, .category = .disallowed },
479 .{ .cp = 0x050F, .category = .pvalid },
480 .{ .cp = 0x0510, .category = .disallowed },
481 .{ .cp = 0x0511, .category = .pvalid },
482 .{ .cp = 0x0512, .category = .disallowed },
483 .{ .cp = 0x0513, .category = .pvalid },
484 .{ .cp = 0x0514, .category = .disallowed },
485 .{ .cp = 0x0515, .category = .pvalid },
486 .{ .cp = 0x0516, .category = .disallowed },
487 .{ .cp = 0x0517, .category = .pvalid },
488 .{ .cp = 0x0518, .category = .disallowed },
489 .{ .cp = 0x0519, .category = .pvalid },
490 .{ .cp = 0x051A, .category = .disallowed },
491 .{ .cp = 0x051B, .category = .pvalid },
492 .{ .cp = 0x051C, .category = .disallowed },
493 .{ .cp = 0x051D, .category = .pvalid },
494 .{ .cp = 0x051E, .category = .disallowed },
495 .{ .cp = 0x051F, .category = .pvalid },
496 .{ .cp = 0x0520, .category = .disallowed },
497 .{ .cp = 0x0521, .category = .pvalid },
498 .{ .cp = 0x0522, .category = .disallowed },
499 .{ .cp = 0x0523, .category = .pvalid },
500 .{ .cp = 0x0524, .category = .disallowed },
501 .{ .cp = 0x0525, .category = .pvalid },
502 .{ .cp = 0x0526, .category = .disallowed },
503 .{ .cp = 0x0527, .category = .pvalid },
504 .{ .cp = 0x0528, .category = .disallowed },
505 .{ .cp = 0x0529, .category = .pvalid },
506 .{ .cp = 0x052A, .category = .disallowed },
507 .{ .cp = 0x052B, .category = .pvalid },
508 .{ .cp = 0x052C, .category = .disallowed },
509 .{ .cp = 0x052D, .category = .pvalid },
510 .{ .cp = 0x052E, .category = .disallowed },
511 .{ .cp = 0x052F, .category = .pvalid },
512 .{ .cp = 0x0530, .category = .unassigned },
513 .{ .cp = 0x0559, .category = .pvalid },
514 .{ .cp = 0x0587, .category = .disallowed },
515 .{ .cp = 0x0588, .category = .pvalid },
516 .{ .cp = 0x0590, .category = .unassigned },
517 .{ .cp = 0x05BE, .category = .disallowed },
518 .{ .cp = 0x05BF, .category = .pvalid },
519 .{ .cp = 0x05C0, .category = .disallowed },
520 .{ .cp = 0x05C3, .category = .disallowed },
521 .{ .cp = 0x05C6, .category = .disallowed },
522 .{ .cp = 0x05C7, .category = .pvalid },
523 .{ .cp = 0x0640, .category = .disallowed },
524 .{ .cp = 0x06D4, .category = .disallowed },
525 .{ .cp = 0x06E9, .category = .disallowed },
526 .{ .cp = 0x070E, .category = .unassigned },
527 .{ .cp = 0x070F, .category = .disallowed },
528 .{ .cp = 0x07FD, .category = .pvalid },
529 .{ .cp = 0x083F, .category = .unassigned },
530 .{ .cp = 0x085E, .category = .disallowed },
531 .{ .cp = 0x085F, .category = .unassigned },
532 .{ .cp = 0x0888, .category = .disallowed },
533 .{ .cp = 0x08E2, .category = .disallowed },
534 .{ .cp = 0x0970, .category = .disallowed },
535 .{ .cp = 0x0984, .category = .unassigned },
536 .{ .cp = 0x09A9, .category = .unassigned },
537 .{ .cp = 0x09B1, .category = .unassigned },
538 .{ .cp = 0x09B2, .category = .pvalid },
539 .{ .cp = 0x09D7, .category = .pvalid },
540 .{ .cp = 0x09DE, .category = .unassigned },
541 .{ .cp = 0x09DF, .category = .disallowed },
542 .{ .cp = 0x09FC, .category = .pvalid },
543 .{ .cp = 0x09FD, .category = .disallowed },
544 .{ .cp = 0x09FE, .category = .pvalid },
545 .{ .cp = 0x0A04, .category = .unassigned },
546 .{ .cp = 0x0A29, .category = .unassigned },
547 .{ .cp = 0x0A31, .category = .unassigned },
548 .{ .cp = 0x0A32, .category = .pvalid },
549 .{ .cp = 0x0A33, .category = .disallowed },
550 .{ .cp = 0x0A34, .category = .unassigned },
551 .{ .cp = 0x0A35, .category = .pvalid },
552 .{ .cp = 0x0A36, .category = .disallowed },
553 .{ .cp = 0x0A37, .category = .unassigned },
554 .{ .cp = 0x0A3C, .category = .pvalid },
555 .{ .cp = 0x0A3D, .category = .unassigned },
556 .{ .cp = 0x0A51, .category = .pvalid },
557 .{ .cp = 0x0A5C, .category = .pvalid },
558 .{ .cp = 0x0A5D, .category = .unassigned },
559 .{ .cp = 0x0A5E, .category = .disallowed },
560 .{ .cp = 0x0A76, .category = .disallowed },
561 .{ .cp = 0x0A84, .category = .unassigned },
562 .{ .cp = 0x0A8E, .category = .unassigned },
563 .{ .cp = 0x0A92, .category = .unassigned },
564 .{ .cp = 0x0AA9, .category = .unassigned },
565 .{ .cp = 0x0AB1, .category = .unassigned },
566 .{ .cp = 0x0AB4, .category = .unassigned },
567 .{ .cp = 0x0AC6, .category = .unassigned },
568 .{ .cp = 0x0ACA, .category = .unassigned },
569 .{ .cp = 0x0AD0, .category = .pvalid },
570 .{ .cp = 0x0B00, .category = .unassigned },
571 .{ .cp = 0x0B04, .category = .unassigned },
572 .{ .cp = 0x0B29, .category = .unassigned },
573 .{ .cp = 0x0B31, .category = .unassigned },
574 .{ .cp = 0x0B34, .category = .unassigned },
575 .{ .cp = 0x0B5E, .category = .unassigned },
576 .{ .cp = 0x0B70, .category = .disallowed },
577 .{ .cp = 0x0B71, .category = .pvalid },
578 .{ .cp = 0x0B84, .category = .unassigned },
579 .{ .cp = 0x0B91, .category = .unassigned },
580 .{ .cp = 0x0B9B, .category = .unassigned },
581 .{ .cp = 0x0B9C, .category = .pvalid },
582 .{ .cp = 0x0B9D, .category = .unassigned },
583 .{ .cp = 0x0BC9, .category = .unassigned },
584 .{ .cp = 0x0BD0, .category = .pvalid },
585 .{ .cp = 0x0BD7, .category = .pvalid },
586 .{ .cp = 0x0C0D, .category = .unassigned },
587 .{ .cp = 0x0C11, .category = .unassigned },
588 .{ .cp = 0x0C29, .category = .unassigned },
589 .{ .cp = 0x0C45, .category = .unassigned },
590 .{ .cp = 0x0C49, .category = .unassigned },
591 .{ .cp = 0x0C57, .category = .unassigned },
592 .{ .cp = 0x0C5B, .category = .unassigned },
593 .{ .cp = 0x0C84, .category = .disallowed },
594 .{ .cp = 0x0C8D, .category = .unassigned },
595 .{ .cp = 0x0C91, .category = .unassigned },
596 .{ .cp = 0x0CA9, .category = .unassigned },
597 .{ .cp = 0x0CB4, .category = .unassigned },
598 .{ .cp = 0x0CC5, .category = .unassigned },
599 .{ .cp = 0x0CC9, .category = .unassigned },
600 .{ .cp = 0x0CDF, .category = .unassigned },
601 .{ .cp = 0x0CF0, .category = .unassigned },
602 .{ .cp = 0x0D0D, .category = .unassigned },
603 .{ .cp = 0x0D11, .category = .unassigned },
604 .{ .cp = 0x0D45, .category = .unassigned },
605 .{ .cp = 0x0D49, .category = .unassigned },
606 .{ .cp = 0x0D4F, .category = .disallowed },
607 .{ .cp = 0x0D80, .category = .unassigned },
608 .{ .cp = 0x0D84, .category = .unassigned },
609 .{ .cp = 0x0DB2, .category = .unassigned },
610 .{ .cp = 0x0DBC, .category = .unassigned },
611 .{ .cp = 0x0DBD, .category = .pvalid },
612 .{ .cp = 0x0DCA, .category = .pvalid },
613 .{ .cp = 0x0DD5, .category = .unassigned },
614 .{ .cp = 0x0DD6, .category = .pvalid },
615 .{ .cp = 0x0DD7, .category = .unassigned },
616 .{ .cp = 0x0DF4, .category = .disallowed },
617 .{ .cp = 0x0E33, .category = .disallowed },
618 .{ .cp = 0x0E3F, .category = .disallowed },
619 .{ .cp = 0x0E4F, .category = .disallowed },
620 .{ .cp = 0x0E83, .category = .unassigned },
621 .{ .cp = 0x0E84, .category = .pvalid },
622 .{ .cp = 0x0E85, .category = .unassigned },
623 .{ .cp = 0x0E8B, .category = .unassigned },
624 .{ .cp = 0x0EA4, .category = .unassigned },
625 .{ .cp = 0x0EA5, .category = .pvalid },
626 .{ .cp = 0x0EA6, .category = .unassigned },
627 .{ .cp = 0x0EB3, .category = .disallowed },
628 .{ .cp = 0x0EC5, .category = .unassigned },
629 .{ .cp = 0x0EC6, .category = .pvalid },
630 .{ .cp = 0x0EC7, .category = .unassigned },
631 .{ .cp = 0x0ECF, .category = .unassigned },
632 .{ .cp = 0x0F00, .category = .pvalid },
633 .{ .cp = 0x0F0B, .category = .pvalid },
634 .{ .cp = 0x0F35, .category = .pvalid },
635 .{ .cp = 0x0F36, .category = .disallowed },
636 .{ .cp = 0x0F37, .category = .pvalid },
637 .{ .cp = 0x0F38, .category = .disallowed },
638 .{ .cp = 0x0F39, .category = .pvalid },
639 .{ .cp = 0x0F43, .category = .disallowed },
640 .{ .cp = 0x0F48, .category = .unassigned },
641 .{ .cp = 0x0F4D, .category = .disallowed },
642 .{ .cp = 0x0F52, .category = .disallowed },
643 .{ .cp = 0x0F57, .category = .disallowed },
644 .{ .cp = 0x0F5C, .category = .disallowed },
645 .{ .cp = 0x0F69, .category = .disallowed },
646 .{ .cp = 0x0F73, .category = .disallowed },
647 .{ .cp = 0x0F74, .category = .pvalid },
648 .{ .cp = 0x0F81, .category = .disallowed },
649 .{ .cp = 0x0F85, .category = .disallowed },
650 .{ .cp = 0x0F93, .category = .disallowed },
651 .{ .cp = 0x0F98, .category = .unassigned },
652 .{ .cp = 0x0F9D, .category = .disallowed },
653 .{ .cp = 0x0FA2, .category = .disallowed },
654 .{ .cp = 0x0FA7, .category = .disallowed },
655 .{ .cp = 0x0FAC, .category = .disallowed },
656 .{ .cp = 0x0FB9, .category = .disallowed },
657 .{ .cp = 0x0FBD, .category = .unassigned },
658 .{ .cp = 0x0FC6, .category = .pvalid },
659 .{ .cp = 0x0FCD, .category = .unassigned },
660 .{ .cp = 0x10C6, .category = .unassigned },
661 .{ .cp = 0x10C7, .category = .disallowed },
662 .{ .cp = 0x10CD, .category = .disallowed },
663 .{ .cp = 0x1249, .category = .unassigned },
664 .{ .cp = 0x1257, .category = .unassigned },
665 .{ .cp = 0x1258, .category = .pvalid },
666 .{ .cp = 0x1259, .category = .unassigned },
667 .{ .cp = 0x1289, .category = .unassigned },
668 .{ .cp = 0x12B1, .category = .unassigned },
669 .{ .cp = 0x12BF, .category = .unassigned },
670 .{ .cp = 0x12C0, .category = .pvalid },
671 .{ .cp = 0x12C1, .category = .unassigned },
672 .{ .cp = 0x12D7, .category = .unassigned },
673 .{ .cp = 0x1311, .category = .unassigned },
674 .{ .cp = 0x1400, .category = .disallowed },
675 .{ .cp = 0x1680, .category = .disallowed },
676 .{ .cp = 0x176D, .category = .unassigned },
677 .{ .cp = 0x1771, .category = .unassigned },
678 .{ .cp = 0x17D7, .category = .pvalid },
679 .{ .cp = 0x191F, .category = .unassigned },
680 .{ .cp = 0x1940, .category = .disallowed },
681 .{ .cp = 0x19DA, .category = .disallowed },
682 .{ .cp = 0x1A5F, .category = .unassigned },
683 .{ .cp = 0x1AA7, .category = .pvalid },
684 .{ .cp = 0x1ABE, .category = .disallowed },
685 .{ .cp = 0x1B4D, .category = .unassigned },
686 .{ .cp = 0x1C8A, .category = .pvalid },
687 .{ .cp = 0x1CD3, .category = .disallowed },
688 .{ .cp = 0x1D2F, .category = .pvalid },
689 .{ .cp = 0x1D3B, .category = .pvalid },
690 .{ .cp = 0x1D4E, .category = .pvalid },
691 .{ .cp = 0x1D78, .category = .disallowed },
692 .{ .cp = 0x1E00, .category = .disallowed },
693 .{ .cp = 0x1E01, .category = .pvalid },
694 .{ .cp = 0x1E02, .category = .disallowed },
695 .{ .cp = 0x1E03, .category = .pvalid },
696 .{ .cp = 0x1E04, .category = .disallowed },
697 .{ .cp = 0x1E05, .category = .pvalid },
698 .{ .cp = 0x1E06, .category = .disallowed },
699 .{ .cp = 0x1E07, .category = .pvalid },
700 .{ .cp = 0x1E08, .category = .disallowed },
701 .{ .cp = 0x1E09, .category = .pvalid },
702 .{ .cp = 0x1E0A, .category = .disallowed },
703 .{ .cp = 0x1E0B, .category = .pvalid },
704 .{ .cp = 0x1E0C, .category = .disallowed },
705 .{ .cp = 0x1E0D, .category = .pvalid },
706 .{ .cp = 0x1E0E, .category = .disallowed },
707 .{ .cp = 0x1E0F, .category = .pvalid },
708 .{ .cp = 0x1E10, .category = .disallowed },
709 .{ .cp = 0x1E11, .category = .pvalid },
710 .{ .cp = 0x1E12, .category = .disallowed },
711 .{ .cp = 0x1E13, .category = .pvalid },
712 .{ .cp = 0x1E14, .category = .disallowed },
713 .{ .cp = 0x1E15, .category = .pvalid },
714 .{ .cp = 0x1E16, .category = .disallowed },
715 .{ .cp = 0x1E17, .category = .pvalid },
716 .{ .cp = 0x1E18, .category = .disallowed },
717 .{ .cp = 0x1E19, .category = .pvalid },
718 .{ .cp = 0x1E1A, .category = .disallowed },
719 .{ .cp = 0x1E1B, .category = .pvalid },
720 .{ .cp = 0x1E1C, .category = .disallowed },
721 .{ .cp = 0x1E1D, .category = .pvalid },
722 .{ .cp = 0x1E1E, .category = .disallowed },
723 .{ .cp = 0x1E1F, .category = .pvalid },
724 .{ .cp = 0x1E20, .category = .disallowed },
725 .{ .cp = 0x1E21, .category = .pvalid },
726 .{ .cp = 0x1E22, .category = .disallowed },
727 .{ .cp = 0x1E23, .category = .pvalid },
728 .{ .cp = 0x1E24, .category = .disallowed },
729 .{ .cp = 0x1E25, .category = .pvalid },
730 .{ .cp = 0x1E26, .category = .disallowed },
731 .{ .cp = 0x1E27, .category = .pvalid },
732 .{ .cp = 0x1E28, .category = .disallowed },
733 .{ .cp = 0x1E29, .category = .pvalid },
734 .{ .cp = 0x1E2A, .category = .disallowed },
735 .{ .cp = 0x1E2B, .category = .pvalid },
736 .{ .cp = 0x1E2C, .category = .disallowed },
737 .{ .cp = 0x1E2D, .category = .pvalid },
738 .{ .cp = 0x1E2E, .category = .disallowed },
739 .{ .cp = 0x1E2F, .category = .pvalid },
740 .{ .cp = 0x1E30, .category = .disallowed },
741 .{ .cp = 0x1E31, .category = .pvalid },
742 .{ .cp = 0x1E32, .category = .disallowed },
743 .{ .cp = 0x1E33, .category = .pvalid },
744 .{ .cp = 0x1E34, .category = .disallowed },
745 .{ .cp = 0x1E35, .category = .pvalid },
746 .{ .cp = 0x1E36, .category = .disallowed },
747 .{ .cp = 0x1E37, .category = .pvalid },
748 .{ .cp = 0x1E38, .category = .disallowed },
749 .{ .cp = 0x1E39, .category = .pvalid },
750 .{ .cp = 0x1E3A, .category = .disallowed },
751 .{ .cp = 0x1E3B, .category = .pvalid },
752 .{ .cp = 0x1E3C, .category = .disallowed },
753 .{ .cp = 0x1E3D, .category = .pvalid },
754 .{ .cp = 0x1E3E, .category = .disallowed },
755 .{ .cp = 0x1E3F, .category = .pvalid },
756 .{ .cp = 0x1E40, .category = .disallowed },
757 .{ .cp = 0x1E41, .category = .pvalid },
758 .{ .cp = 0x1E42, .category = .disallowed },
759 .{ .cp = 0x1E43, .category = .pvalid },
760 .{ .cp = 0x1E44, .category = .disallowed },
761 .{ .cp = 0x1E45, .category = .pvalid },
762 .{ .cp = 0x1E46, .category = .disallowed },
763 .{ .cp = 0x1E47, .category = .pvalid },
764 .{ .cp = 0x1E48, .category = .disallowed },
765 .{ .cp = 0x1E49, .category = .pvalid },
766 .{ .cp = 0x1E4A, .category = .disallowed },
767 .{ .cp = 0x1E4B, .category = .pvalid },
768 .{ .cp = 0x1E4C, .category = .disallowed },
769 .{ .cp = 0x1E4D, .category = .pvalid },
770 .{ .cp = 0x1E4E, .category = .disallowed },
771 .{ .cp = 0x1E4F, .category = .pvalid },
772 .{ .cp = 0x1E50, .category = .disallowed },
773 .{ .cp = 0x1E51, .category = .pvalid },
774 .{ .cp = 0x1E52, .category = .disallowed },
775 .{ .cp = 0x1E53, .category = .pvalid },
776 .{ .cp = 0x1E54, .category = .disallowed },
777 .{ .cp = 0x1E55, .category = .pvalid },
778 .{ .cp = 0x1E56, .category = .disallowed },
779 .{ .cp = 0x1E57, .category = .pvalid },
780 .{ .cp = 0x1E58, .category = .disallowed },
781 .{ .cp = 0x1E59, .category = .pvalid },
782 .{ .cp = 0x1E5A, .category = .disallowed },
783 .{ .cp = 0x1E5B, .category = .pvalid },
784 .{ .cp = 0x1E5C, .category = .disallowed },
785 .{ .cp = 0x1E5D, .category = .pvalid },
786 .{ .cp = 0x1E5E, .category = .disallowed },
787 .{ .cp = 0x1E5F, .category = .pvalid },
788 .{ .cp = 0x1E60, .category = .disallowed },
789 .{ .cp = 0x1E61, .category = .pvalid },
790 .{ .cp = 0x1E62, .category = .disallowed },
791 .{ .cp = 0x1E63, .category = .pvalid },
792 .{ .cp = 0x1E64, .category = .disallowed },
793 .{ .cp = 0x1E65, .category = .pvalid },
794 .{ .cp = 0x1E66, .category = .disallowed },
795 .{ .cp = 0x1E67, .category = .pvalid },
796 .{ .cp = 0x1E68, .category = .disallowed },
797 .{ .cp = 0x1E69, .category = .pvalid },
798 .{ .cp = 0x1E6A, .category = .disallowed },
799 .{ .cp = 0x1E6B, .category = .pvalid },
800 .{ .cp = 0x1E6C, .category = .disallowed },
801 .{ .cp = 0x1E6D, .category = .pvalid },
802 .{ .cp = 0x1E6E, .category = .disallowed },
803 .{ .cp = 0x1E6F, .category = .pvalid },
804 .{ .cp = 0x1E70, .category = .disallowed },
805 .{ .cp = 0x1E71, .category = .pvalid },
806 .{ .cp = 0x1E72, .category = .disallowed },
807 .{ .cp = 0x1E73, .category = .pvalid },
808 .{ .cp = 0x1E74, .category = .disallowed },
809 .{ .cp = 0x1E75, .category = .pvalid },
810 .{ .cp = 0x1E76, .category = .disallowed },
811 .{ .cp = 0x1E77, .category = .pvalid },
812 .{ .cp = 0x1E78, .category = .disallowed },
813 .{ .cp = 0x1E79, .category = .pvalid },
814 .{ .cp = 0x1E7A, .category = .disallowed },
815 .{ .cp = 0x1E7B, .category = .pvalid },
816 .{ .cp = 0x1E7C, .category = .disallowed },
817 .{ .cp = 0x1E7D, .category = .pvalid },
818 .{ .cp = 0x1E7E, .category = .disallowed },
819 .{ .cp = 0x1E7F, .category = .pvalid },
820 .{ .cp = 0x1E80, .category = .disallowed },
821 .{ .cp = 0x1E81, .category = .pvalid },
822 .{ .cp = 0x1E82, .category = .disallowed },
823 .{ .cp = 0x1E83, .category = .pvalid },
824 .{ .cp = 0x1E84, .category = .disallowed },
825 .{ .cp = 0x1E85, .category = .pvalid },
826 .{ .cp = 0x1E86, .category = .disallowed },
827 .{ .cp = 0x1E87, .category = .pvalid },
828 .{ .cp = 0x1E88, .category = .disallowed },
829 .{ .cp = 0x1E89, .category = .pvalid },
830 .{ .cp = 0x1E8A, .category = .disallowed },
831 .{ .cp = 0x1E8B, .category = .pvalid },
832 .{ .cp = 0x1E8C, .category = .disallowed },
833 .{ .cp = 0x1E8D, .category = .pvalid },
834 .{ .cp = 0x1E8E, .category = .disallowed },
835 .{ .cp = 0x1E8F, .category = .pvalid },
836 .{ .cp = 0x1E90, .category = .disallowed },
837 .{ .cp = 0x1E91, .category = .pvalid },
838 .{ .cp = 0x1E92, .category = .disallowed },
839 .{ .cp = 0x1E93, .category = .pvalid },
840 .{ .cp = 0x1E94, .category = .disallowed },
841 .{ .cp = 0x1E9E, .category = .disallowed },
842 .{ .cp = 0x1E9F, .category = .pvalid },
843 .{ .cp = 0x1EA0, .category = .disallowed },
844 .{ .cp = 0x1EA1, .category = .pvalid },
845 .{ .cp = 0x1EA2, .category = .disallowed },
846 .{ .cp = 0x1EA3, .category = .pvalid },
847 .{ .cp = 0x1EA4, .category = .disallowed },
848 .{ .cp = 0x1EA5, .category = .pvalid },
849 .{ .cp = 0x1EA6, .category = .disallowed },
850 .{ .cp = 0x1EA7, .category = .pvalid },
851 .{ .cp = 0x1EA8, .category = .disallowed },
852 .{ .cp = 0x1EA9, .category = .pvalid },
853 .{ .cp = 0x1EAA, .category = .disallowed },
854 .{ .cp = 0x1EAB, .category = .pvalid },
855 .{ .cp = 0x1EAC, .category = .disallowed },
856 .{ .cp = 0x1EAD, .category = .pvalid },
857 .{ .cp = 0x1EAE, .category = .disallowed },
858 .{ .cp = 0x1EAF, .category = .pvalid },
859 .{ .cp = 0x1EB0, .category = .disallowed },
860 .{ .cp = 0x1EB1, .category = .pvalid },
861 .{ .cp = 0x1EB2, .category = .disallowed },
862 .{ .cp = 0x1EB3, .category = .pvalid },
863 .{ .cp = 0x1EB4, .category = .disallowed },
864 .{ .cp = 0x1EB5, .category = .pvalid },
865 .{ .cp = 0x1EB6, .category = .disallowed },
866 .{ .cp = 0x1EB7, .category = .pvalid },
867 .{ .cp = 0x1EB8, .category = .disallowed },
868 .{ .cp = 0x1EB9, .category = .pvalid },
869 .{ .cp = 0x1EBA, .category = .disallowed },
870 .{ .cp = 0x1EBB, .category = .pvalid },
871 .{ .cp = 0x1EBC, .category = .disallowed },
872 .{ .cp = 0x1EBD, .category = .pvalid },
873 .{ .cp = 0x1EBE, .category = .disallowed },
874 .{ .cp = 0x1EBF, .category = .pvalid },
875 .{ .cp = 0x1EC0, .category = .disallowed },
876 .{ .cp = 0x1EC1, .category = .pvalid },
877 .{ .cp = 0x1EC2, .category = .disallowed },
878 .{ .cp = 0x1EC3, .category = .pvalid },
879 .{ .cp = 0x1EC4, .category = .disallowed },
880 .{ .cp = 0x1EC5, .category = .pvalid },
881 .{ .cp = 0x1EC6, .category = .disallowed },
882 .{ .cp = 0x1EC7, .category = .pvalid },
883 .{ .cp = 0x1EC8, .category = .disallowed },
884 .{ .cp = 0x1EC9, .category = .pvalid },
885 .{ .cp = 0x1ECA, .category = .disallowed },
886 .{ .cp = 0x1ECB, .category = .pvalid },
887 .{ .cp = 0x1ECC, .category = .disallowed },
888 .{ .cp = 0x1ECD, .category = .pvalid },
889 .{ .cp = 0x1ECE, .category = .disallowed },
890 .{ .cp = 0x1ECF, .category = .pvalid },
891 .{ .cp = 0x1ED0, .category = .disallowed },
892 .{ .cp = 0x1ED1, .category = .pvalid },
893 .{ .cp = 0x1ED2, .category = .disallowed },
894 .{ .cp = 0x1ED3, .category = .pvalid },
895 .{ .cp = 0x1ED4, .category = .disallowed },
896 .{ .cp = 0x1ED5, .category = .pvalid },
897 .{ .cp = 0x1ED6, .category = .disallowed },
898 .{ .cp = 0x1ED7, .category = .pvalid },
899 .{ .cp = 0x1ED8, .category = .disallowed },
900 .{ .cp = 0x1ED9, .category = .pvalid },
901 .{ .cp = 0x1EDA, .category = .disallowed },
902 .{ .cp = 0x1EDB, .category = .pvalid },
903 .{ .cp = 0x1EDC, .category = .disallowed },
904 .{ .cp = 0x1EDD, .category = .pvalid },
905 .{ .cp = 0x1EDE, .category = .disallowed },
906 .{ .cp = 0x1EDF, .category = .pvalid },
907 .{ .cp = 0x1EE0, .category = .disallowed },
908 .{ .cp = 0x1EE1, .category = .pvalid },
909 .{ .cp = 0x1EE2, .category = .disallowed },
910 .{ .cp = 0x1EE3, .category = .pvalid },
911 .{ .cp = 0x1EE4, .category = .disallowed },
912 .{ .cp = 0x1EE5, .category = .pvalid },
913 .{ .cp = 0x1EE6, .category = .disallowed },
914 .{ .cp = 0x1EE7, .category = .pvalid },
915 .{ .cp = 0x1EE8, .category = .disallowed },
916 .{ .cp = 0x1EE9, .category = .pvalid },
917 .{ .cp = 0x1EEA, .category = .disallowed },
918 .{ .cp = 0x1EEB, .category = .pvalid },
919 .{ .cp = 0x1EEC, .category = .disallowed },
920 .{ .cp = 0x1EED, .category = .pvalid },
921 .{ .cp = 0x1EEE, .category = .disallowed },
922 .{ .cp = 0x1EEF, .category = .pvalid },
923 .{ .cp = 0x1EF0, .category = .disallowed },
924 .{ .cp = 0x1EF1, .category = .pvalid },
925 .{ .cp = 0x1EF2, .category = .disallowed },
926 .{ .cp = 0x1EF3, .category = .pvalid },
927 .{ .cp = 0x1EF4, .category = .disallowed },
928 .{ .cp = 0x1EF5, .category = .pvalid },
929 .{ .cp = 0x1EF6, .category = .disallowed },
930 .{ .cp = 0x1EF7, .category = .pvalid },
931 .{ .cp = 0x1EF8, .category = .disallowed },
932 .{ .cp = 0x1EF9, .category = .pvalid },
933 .{ .cp = 0x1EFA, .category = .disallowed },
934 .{ .cp = 0x1EFB, .category = .pvalid },
935 .{ .cp = 0x1EFC, .category = .disallowed },
936 .{ .cp = 0x1EFD, .category = .pvalid },
937 .{ .cp = 0x1EFE, .category = .disallowed },
938 .{ .cp = 0x1F58, .category = .unassigned },
939 .{ .cp = 0x1F59, .category = .disallowed },
940 .{ .cp = 0x1F5A, .category = .unassigned },
941 .{ .cp = 0x1F5B, .category = .disallowed },
942 .{ .cp = 0x1F5C, .category = .unassigned },
943 .{ .cp = 0x1F5D, .category = .disallowed },
944 .{ .cp = 0x1F5E, .category = .unassigned },
945 .{ .cp = 0x1F5F, .category = .disallowed },
946 .{ .cp = 0x1F70, .category = .pvalid },
947 .{ .cp = 0x1F71, .category = .disallowed },
948 .{ .cp = 0x1F72, .category = .pvalid },
949 .{ .cp = 0x1F73, .category = .disallowed },
950 .{ .cp = 0x1F74, .category = .pvalid },
951 .{ .cp = 0x1F75, .category = .disallowed },
952 .{ .cp = 0x1F76, .category = .pvalid },
953 .{ .cp = 0x1F77, .category = .disallowed },
954 .{ .cp = 0x1F78, .category = .pvalid },
955 .{ .cp = 0x1F79, .category = .disallowed },
956 .{ .cp = 0x1F7A, .category = .pvalid },
957 .{ .cp = 0x1F7B, .category = .disallowed },
958 .{ .cp = 0x1F7C, .category = .pvalid },
959 .{ .cp = 0x1F7D, .category = .disallowed },
960 .{ .cp = 0x1FB5, .category = .unassigned },
961 .{ .cp = 0x1FB6, .category = .pvalid },
962 .{ .cp = 0x1FC5, .category = .unassigned },
963 .{ .cp = 0x1FC6, .category = .pvalid },
964 .{ .cp = 0x1FD3, .category = .disallowed },
965 .{ .cp = 0x1FDC, .category = .unassigned },
966 .{ .cp = 0x1FE3, .category = .disallowed },
967 .{ .cp = 0x1FF5, .category = .unassigned },
968 .{ .cp = 0x1FF6, .category = .pvalid },
969 .{ .cp = 0x1FFF, .category = .unassigned },
970 .{ .cp = 0x2065, .category = .unassigned },
971 .{ .cp = 0x208F, .category = .unassigned },
972 .{ .cp = 0x214E, .category = .pvalid },
973 .{ .cp = 0x2184, .category = .pvalid },
974 .{ .cp = 0x2C60, .category = .disallowed },
975 .{ .cp = 0x2C61, .category = .pvalid },
976 .{ .cp = 0x2C67, .category = .disallowed },
977 .{ .cp = 0x2C68, .category = .pvalid },
978 .{ .cp = 0x2C69, .category = .disallowed },
979 .{ .cp = 0x2C6A, .category = .pvalid },
980 .{ .cp = 0x2C6B, .category = .disallowed },
981 .{ .cp = 0x2C6C, .category = .pvalid },
982 .{ .cp = 0x2C71, .category = .pvalid },
983 .{ .cp = 0x2C72, .category = .disallowed },
984 .{ .cp = 0x2C75, .category = .disallowed },
985 .{ .cp = 0x2C81, .category = .pvalid },
986 .{ .cp = 0x2C82, .category = .disallowed },
987 .{ .cp = 0x2C83, .category = .pvalid },
988 .{ .cp = 0x2C84, .category = .disallowed },
989 .{ .cp = 0x2C85, .category = .pvalid },
990 .{ .cp = 0x2C86, .category = .disallowed },
991 .{ .cp = 0x2C87, .category = .pvalid },
992 .{ .cp = 0x2C88, .category = .disallowed },
993 .{ .cp = 0x2C89, .category = .pvalid },
994 .{ .cp = 0x2C8A, .category = .disallowed },
995 .{ .cp = 0x2C8B, .category = .pvalid },
996 .{ .cp = 0x2C8C, .category = .disallowed },
997 .{ .cp = 0x2C8D, .category = .pvalid },
998 .{ .cp = 0x2C8E, .category = .disallowed },
999 .{ .cp = 0x2C8F, .category = .pvalid },
1000 .{ .cp = 0x2C90, .category = .disallowed },
1001 .{ .cp = 0x2C91, .category = .pvalid },
1002 .{ .cp = 0x2C92, .category = .disallowed },
1003 .{ .cp = 0x2C93, .category = .pvalid },
1004 .{ .cp = 0x2C94, .category = .disallowed },
1005 .{ .cp = 0x2C95, .category = .pvalid },
1006 .{ .cp = 0x2C96, .category = .disallowed },
1007 .{ .cp = 0x2C97, .category = .pvalid },
1008 .{ .cp = 0x2C98, .category = .disallowed },
1009 .{ .cp = 0x2C99, .category = .pvalid },
1010 .{ .cp = 0x2C9A, .category = .disallowed },
1011 .{ .cp = 0x2C9B, .category = .pvalid },
1012 .{ .cp = 0x2C9C, .category = .disallowed },
1013 .{ .cp = 0x2C9D, .category = .pvalid },
1014 .{ .cp = 0x2C9E, .category = .disallowed },
1015 .{ .cp = 0x2C9F, .category = .pvalid },
1016 .{ .cp = 0x2CA0, .category = .disallowed },
1017 .{ .cp = 0x2CA1, .category = .pvalid },
1018 .{ .cp = 0x2CA2, .category = .disallowed },
1019 .{ .cp = 0x2CA3, .category = .pvalid },
1020 .{ .cp = 0x2CA4, .category = .disallowed },
1021 .{ .cp = 0x2CA5, .category = .pvalid },
1022 .{ .cp = 0x2CA6, .category = .disallowed },
1023 .{ .cp = 0x2CA7, .category = .pvalid },
1024 .{ .cp = 0x2CA8, .category = .disallowed },
1025 .{ .cp = 0x2CA9, .category = .pvalid },
1026 .{ .cp = 0x2CAA, .category = .disallowed },
1027 .{ .cp = 0x2CAB, .category = .pvalid },
1028 .{ .cp = 0x2CAC, .category = .disallowed },
1029 .{ .cp = 0x2CAD, .category = .pvalid },
1030 .{ .cp = 0x2CAE, .category = .disallowed },
1031 .{ .cp = 0x2CAF, .category = .pvalid },
1032 .{ .cp = 0x2CB0, .category = .disallowed },
1033 .{ .cp = 0x2CB1, .category = .pvalid },
1034 .{ .cp = 0x2CB2, .category = .disallowed },
1035 .{ .cp = 0x2CB3, .category = .pvalid },
1036 .{ .cp = 0x2CB4, .category = .disallowed },
1037 .{ .cp = 0x2CB5, .category = .pvalid },
1038 .{ .cp = 0x2CB6, .category = .disallowed },
1039 .{ .cp = 0x2CB7, .category = .pvalid },
1040 .{ .cp = 0x2CB8, .category = .disallowed },
1041 .{ .cp = 0x2CB9, .category = .pvalid },
1042 .{ .cp = 0x2CBA, .category = .disallowed },
1043 .{ .cp = 0x2CBB, .category = .pvalid },
1044 .{ .cp = 0x2CBC, .category = .disallowed },
1045 .{ .cp = 0x2CBD, .category = .pvalid },
1046 .{ .cp = 0x2CBE, .category = .disallowed },
1047 .{ .cp = 0x2CBF, .category = .pvalid },
1048 .{ .cp = 0x2CC0, .category = .disallowed },
1049 .{ .cp = 0x2CC1, .category = .pvalid },
1050 .{ .cp = 0x2CC2, .category = .disallowed },
1051 .{ .cp = 0x2CC3, .category = .pvalid },
1052 .{ .cp = 0x2CC4, .category = .disallowed },
1053 .{ .cp = 0x2CC5, .category = .pvalid },
1054 .{ .cp = 0x2CC6, .category = .disallowed },
1055 .{ .cp = 0x2CC7, .category = .pvalid },
1056 .{ .cp = 0x2CC8, .category = .disallowed },
1057 .{ .cp = 0x2CC9, .category = .pvalid },
1058 .{ .cp = 0x2CCA, .category = .disallowed },
1059 .{ .cp = 0x2CCB, .category = .pvalid },
1060 .{ .cp = 0x2CCC, .category = .disallowed },
1061 .{ .cp = 0x2CCD, .category = .pvalid },
1062 .{ .cp = 0x2CCE, .category = .disallowed },
1063 .{ .cp = 0x2CCF, .category = .pvalid },
1064 .{ .cp = 0x2CD0, .category = .disallowed },
1065 .{ .cp = 0x2CD1, .category = .pvalid },
1066 .{ .cp = 0x2CD2, .category = .disallowed },
1067 .{ .cp = 0x2CD3, .category = .pvalid },
1068 .{ .cp = 0x2CD4, .category = .disallowed },
1069 .{ .cp = 0x2CD5, .category = .pvalid },
1070 .{ .cp = 0x2CD6, .category = .disallowed },
1071 .{ .cp = 0x2CD7, .category = .pvalid },
1072 .{ .cp = 0x2CD8, .category = .disallowed },
1073 .{ .cp = 0x2CD9, .category = .pvalid },
1074 .{ .cp = 0x2CDA, .category = .disallowed },
1075 .{ .cp = 0x2CDB, .category = .pvalid },
1076 .{ .cp = 0x2CDC, .category = .disallowed },
1077 .{ .cp = 0x2CDD, .category = .pvalid },
1078 .{ .cp = 0x2CDE, .category = .disallowed },
1079 .{ .cp = 0x2CDF, .category = .pvalid },
1080 .{ .cp = 0x2CE0, .category = .disallowed },
1081 .{ .cp = 0x2CE1, .category = .pvalid },
1082 .{ .cp = 0x2CE2, .category = .disallowed },
1083 .{ .cp = 0x2CEC, .category = .pvalid },
1084 .{ .cp = 0x2CED, .category = .disallowed },
1085 .{ .cp = 0x2CF2, .category = .disallowed },
1086 .{ .cp = 0x2CF3, .category = .pvalid },
1087 .{ .cp = 0x2D26, .category = .unassigned },
1088 .{ .cp = 0x2D27, .category = .pvalid },
1089 .{ .cp = 0x2D2D, .category = .pvalid },
1090 .{ .cp = 0x2DA7, .category = .unassigned },
1091 .{ .cp = 0x2DAF, .category = .unassigned },
1092 .{ .cp = 0x2DB7, .category = .unassigned },
1093 .{ .cp = 0x2DBF, .category = .unassigned },
1094 .{ .cp = 0x2DC7, .category = .unassigned },
1095 .{ .cp = 0x2DCF, .category = .unassigned },
1096 .{ .cp = 0x2DD7, .category = .unassigned },
1097 .{ .cp = 0x2DDF, .category = .unassigned },
1098 .{ .cp = 0x2E2F, .category = .pvalid },
1099 .{ .cp = 0x2E9A, .category = .unassigned },
1100 .{ .cp = 0x303C, .category = .pvalid },
1101 .{ .cp = 0x3040, .category = .unassigned },
1102 .{ .cp = 0x30FB, .category = .contexto },
1103 .{ .cp = 0x30FF, .category = .disallowed },
1104 .{ .cp = 0x3130, .category = .unassigned },
1105 .{ .cp = 0x318F, .category = .unassigned },
1106 .{ .cp = 0x31EF, .category = .disallowed },
1107 .{ .cp = 0x321F, .category = .unassigned },
1108 .{ .cp = 0xA640, .category = .disallowed },
1109 .{ .cp = 0xA641, .category = .pvalid },
1110 .{ .cp = 0xA642, .category = .disallowed },
1111 .{ .cp = 0xA643, .category = .pvalid },
1112 .{ .cp = 0xA644, .category = .disallowed },
1113 .{ .cp = 0xA645, .category = .pvalid },
1114 .{ .cp = 0xA646, .category = .disallowed },
1115 .{ .cp = 0xA647, .category = .pvalid },
1116 .{ .cp = 0xA648, .category = .disallowed },
1117 .{ .cp = 0xA649, .category = .pvalid },
1118 .{ .cp = 0xA64A, .category = .disallowed },
1119 .{ .cp = 0xA64B, .category = .pvalid },
1120 .{ .cp = 0xA64C, .category = .disallowed },
1121 .{ .cp = 0xA64D, .category = .pvalid },
1122 .{ .cp = 0xA64E, .category = .disallowed },
1123 .{ .cp = 0xA64F, .category = .pvalid },
1124 .{ .cp = 0xA650, .category = .disallowed },
1125 .{ .cp = 0xA651, .category = .pvalid },
1126 .{ .cp = 0xA652, .category = .disallowed },
1127 .{ .cp = 0xA653, .category = .pvalid },
1128 .{ .cp = 0xA654, .category = .disallowed },
1129 .{ .cp = 0xA655, .category = .pvalid },
1130 .{ .cp = 0xA656, .category = .disallowed },
1131 .{ .cp = 0xA657, .category = .pvalid },
1132 .{ .cp = 0xA658, .category = .disallowed },
1133 .{ .cp = 0xA659, .category = .pvalid },
1134 .{ .cp = 0xA65A, .category = .disallowed },
1135 .{ .cp = 0xA65B, .category = .pvalid },
1136 .{ .cp = 0xA65C, .category = .disallowed },
1137 .{ .cp = 0xA65D, .category = .pvalid },
1138 .{ .cp = 0xA65E, .category = .disallowed },
1139 .{ .cp = 0xA65F, .category = .pvalid },
1140 .{ .cp = 0xA660, .category = .disallowed },
1141 .{ .cp = 0xA661, .category = .pvalid },
1142 .{ .cp = 0xA662, .category = .disallowed },
1143 .{ .cp = 0xA663, .category = .pvalid },
1144 .{ .cp = 0xA664, .category = .disallowed },
1145 .{ .cp = 0xA665, .category = .pvalid },
1146 .{ .cp = 0xA666, .category = .disallowed },
1147 .{ .cp = 0xA667, .category = .pvalid },
1148 .{ .cp = 0xA668, .category = .disallowed },
1149 .{ .cp = 0xA669, .category = .pvalid },
1150 .{ .cp = 0xA66A, .category = .disallowed },
1151 .{ .cp = 0xA66B, .category = .pvalid },
1152 .{ .cp = 0xA66C, .category = .disallowed },
1153 .{ .cp = 0xA67E, .category = .disallowed },
1154 .{ .cp = 0xA67F, .category = .pvalid },
1155 .{ .cp = 0xA680, .category = .disallowed },
1156 .{ .cp = 0xA681, .category = .pvalid },
1157 .{ .cp = 0xA682, .category = .disallowed },
1158 .{ .cp = 0xA683, .category = .pvalid },
1159 .{ .cp = 0xA684, .category = .disallowed },
1160 .{ .cp = 0xA685, .category = .pvalid },
1161 .{ .cp = 0xA686, .category = .disallowed },
1162 .{ .cp = 0xA687, .category = .pvalid },
1163 .{ .cp = 0xA688, .category = .disallowed },
1164 .{ .cp = 0xA689, .category = .pvalid },
1165 .{ .cp = 0xA68A, .category = .disallowed },
1166 .{ .cp = 0xA68B, .category = .pvalid },
1167 .{ .cp = 0xA68C, .category = .disallowed },
1168 .{ .cp = 0xA68D, .category = .pvalid },
1169 .{ .cp = 0xA68E, .category = .disallowed },
1170 .{ .cp = 0xA68F, .category = .pvalid },
1171 .{ .cp = 0xA690, .category = .disallowed },
1172 .{ .cp = 0xA691, .category = .pvalid },
1173 .{ .cp = 0xA692, .category = .disallowed },
1174 .{ .cp = 0xA693, .category = .pvalid },
1175 .{ .cp = 0xA694, .category = .disallowed },
1176 .{ .cp = 0xA695, .category = .pvalid },
1177 .{ .cp = 0xA696, .category = .disallowed },
1178 .{ .cp = 0xA697, .category = .pvalid },
1179 .{ .cp = 0xA698, .category = .disallowed },
1180 .{ .cp = 0xA699, .category = .pvalid },
1181 .{ .cp = 0xA69A, .category = .disallowed },
1182 .{ .cp = 0xA69B, .category = .pvalid },
1183 .{ .cp = 0xA723, .category = .pvalid },
1184 .{ .cp = 0xA724, .category = .disallowed },
1185 .{ .cp = 0xA725, .category = .pvalid },
1186 .{ .cp = 0xA726, .category = .disallowed },
1187 .{ .cp = 0xA727, .category = .pvalid },
1188 .{ .cp = 0xA728, .category = .disallowed },
1189 .{ .cp = 0xA729, .category = .pvalid },
1190 .{ .cp = 0xA72A, .category = .disallowed },
1191 .{ .cp = 0xA72B, .category = .pvalid },
1192 .{ .cp = 0xA72C, .category = .disallowed },
1193 .{ .cp = 0xA72D, .category = .pvalid },
1194 .{ .cp = 0xA72E, .category = .disallowed },
1195 .{ .cp = 0xA732, .category = .disallowed },
1196 .{ .cp = 0xA733, .category = .pvalid },
1197 .{ .cp = 0xA734, .category = .disallowed },
1198 .{ .cp = 0xA735, .category = .pvalid },
1199 .{ .cp = 0xA736, .category = .disallowed },
1200 .{ .cp = 0xA737, .category = .pvalid },
1201 .{ .cp = 0xA738, .category = .disallowed },
1202 .{ .cp = 0xA739, .category = .pvalid },
1203 .{ .cp = 0xA73A, .category = .disallowed },
1204 .{ .cp = 0xA73B, .category = .pvalid },
1205 .{ .cp = 0xA73C, .category = .disallowed },
1206 .{ .cp = 0xA73D, .category = .pvalid },
1207 .{ .cp = 0xA73E, .category = .disallowed },
1208 .{ .cp = 0xA73F, .category = .pvalid },
1209 .{ .cp = 0xA740, .category = .disallowed },
1210 .{ .cp = 0xA741, .category = .pvalid },
1211 .{ .cp = 0xA742, .category = .disallowed },
1212 .{ .cp = 0xA743, .category = .pvalid },
1213 .{ .cp = 0xA744, .category = .disallowed },
1214 .{ .cp = 0xA745, .category = .pvalid },
1215 .{ .cp = 0xA746, .category = .disallowed },
1216 .{ .cp = 0xA747, .category = .pvalid },
1217 .{ .cp = 0xA748, .category = .disallowed },
1218 .{ .cp = 0xA749, .category = .pvalid },
1219 .{ .cp = 0xA74A, .category = .disallowed },
1220 .{ .cp = 0xA74B, .category = .pvalid },
1221 .{ .cp = 0xA74C, .category = .disallowed },
1222 .{ .cp = 0xA74D, .category = .pvalid },
1223 .{ .cp = 0xA74E, .category = .disallowed },
1224 .{ .cp = 0xA74F, .category = .pvalid },
1225 .{ .cp = 0xA750, .category = .disallowed },
1226 .{ .cp = 0xA751, .category = .pvalid },
1227 .{ .cp = 0xA752, .category = .disallowed },
1228 .{ .cp = 0xA753, .category = .pvalid },
1229 .{ .cp = 0xA754, .category = .disallowed },
1230 .{ .cp = 0xA755, .category = .pvalid },
1231 .{ .cp = 0xA756, .category = .disallowed },
1232 .{ .cp = 0xA757, .category = .pvalid },
1233 .{ .cp = 0xA758, .category = .disallowed },
1234 .{ .cp = 0xA759, .category = .pvalid },
1235 .{ .cp = 0xA75A, .category = .disallowed },
1236 .{ .cp = 0xA75B, .category = .pvalid },
1237 .{ .cp = 0xA75C, .category = .disallowed },
1238 .{ .cp = 0xA75D, .category = .pvalid },
1239 .{ .cp = 0xA75E, .category = .disallowed },
1240 .{ .cp = 0xA75F, .category = .pvalid },
1241 .{ .cp = 0xA760, .category = .disallowed },
1242 .{ .cp = 0xA761, .category = .pvalid },
1243 .{ .cp = 0xA762, .category = .disallowed },
1244 .{ .cp = 0xA763, .category = .pvalid },
1245 .{ .cp = 0xA764, .category = .disallowed },
1246 .{ .cp = 0xA765, .category = .pvalid },
1247 .{ .cp = 0xA766, .category = .disallowed },
1248 .{ .cp = 0xA767, .category = .pvalid },
1249 .{ .cp = 0xA768, .category = .disallowed },
1250 .{ .cp = 0xA769, .category = .pvalid },
1251 .{ .cp = 0xA76A, .category = .disallowed },
1252 .{ .cp = 0xA76B, .category = .pvalid },
1253 .{ .cp = 0xA76C, .category = .disallowed },
1254 .{ .cp = 0xA76D, .category = .pvalid },
1255 .{ .cp = 0xA76E, .category = .disallowed },
1256 .{ .cp = 0xA76F, .category = .pvalid },
1257 .{ .cp = 0xA770, .category = .disallowed },
1258 .{ .cp = 0xA779, .category = .disallowed },
1259 .{ .cp = 0xA77A, .category = .pvalid },
1260 .{ .cp = 0xA77B, .category = .disallowed },
1261 .{ .cp = 0xA77C, .category = .pvalid },
1262 .{ .cp = 0xA77F, .category = .pvalid },
1263 .{ .cp = 0xA780, .category = .disallowed },
1264 .{ .cp = 0xA781, .category = .pvalid },
1265 .{ .cp = 0xA782, .category = .disallowed },
1266 .{ .cp = 0xA783, .category = .pvalid },
1267 .{ .cp = 0xA784, .category = .disallowed },
1268 .{ .cp = 0xA785, .category = .pvalid },
1269 .{ .cp = 0xA786, .category = .disallowed },
1270 .{ .cp = 0xA78C, .category = .pvalid },
1271 .{ .cp = 0xA78D, .category = .disallowed },
1272 .{ .cp = 0xA790, .category = .disallowed },
1273 .{ .cp = 0xA791, .category = .pvalid },
1274 .{ .cp = 0xA792, .category = .disallowed },
1275 .{ .cp = 0xA796, .category = .disallowed },
1276 .{ .cp = 0xA797, .category = .pvalid },
1277 .{ .cp = 0xA798, .category = .disallowed },
1278 .{ .cp = 0xA799, .category = .pvalid },
1279 .{ .cp = 0xA79A, .category = .disallowed },
1280 .{ .cp = 0xA79B, .category = .pvalid },
1281 .{ .cp = 0xA79C, .category = .disallowed },
1282 .{ .cp = 0xA79D, .category = .pvalid },
1283 .{ .cp = 0xA79E, .category = .disallowed },
1284 .{ .cp = 0xA79F, .category = .pvalid },
1285 .{ .cp = 0xA7A0, .category = .disallowed },
1286 .{ .cp = 0xA7A1, .category = .pvalid },
1287 .{ .cp = 0xA7A2, .category = .disallowed },
1288 .{ .cp = 0xA7A3, .category = .pvalid },
1289 .{ .cp = 0xA7A4, .category = .disallowed },
1290 .{ .cp = 0xA7A5, .category = .pvalid },
1291 .{ .cp = 0xA7A6, .category = .disallowed },
1292 .{ .cp = 0xA7A7, .category = .pvalid },
1293 .{ .cp = 0xA7A8, .category = .disallowed },
1294 .{ .cp = 0xA7A9, .category = .pvalid },
1295 .{ .cp = 0xA7AF, .category = .pvalid },
1296 .{ .cp = 0xA7B5, .category = .pvalid },
1297 .{ .cp = 0xA7B6, .category = .disallowed },
1298 .{ .cp = 0xA7B7, .category = .pvalid },
1299 .{ .cp = 0xA7B8, .category = .disallowed },
1300 .{ .cp = 0xA7B9, .category = .pvalid },
1301 .{ .cp = 0xA7BA, .category = .disallowed },
1302 .{ .cp = 0xA7BB, .category = .pvalid },
1303 .{ .cp = 0xA7BC, .category = .disallowed },
1304 .{ .cp = 0xA7BD, .category = .pvalid },
1305 .{ .cp = 0xA7BE, .category = .disallowed },
1306 .{ .cp = 0xA7BF, .category = .pvalid },
1307 .{ .cp = 0xA7C0, .category = .disallowed },
1308 .{ .cp = 0xA7C1, .category = .pvalid },
1309 .{ .cp = 0xA7C2, .category = .disallowed },
1310 .{ .cp = 0xA7C3, .category = .pvalid },
1311 .{ .cp = 0xA7C8, .category = .pvalid },
1312 .{ .cp = 0xA7C9, .category = .disallowed },
1313 .{ .cp = 0xA7CA, .category = .pvalid },
1314 .{ .cp = 0xA7CD, .category = .pvalid },
1315 .{ .cp = 0xA7CE, .category = .disallowed },
1316 .{ .cp = 0xA7CF, .category = .pvalid },
1317 .{ .cp = 0xA7D0, .category = .disallowed },
1318 .{ .cp = 0xA7D1, .category = .pvalid },
1319 .{ .cp = 0xA7D2, .category = .disallowed },
1320 .{ .cp = 0xA7D3, .category = .pvalid },
1321 .{ .cp = 0xA7D4, .category = .disallowed },
1322 .{ .cp = 0xA7D5, .category = .pvalid },
1323 .{ .cp = 0xA7D6, .category = .disallowed },
1324 .{ .cp = 0xA7D7, .category = .pvalid },
1325 .{ .cp = 0xA7D8, .category = .disallowed },
1326 .{ .cp = 0xA7D9, .category = .pvalid },
1327 .{ .cp = 0xA7DA, .category = .disallowed },
1328 .{ .cp = 0xA7DB, .category = .pvalid },
1329 .{ .cp = 0xA7DC, .category = .disallowed },
1330 .{ .cp = 0xA82C, .category = .pvalid },
1331 .{ .cp = 0xA8FB, .category = .pvalid },
1332 .{ .cp = 0xA8FC, .category = .disallowed },
1333 .{ .cp = 0xA9CE, .category = .unassigned },
1334 .{ .cp = 0xA9FF, .category = .unassigned },
1335 .{ .cp = 0xAB27, .category = .unassigned },
1336 .{ .cp = 0xAB2F, .category = .unassigned },
1337 .{ .cp = 0xABEB, .category = .disallowed },
1338 .{ .cp = 0xFA10, .category = .disallowed },
1339 .{ .cp = 0xFA11, .category = .pvalid },
1340 .{ .cp = 0xFA12, .category = .disallowed },
1341 .{ .cp = 0xFA1F, .category = .pvalid },
1342 .{ .cp = 0xFA20, .category = .disallowed },
1343 .{ .cp = 0xFA21, .category = .pvalid },
1344 .{ .cp = 0xFA22, .category = .disallowed },
1345 .{ .cp = 0xFB1D, .category = .disallowed },
1346 .{ .cp = 0xFB1E, .category = .pvalid },
1347 .{ .cp = 0xFB37, .category = .unassigned },
1348 .{ .cp = 0xFB3D, .category = .unassigned },
1349 .{ .cp = 0xFB3E, .category = .disallowed },
1350 .{ .cp = 0xFB3F, .category = .unassigned },
1351 .{ .cp = 0xFB42, .category = .unassigned },
1352 .{ .cp = 0xFB45, .category = .unassigned },
1353 .{ .cp = 0xFE53, .category = .unassigned },
1354 .{ .cp = 0xFE67, .category = .unassigned },
1355 .{ .cp = 0xFE73, .category = .pvalid },
1356 .{ .cp = 0xFE74, .category = .disallowed },
1357 .{ .cp = 0xFE75, .category = .unassigned },
1358 .{ .cp = 0xFEFF, .category = .disallowed },
1359 .{ .cp = 0xFF00, .category = .unassigned },
1360 .{ .cp = 0xFFE7, .category = .unassigned },
1361 .{ .cp = 0x1000C, .category = .unassigned },
1362 .{ .cp = 0x10027, .category = .unassigned },
1363 .{ .cp = 0x1003B, .category = .unassigned },
1364 .{ .cp = 0x1003E, .category = .unassigned },
1365 .{ .cp = 0x1018F, .category = .unassigned },
1366 .{ .cp = 0x101A0, .category = .disallowed },
1367 .{ .cp = 0x101FD, .category = .pvalid },
1368 .{ .cp = 0x102E0, .category = .pvalid },
1369 .{ .cp = 0x10341, .category = .disallowed },
1370 .{ .cp = 0x1034A, .category = .disallowed },
1371 .{ .cp = 0x1039E, .category = .unassigned },
1372 .{ .cp = 0x1039F, .category = .disallowed },
1373 .{ .cp = 0x1057B, .category = .unassigned },
1374 .{ .cp = 0x1058B, .category = .unassigned },
1375 .{ .cp = 0x10593, .category = .unassigned },
1376 .{ .cp = 0x10596, .category = .unassigned },
1377 .{ .cp = 0x105A2, .category = .unassigned },
1378 .{ .cp = 0x105B2, .category = .unassigned },
1379 .{ .cp = 0x105BA, .category = .unassigned },
1380 .{ .cp = 0x10780, .category = .pvalid },
1381 .{ .cp = 0x10786, .category = .unassigned },
1382 .{ .cp = 0x107B1, .category = .unassigned },
1383 .{ .cp = 0x10808, .category = .pvalid },
1384 .{ .cp = 0x10809, .category = .unassigned },
1385 .{ .cp = 0x10836, .category = .unassigned },
1386 .{ .cp = 0x1083C, .category = .pvalid },
1387 .{ .cp = 0x10856, .category = .unassigned },
1388 .{ .cp = 0x108F3, .category = .unassigned },
1389 .{ .cp = 0x1091F, .category = .disallowed },
1390 .{ .cp = 0x1093F, .category = .disallowed },
1391 .{ .cp = 0x10A04, .category = .unassigned },
1392 .{ .cp = 0x10A14, .category = .unassigned },
1393 .{ .cp = 0x10A18, .category = .unassigned },
1394 .{ .cp = 0x10A3F, .category = .pvalid },
1395 .{ .cp = 0x10AC8, .category = .disallowed },
1396 .{ .cp = 0x10D6E, .category = .disallowed },
1397 .{ .cp = 0x10E7F, .category = .unassigned },
1398 .{ .cp = 0x10EAA, .category = .unassigned },
1399 .{ .cp = 0x10EAD, .category = .disallowed },
1400 .{ .cp = 0x10F27, .category = .pvalid },
1401 .{ .cp = 0x110C2, .category = .pvalid },
1402 .{ .cp = 0x110CD, .category = .disallowed },
1403 .{ .cp = 0x11135, .category = .unassigned },
1404 .{ .cp = 0x11176, .category = .pvalid },
1405 .{ .cp = 0x111CD, .category = .disallowed },
1406 .{ .cp = 0x111DB, .category = .disallowed },
1407 .{ .cp = 0x111DC, .category = .pvalid },
1408 .{ .cp = 0x111E0, .category = .unassigned },
1409 .{ .cp = 0x11212, .category = .unassigned },
1410 .{ .cp = 0x11287, .category = .unassigned },
1411 .{ .cp = 0x11288, .category = .pvalid },
1412 .{ .cp = 0x11289, .category = .unassigned },
1413 .{ .cp = 0x1128E, .category = .unassigned },
1414 .{ .cp = 0x1129E, .category = .unassigned },
1415 .{ .cp = 0x112A9, .category = .disallowed },
1416 .{ .cp = 0x11304, .category = .unassigned },
1417 .{ .cp = 0x11329, .category = .unassigned },
1418 .{ .cp = 0x11331, .category = .unassigned },
1419 .{ .cp = 0x11334, .category = .unassigned },
1420 .{ .cp = 0x1133A, .category = .unassigned },
1421 .{ .cp = 0x11350, .category = .pvalid },
1422 .{ .cp = 0x11357, .category = .pvalid },
1423 .{ .cp = 0x1138A, .category = .unassigned },
1424 .{ .cp = 0x1138B, .category = .pvalid },
1425 .{ .cp = 0x1138E, .category = .pvalid },
1426 .{ .cp = 0x1138F, .category = .unassigned },
1427 .{ .cp = 0x113B6, .category = .unassigned },
1428 .{ .cp = 0x113C1, .category = .unassigned },
1429 .{ .cp = 0x113C2, .category = .pvalid },
1430 .{ .cp = 0x113C5, .category = .pvalid },
1431 .{ .cp = 0x113C6, .category = .unassigned },
1432 .{ .cp = 0x113CB, .category = .unassigned },
1433 .{ .cp = 0x113D6, .category = .unassigned },
1434 .{ .cp = 0x1145C, .category = .unassigned },
1435 .{ .cp = 0x1145D, .category = .disallowed },
1436 .{ .cp = 0x114C6, .category = .disallowed },
1437 .{ .cp = 0x114C7, .category = .pvalid },
1438 .{ .cp = 0x11644, .category = .pvalid },
1439 .{ .cp = 0x116B9, .category = .disallowed },
1440 .{ .cp = 0x1183B, .category = .disallowed },
1441 .{ .cp = 0x11909, .category = .pvalid },
1442 .{ .cp = 0x11914, .category = .unassigned },
1443 .{ .cp = 0x11917, .category = .unassigned },
1444 .{ .cp = 0x11936, .category = .unassigned },
1445 .{ .cp = 0x119E2, .category = .disallowed },
1446 .{ .cp = 0x11A47, .category = .pvalid },
1447 .{ .cp = 0x11A9D, .category = .pvalid },
1448 .{ .cp = 0x11BE1, .category = .disallowed },
1449 .{ .cp = 0x11C09, .category = .unassigned },
1450 .{ .cp = 0x11C37, .category = .unassigned },
1451 .{ .cp = 0x11CA8, .category = .unassigned },
1452 .{ .cp = 0x11D07, .category = .unassigned },
1453 .{ .cp = 0x11D0A, .category = .unassigned },
1454 .{ .cp = 0x11D3A, .category = .pvalid },
1455 .{ .cp = 0x11D3B, .category = .unassigned },
1456 .{ .cp = 0x11D3E, .category = .unassigned },
1457 .{ .cp = 0x11D66, .category = .unassigned },
1458 .{ .cp = 0x11D69, .category = .unassigned },
1459 .{ .cp = 0x11D8F, .category = .unassigned },
1460 .{ .cp = 0x11D92, .category = .unassigned },
1461 .{ .cp = 0x11F11, .category = .unassigned },
1462 .{ .cp = 0x11FB0, .category = .pvalid },
1463 .{ .cp = 0x11FFF, .category = .disallowed },
1464 .{ .cp = 0x1246F, .category = .unassigned },
1465 .{ .cp = 0x16A5F, .category = .unassigned },
1466 .{ .cp = 0x16ABF, .category = .unassigned },
1467 .{ .cp = 0x16AF5, .category = .disallowed },
1468 .{ .cp = 0x16B5A, .category = .unassigned },
1469 .{ .cp = 0x16B62, .category = .unassigned },
1470 .{ .cp = 0x16FE2, .category = .disallowed },
1471 .{ .cp = 0x1AFF4, .category = .unassigned },
1472 .{ .cp = 0x1AFFC, .category = .unassigned },
1473 .{ .cp = 0x1AFFF, .category = .unassigned },
1474 .{ .cp = 0x1B132, .category = .pvalid },
1475 .{ .cp = 0x1B155, .category = .pvalid },
1476 .{ .cp = 0x1BC9C, .category = .disallowed },
1477 .{ .cp = 0x1D455, .category = .unassigned },
1478 .{ .cp = 0x1D49D, .category = .unassigned },
1479 .{ .cp = 0x1D4A2, .category = .disallowed },
1480 .{ .cp = 0x1D4AD, .category = .unassigned },
1481 .{ .cp = 0x1D4BA, .category = .unassigned },
1482 .{ .cp = 0x1D4BB, .category = .disallowed },
1483 .{ .cp = 0x1D4BC, .category = .unassigned },
1484 .{ .cp = 0x1D4C4, .category = .unassigned },
1485 .{ .cp = 0x1D506, .category = .unassigned },
1486 .{ .cp = 0x1D515, .category = .unassigned },
1487 .{ .cp = 0x1D51D, .category = .unassigned },
1488 .{ .cp = 0x1D53A, .category = .unassigned },
1489 .{ .cp = 0x1D53F, .category = .unassigned },
1490 .{ .cp = 0x1D545, .category = .unassigned },
1491 .{ .cp = 0x1D546, .category = .disallowed },
1492 .{ .cp = 0x1D551, .category = .unassigned },
1493 .{ .cp = 0x1DA75, .category = .pvalid },
1494 .{ .cp = 0x1DA84, .category = .pvalid },
1495 .{ .cp = 0x1DAA0, .category = .unassigned },
1496 .{ .cp = 0x1E007, .category = .unassigned },
1497 .{ .cp = 0x1E022, .category = .unassigned },
1498 .{ .cp = 0x1E025, .category = .unassigned },
1499 .{ .cp = 0x1E08F, .category = .pvalid },
1500 .{ .cp = 0x1E14E, .category = .pvalid },
1501 .{ .cp = 0x1E14F, .category = .disallowed },
1502 .{ .cp = 0x1E2FF, .category = .disallowed },
1503 .{ .cp = 0x1E5FF, .category = .disallowed },
1504 .{ .cp = 0x1E6DF, .category = .unassigned },
1505 .{ .cp = 0x1E7E7, .category = .unassigned },
1506 .{ .cp = 0x1E7EC, .category = .unassigned },
1507 .{ .cp = 0x1E7EF, .category = .unassigned },
1508 .{ .cp = 0x1E7FF, .category = .unassigned },
1509 .{ .cp = 0x1EE04, .category = .unassigned },
1510 .{ .cp = 0x1EE20, .category = .unassigned },
1511 .{ .cp = 0x1EE23, .category = .unassigned },
1512 .{ .cp = 0x1EE24, .category = .disallowed },
1513 .{ .cp = 0x1EE27, .category = .disallowed },
1514 .{ .cp = 0x1EE28, .category = .unassigned },
1515 .{ .cp = 0x1EE33, .category = .unassigned },
1516 .{ .cp = 0x1EE38, .category = .unassigned },
1517 .{ .cp = 0x1EE39, .category = .disallowed },
1518 .{ .cp = 0x1EE3A, .category = .unassigned },
1519 .{ .cp = 0x1EE3B, .category = .disallowed },
1520 .{ .cp = 0x1EE42, .category = .disallowed },
1521 .{ .cp = 0x1EE47, .category = .disallowed },
1522 .{ .cp = 0x1EE48, .category = .unassigned },
1523 .{ .cp = 0x1EE49, .category = .disallowed },
1524 .{ .cp = 0x1EE4A, .category = .unassigned },
1525 .{ .cp = 0x1EE4B, .category = .disallowed },
1526 .{ .cp = 0x1EE4C, .category = .unassigned },
1527 .{ .cp = 0x1EE50, .category = .unassigned },
1528 .{ .cp = 0x1EE53, .category = .unassigned },
1529 .{ .cp = 0x1EE54, .category = .disallowed },
1530 .{ .cp = 0x1EE57, .category = .disallowed },
1531 .{ .cp = 0x1EE58, .category = .unassigned },
1532 .{ .cp = 0x1EE59, .category = .disallowed },
1533 .{ .cp = 0x1EE5A, .category = .unassigned },
1534 .{ .cp = 0x1EE5B, .category = .disallowed },
1535 .{ .cp = 0x1EE5C, .category = .unassigned },
1536 .{ .cp = 0x1EE5D, .category = .disallowed },
1537 .{ .cp = 0x1EE5E, .category = .unassigned },
1538 .{ .cp = 0x1EE5F, .category = .disallowed },
1539 .{ .cp = 0x1EE60, .category = .unassigned },
1540 .{ .cp = 0x1EE63, .category = .unassigned },
1541 .{ .cp = 0x1EE64, .category = .disallowed },
1542 .{ .cp = 0x1EE6B, .category = .unassigned },
1543 .{ .cp = 0x1EE73, .category = .unassigned },
1544 .{ .cp = 0x1EE78, .category = .unassigned },
1545 .{ .cp = 0x1EE7D, .category = .unassigned },
1546 .{ .cp = 0x1EE7E, .category = .disallowed },
1547 .{ .cp = 0x1EE7F, .category = .unassigned },
1548 .{ .cp = 0x1EE8A, .category = .unassigned },
1549 .{ .cp = 0x1EEA4, .category = .unassigned },
1550 .{ .cp = 0x1EEAA, .category = .unassigned },
1551 .{ .cp = 0x1F0C0, .category = .unassigned },
1552 .{ .cp = 0x1F0D0, .category = .unassigned },
1553 .{ .cp = 0x1F7F0, .category = .disallowed },
1554 .{ .cp = 0x1FAC7, .category = .unassigned },
1555 .{ .cp = 0x1FAC8, .category = .disallowed },
1556 .{ .cp = 0x1FB93, .category = .unassigned },
1557 .{ .cp = 0xE0000, .category = .unassigned },
1558 .{ .cp = 0xE0001, .category = .disallowed },
1559};
1560
1561pub const data_range = [_]PropRange{
1562 .{ .from = 0x0000, .to = 0x002C, .category = .disallowed },
1563 .{ .from = 0x002E, .to = 0x002F, .category = .disallowed },
1564 .{ .from = 0x0030, .to = 0x0039, .category = .pvalid },
1565 .{ .from = 0x003A, .to = 0x0060, .category = .disallowed },
1566 .{ .from = 0x0061, .to = 0x007A, .category = .pvalid },
1567 .{ .from = 0x007B, .to = 0x00B6, .category = .disallowed },
1568 .{ .from = 0x00B8, .to = 0x00DE, .category = .disallowed },
1569 .{ .from = 0x00DF, .to = 0x00F6, .category = .pvalid },
1570 .{ .from = 0x00F8, .to = 0x00FF, .category = .pvalid },
1571 .{ .from = 0x0132, .to = 0x0134, .category = .disallowed },
1572 .{ .from = 0x0137, .to = 0x0138, .category = .pvalid },
1573 .{ .from = 0x013F, .to = 0x0141, .category = .disallowed },
1574 .{ .from = 0x0149, .to = 0x014A, .category = .disallowed },
1575 .{ .from = 0x0178, .to = 0x0179, .category = .disallowed },
1576 .{ .from = 0x0181, .to = 0x0182, .category = .disallowed },
1577 .{ .from = 0x0186, .to = 0x0187, .category = .disallowed },
1578 .{ .from = 0x0189, .to = 0x018B, .category = .disallowed },
1579 .{ .from = 0x018C, .to = 0x018D, .category = .pvalid },
1580 .{ .from = 0x018E, .to = 0x0191, .category = .disallowed },
1581 .{ .from = 0x0193, .to = 0x0194, .category = .disallowed },
1582 .{ .from = 0x0196, .to = 0x0198, .category = .disallowed },
1583 .{ .from = 0x0199, .to = 0x019B, .category = .pvalid },
1584 .{ .from = 0x019C, .to = 0x019D, .category = .disallowed },
1585 .{ .from = 0x019F, .to = 0x01A0, .category = .disallowed },
1586 .{ .from = 0x01A6, .to = 0x01A7, .category = .disallowed },
1587 .{ .from = 0x01AA, .to = 0x01AB, .category = .pvalid },
1588 .{ .from = 0x01AE, .to = 0x01AF, .category = .disallowed },
1589 .{ .from = 0x01B1, .to = 0x01B3, .category = .disallowed },
1590 .{ .from = 0x01B7, .to = 0x01B8, .category = .disallowed },
1591 .{ .from = 0x01B9, .to = 0x01BB, .category = .pvalid },
1592 .{ .from = 0x01BD, .to = 0x01C3, .category = .pvalid },
1593 .{ .from = 0x01C4, .to = 0x01CD, .category = .disallowed },
1594 .{ .from = 0x01DC, .to = 0x01DD, .category = .pvalid },
1595 .{ .from = 0x01EF, .to = 0x01F0, .category = .pvalid },
1596 .{ .from = 0x01F1, .to = 0x01F4, .category = .disallowed },
1597 .{ .from = 0x01F6, .to = 0x01F8, .category = .disallowed },
1598 .{ .from = 0x0233, .to = 0x0239, .category = .pvalid },
1599 .{ .from = 0x023A, .to = 0x023B, .category = .disallowed },
1600 .{ .from = 0x023D, .to = 0x023E, .category = .disallowed },
1601 .{ .from = 0x023F, .to = 0x0240, .category = .pvalid },
1602 .{ .from = 0x0243, .to = 0x0246, .category = .disallowed },
1603 .{ .from = 0x024F, .to = 0x02AF, .category = .pvalid },
1604 .{ .from = 0x02B0, .to = 0x02B8, .category = .disallowed },
1605 .{ .from = 0x02B9, .to = 0x02C1, .category = .pvalid },
1606 .{ .from = 0x02C2, .to = 0x02C5, .category = .disallowed },
1607 .{ .from = 0x02C6, .to = 0x02D1, .category = .pvalid },
1608 .{ .from = 0x02D2, .to = 0x02EB, .category = .disallowed },
1609 .{ .from = 0x02EF, .to = 0x02FF, .category = .disallowed },
1610 .{ .from = 0x0300, .to = 0x033F, .category = .pvalid },
1611 .{ .from = 0x0340, .to = 0x0341, .category = .disallowed },
1612 .{ .from = 0x0343, .to = 0x0345, .category = .disallowed },
1613 .{ .from = 0x0346, .to = 0x034E, .category = .pvalid },
1614 .{ .from = 0x0350, .to = 0x036F, .category = .pvalid },
1615 .{ .from = 0x0378, .to = 0x0379, .category = .unassigned },
1616 .{ .from = 0x037B, .to = 0x037D, .category = .pvalid },
1617 .{ .from = 0x037E, .to = 0x037F, .category = .disallowed },
1618 .{ .from = 0x0380, .to = 0x0383, .category = .unassigned },
1619 .{ .from = 0x0384, .to = 0x038A, .category = .disallowed },
1620 .{ .from = 0x038E, .to = 0x038F, .category = .disallowed },
1621 .{ .from = 0x0391, .to = 0x03A1, .category = .disallowed },
1622 .{ .from = 0x03A3, .to = 0x03AB, .category = .disallowed },
1623 .{ .from = 0x03AC, .to = 0x03CE, .category = .pvalid },
1624 .{ .from = 0x03CF, .to = 0x03D6, .category = .disallowed },
1625 .{ .from = 0x03F0, .to = 0x03F2, .category = .disallowed },
1626 .{ .from = 0x03F4, .to = 0x03F7, .category = .disallowed },
1627 .{ .from = 0x03F9, .to = 0x03FA, .category = .disallowed },
1628 .{ .from = 0x03FB, .to = 0x03FC, .category = .pvalid },
1629 .{ .from = 0x03FD, .to = 0x042F, .category = .disallowed },
1630 .{ .from = 0x0430, .to = 0x045F, .category = .pvalid },
1631 .{ .from = 0x0483, .to = 0x0487, .category = .pvalid },
1632 .{ .from = 0x0488, .to = 0x048A, .category = .disallowed },
1633 .{ .from = 0x04C0, .to = 0x04C1, .category = .disallowed },
1634 .{ .from = 0x04CE, .to = 0x04CF, .category = .pvalid },
1635 .{ .from = 0x0531, .to = 0x0556, .category = .disallowed },
1636 .{ .from = 0x0557, .to = 0x0558, .category = .unassigned },
1637 .{ .from = 0x055A, .to = 0x055F, .category = .disallowed },
1638 .{ .from = 0x0560, .to = 0x0586, .category = .pvalid },
1639 .{ .from = 0x0589, .to = 0x058A, .category = .disallowed },
1640 .{ .from = 0x058B, .to = 0x058C, .category = .unassigned },
1641 .{ .from = 0x058D, .to = 0x058F, .category = .disallowed },
1642 .{ .from = 0x0591, .to = 0x05BD, .category = .pvalid },
1643 .{ .from = 0x05C1, .to = 0x05C2, .category = .pvalid },
1644 .{ .from = 0x05C4, .to = 0x05C5, .category = .pvalid },
1645 .{ .from = 0x05C8, .to = 0x05CF, .category = .unassigned },
1646 .{ .from = 0x05D0, .to = 0x05EA, .category = .pvalid },
1647 .{ .from = 0x05EB, .to = 0x05EE, .category = .unassigned },
1648 .{ .from = 0x05EF, .to = 0x05F2, .category = .pvalid },
1649 .{ .from = 0x05F3, .to = 0x05F4, .category = .contexto },
1650 .{ .from = 0x05F5, .to = 0x05FF, .category = .unassigned },
1651 .{ .from = 0x0600, .to = 0x060F, .category = .disallowed },
1652 .{ .from = 0x0610, .to = 0x061A, .category = .pvalid },
1653 .{ .from = 0x061B, .to = 0x061F, .category = .disallowed },
1654 .{ .from = 0x0620, .to = 0x063F, .category = .pvalid },
1655 .{ .from = 0x0641, .to = 0x065F, .category = .pvalid },
1656 .{ .from = 0x0660, .to = 0x0669, .category = .contexto },
1657 .{ .from = 0x066A, .to = 0x066D, .category = .disallowed },
1658 .{ .from = 0x066E, .to = 0x0674, .category = .pvalid },
1659 .{ .from = 0x0675, .to = 0x0678, .category = .disallowed },
1660 .{ .from = 0x0679, .to = 0x06D3, .category = .pvalid },
1661 .{ .from = 0x06D5, .to = 0x06DC, .category = .pvalid },
1662 .{ .from = 0x06DD, .to = 0x06DE, .category = .disallowed },
1663 .{ .from = 0x06DF, .to = 0x06E8, .category = .pvalid },
1664 .{ .from = 0x06EA, .to = 0x06EF, .category = .pvalid },
1665 .{ .from = 0x06F0, .to = 0x06F9, .category = .contexto },
1666 .{ .from = 0x06FA, .to = 0x06FF, .category = .pvalid },
1667 .{ .from = 0x0700, .to = 0x070D, .category = .disallowed },
1668 .{ .from = 0x0710, .to = 0x074A, .category = .pvalid },
1669 .{ .from = 0x074B, .to = 0x074C, .category = .unassigned },
1670 .{ .from = 0x074D, .to = 0x07B1, .category = .pvalid },
1671 .{ .from = 0x07B2, .to = 0x07BF, .category = .unassigned },
1672 .{ .from = 0x07C0, .to = 0x07F5, .category = .pvalid },
1673 .{ .from = 0x07F6, .to = 0x07FA, .category = .disallowed },
1674 .{ .from = 0x07FB, .to = 0x07FC, .category = .unassigned },
1675 .{ .from = 0x07FE, .to = 0x07FF, .category = .disallowed },
1676 .{ .from = 0x0800, .to = 0x082D, .category = .pvalid },
1677 .{ .from = 0x082E, .to = 0x082F, .category = .unassigned },
1678 .{ .from = 0x0830, .to = 0x083E, .category = .disallowed },
1679 .{ .from = 0x0840, .to = 0x085B, .category = .pvalid },
1680 .{ .from = 0x085C, .to = 0x085D, .category = .unassigned },
1681 .{ .from = 0x0860, .to = 0x086A, .category = .pvalid },
1682 .{ .from = 0x086B, .to = 0x086F, .category = .unassigned },
1683 .{ .from = 0x0870, .to = 0x0887, .category = .pvalid },
1684 .{ .from = 0x0889, .to = 0x088F, .category = .pvalid },
1685 .{ .from = 0x0890, .to = 0x0891, .category = .disallowed },
1686 .{ .from = 0x0892, .to = 0x0896, .category = .unassigned },
1687 .{ .from = 0x0897, .to = 0x08E1, .category = .pvalid },
1688 .{ .from = 0x08E3, .to = 0x0957, .category = .pvalid },
1689 .{ .from = 0x0958, .to = 0x095F, .category = .disallowed },
1690 .{ .from = 0x0960, .to = 0x0963, .category = .pvalid },
1691 .{ .from = 0x0964, .to = 0x0965, .category = .disallowed },
1692 .{ .from = 0x0966, .to = 0x096F, .category = .pvalid },
1693 .{ .from = 0x0971, .to = 0x0983, .category = .pvalid },
1694 .{ .from = 0x0985, .to = 0x098C, .category = .pvalid },
1695 .{ .from = 0x098D, .to = 0x098E, .category = .unassigned },
1696 .{ .from = 0x098F, .to = 0x0990, .category = .pvalid },
1697 .{ .from = 0x0991, .to = 0x0992, .category = .unassigned },
1698 .{ .from = 0x0993, .to = 0x09A8, .category = .pvalid },
1699 .{ .from = 0x09AA, .to = 0x09B0, .category = .pvalid },
1700 .{ .from = 0x09B3, .to = 0x09B5, .category = .unassigned },
1701 .{ .from = 0x09B6, .to = 0x09B9, .category = .pvalid },
1702 .{ .from = 0x09BA, .to = 0x09BB, .category = .unassigned },
1703 .{ .from = 0x09BC, .to = 0x09C4, .category = .pvalid },
1704 .{ .from = 0x09C5, .to = 0x09C6, .category = .unassigned },
1705 .{ .from = 0x09C7, .to = 0x09C8, .category = .pvalid },
1706 .{ .from = 0x09C9, .to = 0x09CA, .category = .unassigned },
1707 .{ .from = 0x09CB, .to = 0x09CE, .category = .pvalid },
1708 .{ .from = 0x09CF, .to = 0x09D6, .category = .unassigned },
1709 .{ .from = 0x09D8, .to = 0x09DB, .category = .unassigned },
1710 .{ .from = 0x09DC, .to = 0x09DD, .category = .disallowed },
1711 .{ .from = 0x09E0, .to = 0x09E3, .category = .pvalid },
1712 .{ .from = 0x09E4, .to = 0x09E5, .category = .unassigned },
1713 .{ .from = 0x09E6, .to = 0x09F1, .category = .pvalid },
1714 .{ .from = 0x09F2, .to = 0x09FB, .category = .disallowed },
1715 .{ .from = 0x09FF, .to = 0x0A00, .category = .unassigned },
1716 .{ .from = 0x0A01, .to = 0x0A03, .category = .pvalid },
1717 .{ .from = 0x0A05, .to = 0x0A0A, .category = .pvalid },
1718 .{ .from = 0x0A0B, .to = 0x0A0E, .category = .unassigned },
1719 .{ .from = 0x0A0F, .to = 0x0A10, .category = .pvalid },
1720 .{ .from = 0x0A11, .to = 0x0A12, .category = .unassigned },
1721 .{ .from = 0x0A13, .to = 0x0A28, .category = .pvalid },
1722 .{ .from = 0x0A2A, .to = 0x0A30, .category = .pvalid },
1723 .{ .from = 0x0A38, .to = 0x0A39, .category = .pvalid },
1724 .{ .from = 0x0A3A, .to = 0x0A3B, .category = .unassigned },
1725 .{ .from = 0x0A3E, .to = 0x0A42, .category = .pvalid },
1726 .{ .from = 0x0A43, .to = 0x0A46, .category = .unassigned },
1727 .{ .from = 0x0A47, .to = 0x0A48, .category = .pvalid },
1728 .{ .from = 0x0A49, .to = 0x0A4A, .category = .unassigned },
1729 .{ .from = 0x0A4B, .to = 0x0A4D, .category = .pvalid },
1730 .{ .from = 0x0A4E, .to = 0x0A50, .category = .unassigned },
1731 .{ .from = 0x0A52, .to = 0x0A58, .category = .unassigned },
1732 .{ .from = 0x0A59, .to = 0x0A5B, .category = .disallowed },
1733 .{ .from = 0x0A5F, .to = 0x0A65, .category = .unassigned },
1734 .{ .from = 0x0A66, .to = 0x0A75, .category = .pvalid },
1735 .{ .from = 0x0A77, .to = 0x0A80, .category = .unassigned },
1736 .{ .from = 0x0A81, .to = 0x0A83, .category = .pvalid },
1737 .{ .from = 0x0A85, .to = 0x0A8D, .category = .pvalid },
1738 .{ .from = 0x0A8F, .to = 0x0A91, .category = .pvalid },
1739 .{ .from = 0x0A93, .to = 0x0AA8, .category = .pvalid },
1740 .{ .from = 0x0AAA, .to = 0x0AB0, .category = .pvalid },
1741 .{ .from = 0x0AB2, .to = 0x0AB3, .category = .pvalid },
1742 .{ .from = 0x0AB5, .to = 0x0AB9, .category = .pvalid },
1743 .{ .from = 0x0ABA, .to = 0x0ABB, .category = .unassigned },
1744 .{ .from = 0x0ABC, .to = 0x0AC5, .category = .pvalid },
1745 .{ .from = 0x0AC7, .to = 0x0AC9, .category = .pvalid },
1746 .{ .from = 0x0ACB, .to = 0x0ACD, .category = .pvalid },
1747 .{ .from = 0x0ACE, .to = 0x0ACF, .category = .unassigned },
1748 .{ .from = 0x0AD1, .to = 0x0ADF, .category = .unassigned },
1749 .{ .from = 0x0AE0, .to = 0x0AE3, .category = .pvalid },
1750 .{ .from = 0x0AE4, .to = 0x0AE5, .category = .unassigned },
1751 .{ .from = 0x0AE6, .to = 0x0AEF, .category = .pvalid },
1752 .{ .from = 0x0AF0, .to = 0x0AF1, .category = .disallowed },
1753 .{ .from = 0x0AF2, .to = 0x0AF8, .category = .unassigned },
1754 .{ .from = 0x0AF9, .to = 0x0AFF, .category = .pvalid },
1755 .{ .from = 0x0B01, .to = 0x0B03, .category = .pvalid },
1756 .{ .from = 0x0B05, .to = 0x0B0C, .category = .pvalid },
1757 .{ .from = 0x0B0D, .to = 0x0B0E, .category = .unassigned },
1758 .{ .from = 0x0B0F, .to = 0x0B10, .category = .pvalid },
1759 .{ .from = 0x0B11, .to = 0x0B12, .category = .unassigned },
1760 .{ .from = 0x0B13, .to = 0x0B28, .category = .pvalid },
1761 .{ .from = 0x0B2A, .to = 0x0B30, .category = .pvalid },
1762 .{ .from = 0x0B32, .to = 0x0B33, .category = .pvalid },
1763 .{ .from = 0x0B35, .to = 0x0B39, .category = .pvalid },
1764 .{ .from = 0x0B3A, .to = 0x0B3B, .category = .unassigned },
1765 .{ .from = 0x0B3C, .to = 0x0B44, .category = .pvalid },
1766 .{ .from = 0x0B45, .to = 0x0B46, .category = .unassigned },
1767 .{ .from = 0x0B47, .to = 0x0B48, .category = .pvalid },
1768 .{ .from = 0x0B49, .to = 0x0B4A, .category = .unassigned },
1769 .{ .from = 0x0B4B, .to = 0x0B4D, .category = .pvalid },
1770 .{ .from = 0x0B4E, .to = 0x0B54, .category = .unassigned },
1771 .{ .from = 0x0B55, .to = 0x0B57, .category = .pvalid },
1772 .{ .from = 0x0B58, .to = 0x0B5B, .category = .unassigned },
1773 .{ .from = 0x0B5C, .to = 0x0B5D, .category = .disallowed },
1774 .{ .from = 0x0B5F, .to = 0x0B63, .category = .pvalid },
1775 .{ .from = 0x0B64, .to = 0x0B65, .category = .unassigned },
1776 .{ .from = 0x0B66, .to = 0x0B6F, .category = .pvalid },
1777 .{ .from = 0x0B72, .to = 0x0B77, .category = .disallowed },
1778 .{ .from = 0x0B78, .to = 0x0B81, .category = .unassigned },
1779 .{ .from = 0x0B82, .to = 0x0B83, .category = .pvalid },
1780 .{ .from = 0x0B85, .to = 0x0B8A, .category = .pvalid },
1781 .{ .from = 0x0B8B, .to = 0x0B8D, .category = .unassigned },
1782 .{ .from = 0x0B8E, .to = 0x0B90, .category = .pvalid },
1783 .{ .from = 0x0B92, .to = 0x0B95, .category = .pvalid },
1784 .{ .from = 0x0B96, .to = 0x0B98, .category = .unassigned },
1785 .{ .from = 0x0B99, .to = 0x0B9A, .category = .pvalid },
1786 .{ .from = 0x0B9E, .to = 0x0B9F, .category = .pvalid },
1787 .{ .from = 0x0BA0, .to = 0x0BA2, .category = .unassigned },
1788 .{ .from = 0x0BA3, .to = 0x0BA4, .category = .pvalid },
1789 .{ .from = 0x0BA5, .to = 0x0BA7, .category = .unassigned },
1790 .{ .from = 0x0BA8, .to = 0x0BAA, .category = .pvalid },
1791 .{ .from = 0x0BAB, .to = 0x0BAD, .category = .unassigned },
1792 .{ .from = 0x0BAE, .to = 0x0BB9, .category = .pvalid },
1793 .{ .from = 0x0BBA, .to = 0x0BBD, .category = .unassigned },
1794 .{ .from = 0x0BBE, .to = 0x0BC2, .category = .pvalid },
1795 .{ .from = 0x0BC3, .to = 0x0BC5, .category = .unassigned },
1796 .{ .from = 0x0BC6, .to = 0x0BC8, .category = .pvalid },
1797 .{ .from = 0x0BCA, .to = 0x0BCD, .category = .pvalid },
1798 .{ .from = 0x0BCE, .to = 0x0BCF, .category = .unassigned },
1799 .{ .from = 0x0BD1, .to = 0x0BD6, .category = .unassigned },
1800 .{ .from = 0x0BD8, .to = 0x0BE5, .category = .unassigned },
1801 .{ .from = 0x0BE6, .to = 0x0BEF, .category = .pvalid },
1802 .{ .from = 0x0BF0, .to = 0x0BFA, .category = .disallowed },
1803 .{ .from = 0x0BFB, .to = 0x0BFF, .category = .unassigned },
1804 .{ .from = 0x0C00, .to = 0x0C0C, .category = .pvalid },
1805 .{ .from = 0x0C0E, .to = 0x0C10, .category = .pvalid },
1806 .{ .from = 0x0C12, .to = 0x0C28, .category = .pvalid },
1807 .{ .from = 0x0C2A, .to = 0x0C39, .category = .pvalid },
1808 .{ .from = 0x0C3A, .to = 0x0C3B, .category = .unassigned },
1809 .{ .from = 0x0C3C, .to = 0x0C44, .category = .pvalid },
1810 .{ .from = 0x0C46, .to = 0x0C48, .category = .pvalid },
1811 .{ .from = 0x0C4A, .to = 0x0C4D, .category = .pvalid },
1812 .{ .from = 0x0C4E, .to = 0x0C54, .category = .unassigned },
1813 .{ .from = 0x0C55, .to = 0x0C56, .category = .pvalid },
1814 .{ .from = 0x0C58, .to = 0x0C5A, .category = .pvalid },
1815 .{ .from = 0x0C5C, .to = 0x0C5D, .category = .pvalid },
1816 .{ .from = 0x0C5E, .to = 0x0C5F, .category = .unassigned },
1817 .{ .from = 0x0C60, .to = 0x0C63, .category = .pvalid },
1818 .{ .from = 0x0C64, .to = 0x0C65, .category = .unassigned },
1819 .{ .from = 0x0C66, .to = 0x0C6F, .category = .pvalid },
1820 .{ .from = 0x0C70, .to = 0x0C76, .category = .unassigned },
1821 .{ .from = 0x0C77, .to = 0x0C7F, .category = .disallowed },
1822 .{ .from = 0x0C80, .to = 0x0C83, .category = .pvalid },
1823 .{ .from = 0x0C85, .to = 0x0C8C, .category = .pvalid },
1824 .{ .from = 0x0C8E, .to = 0x0C90, .category = .pvalid },
1825 .{ .from = 0x0C92, .to = 0x0CA8, .category = .pvalid },
1826 .{ .from = 0x0CAA, .to = 0x0CB3, .category = .pvalid },
1827 .{ .from = 0x0CB5, .to = 0x0CB9, .category = .pvalid },
1828 .{ .from = 0x0CBA, .to = 0x0CBB, .category = .unassigned },
1829 .{ .from = 0x0CBC, .to = 0x0CC4, .category = .pvalid },
1830 .{ .from = 0x0CC6, .to = 0x0CC8, .category = .pvalid },
1831 .{ .from = 0x0CCA, .to = 0x0CCD, .category = .pvalid },
1832 .{ .from = 0x0CCE, .to = 0x0CD4, .category = .unassigned },
1833 .{ .from = 0x0CD5, .to = 0x0CD6, .category = .pvalid },
1834 .{ .from = 0x0CD7, .to = 0x0CDB, .category = .unassigned },
1835 .{ .from = 0x0CDC, .to = 0x0CDE, .category = .pvalid },
1836 .{ .from = 0x0CE0, .to = 0x0CE3, .category = .pvalid },
1837 .{ .from = 0x0CE4, .to = 0x0CE5, .category = .unassigned },
1838 .{ .from = 0x0CE6, .to = 0x0CEF, .category = .pvalid },
1839 .{ .from = 0x0CF1, .to = 0x0CF3, .category = .pvalid },
1840 .{ .from = 0x0CF4, .to = 0x0CFF, .category = .unassigned },
1841 .{ .from = 0x0D00, .to = 0x0D0C, .category = .pvalid },
1842 .{ .from = 0x0D0E, .to = 0x0D10, .category = .pvalid },
1843 .{ .from = 0x0D12, .to = 0x0D44, .category = .pvalid },
1844 .{ .from = 0x0D46, .to = 0x0D48, .category = .pvalid },
1845 .{ .from = 0x0D4A, .to = 0x0D4E, .category = .pvalid },
1846 .{ .from = 0x0D50, .to = 0x0D53, .category = .unassigned },
1847 .{ .from = 0x0D54, .to = 0x0D57, .category = .pvalid },
1848 .{ .from = 0x0D58, .to = 0x0D5E, .category = .disallowed },
1849 .{ .from = 0x0D5F, .to = 0x0D63, .category = .pvalid },
1850 .{ .from = 0x0D64, .to = 0x0D65, .category = .unassigned },
1851 .{ .from = 0x0D66, .to = 0x0D6F, .category = .pvalid },
1852 .{ .from = 0x0D70, .to = 0x0D79, .category = .disallowed },
1853 .{ .from = 0x0D7A, .to = 0x0D7F, .category = .pvalid },
1854 .{ .from = 0x0D81, .to = 0x0D83, .category = .pvalid },
1855 .{ .from = 0x0D85, .to = 0x0D96, .category = .pvalid },
1856 .{ .from = 0x0D97, .to = 0x0D99, .category = .unassigned },
1857 .{ .from = 0x0D9A, .to = 0x0DB1, .category = .pvalid },
1858 .{ .from = 0x0DB3, .to = 0x0DBB, .category = .pvalid },
1859 .{ .from = 0x0DBE, .to = 0x0DBF, .category = .unassigned },
1860 .{ .from = 0x0DC0, .to = 0x0DC6, .category = .pvalid },
1861 .{ .from = 0x0DC7, .to = 0x0DC9, .category = .unassigned },
1862 .{ .from = 0x0DCB, .to = 0x0DCE, .category = .unassigned },
1863 .{ .from = 0x0DCF, .to = 0x0DD4, .category = .pvalid },
1864 .{ .from = 0x0DD8, .to = 0x0DDF, .category = .pvalid },
1865 .{ .from = 0x0DE0, .to = 0x0DE5, .category = .unassigned },
1866 .{ .from = 0x0DE6, .to = 0x0DEF, .category = .pvalid },
1867 .{ .from = 0x0DF0, .to = 0x0DF1, .category = .unassigned },
1868 .{ .from = 0x0DF2, .to = 0x0DF3, .category = .pvalid },
1869 .{ .from = 0x0DF5, .to = 0x0E00, .category = .unassigned },
1870 .{ .from = 0x0E01, .to = 0x0E32, .category = .pvalid },
1871 .{ .from = 0x0E34, .to = 0x0E3A, .category = .pvalid },
1872 .{ .from = 0x0E3B, .to = 0x0E3E, .category = .unassigned },
1873 .{ .from = 0x0E40, .to = 0x0E4E, .category = .pvalid },
1874 .{ .from = 0x0E50, .to = 0x0E59, .category = .pvalid },
1875 .{ .from = 0x0E5A, .to = 0x0E5B, .category = .disallowed },
1876 .{ .from = 0x0E5C, .to = 0x0E80, .category = .unassigned },
1877 .{ .from = 0x0E81, .to = 0x0E82, .category = .pvalid },
1878 .{ .from = 0x0E86, .to = 0x0E8A, .category = .pvalid },
1879 .{ .from = 0x0E8C, .to = 0x0EA3, .category = .pvalid },
1880 .{ .from = 0x0EA7, .to = 0x0EB2, .category = .pvalid },
1881 .{ .from = 0x0EB4, .to = 0x0EBD, .category = .pvalid },
1882 .{ .from = 0x0EBE, .to = 0x0EBF, .category = .unassigned },
1883 .{ .from = 0x0EC0, .to = 0x0EC4, .category = .pvalid },
1884 .{ .from = 0x0EC8, .to = 0x0ECE, .category = .pvalid },
1885 .{ .from = 0x0ED0, .to = 0x0ED9, .category = .pvalid },
1886 .{ .from = 0x0EDA, .to = 0x0EDB, .category = .unassigned },
1887 .{ .from = 0x0EDC, .to = 0x0EDD, .category = .disallowed },
1888 .{ .from = 0x0EDE, .to = 0x0EDF, .category = .pvalid },
1889 .{ .from = 0x0EE0, .to = 0x0EFF, .category = .unassigned },
1890 .{ .from = 0x0F01, .to = 0x0F0A, .category = .disallowed },
1891 .{ .from = 0x0F0C, .to = 0x0F17, .category = .disallowed },
1892 .{ .from = 0x0F18, .to = 0x0F19, .category = .pvalid },
1893 .{ .from = 0x0F1A, .to = 0x0F1F, .category = .disallowed },
1894 .{ .from = 0x0F20, .to = 0x0F29, .category = .pvalid },
1895 .{ .from = 0x0F2A, .to = 0x0F34, .category = .disallowed },
1896 .{ .from = 0x0F3A, .to = 0x0F3D, .category = .disallowed },
1897 .{ .from = 0x0F3E, .to = 0x0F42, .category = .pvalid },
1898 .{ .from = 0x0F44, .to = 0x0F47, .category = .pvalid },
1899 .{ .from = 0x0F49, .to = 0x0F4C, .category = .pvalid },
1900 .{ .from = 0x0F4E, .to = 0x0F51, .category = .pvalid },
1901 .{ .from = 0x0F53, .to = 0x0F56, .category = .pvalid },
1902 .{ .from = 0x0F58, .to = 0x0F5B, .category = .pvalid },
1903 .{ .from = 0x0F5D, .to = 0x0F68, .category = .pvalid },
1904 .{ .from = 0x0F6A, .to = 0x0F6C, .category = .pvalid },
1905 .{ .from = 0x0F6D, .to = 0x0F70, .category = .unassigned },
1906 .{ .from = 0x0F71, .to = 0x0F72, .category = .pvalid },
1907 .{ .from = 0x0F75, .to = 0x0F79, .category = .disallowed },
1908 .{ .from = 0x0F7A, .to = 0x0F80, .category = .pvalid },
1909 .{ .from = 0x0F82, .to = 0x0F84, .category = .pvalid },
1910 .{ .from = 0x0F86, .to = 0x0F92, .category = .pvalid },
1911 .{ .from = 0x0F94, .to = 0x0F97, .category = .pvalid },
1912 .{ .from = 0x0F99, .to = 0x0F9C, .category = .pvalid },
1913 .{ .from = 0x0F9E, .to = 0x0FA1, .category = .pvalid },
1914 .{ .from = 0x0FA3, .to = 0x0FA6, .category = .pvalid },
1915 .{ .from = 0x0FA8, .to = 0x0FAB, .category = .pvalid },
1916 .{ .from = 0x0FAD, .to = 0x0FB8, .category = .pvalid },
1917 .{ .from = 0x0FBA, .to = 0x0FBC, .category = .pvalid },
1918 .{ .from = 0x0FBE, .to = 0x0FC5, .category = .disallowed },
1919 .{ .from = 0x0FC7, .to = 0x0FCC, .category = .disallowed },
1920 .{ .from = 0x0FCE, .to = 0x0FDA, .category = .disallowed },
1921 .{ .from = 0x0FDB, .to = 0x0FFF, .category = .unassigned },
1922 .{ .from = 0x1000, .to = 0x1049, .category = .pvalid },
1923 .{ .from = 0x104A, .to = 0x104F, .category = .disallowed },
1924 .{ .from = 0x1050, .to = 0x109D, .category = .pvalid },
1925 .{ .from = 0x109E, .to = 0x10C5, .category = .disallowed },
1926 .{ .from = 0x10C8, .to = 0x10CC, .category = .unassigned },
1927 .{ .from = 0x10CE, .to = 0x10CF, .category = .unassigned },
1928 .{ .from = 0x10D0, .to = 0x10FA, .category = .pvalid },
1929 .{ .from = 0x10FB, .to = 0x10FC, .category = .disallowed },
1930 .{ .from = 0x10FD, .to = 0x10FF, .category = .pvalid },
1931 .{ .from = 0x1100, .to = 0x11FF, .category = .disallowed },
1932 .{ .from = 0x1200, .to = 0x1248, .category = .pvalid },
1933 .{ .from = 0x124A, .to = 0x124D, .category = .pvalid },
1934 .{ .from = 0x124E, .to = 0x124F, .category = .unassigned },
1935 .{ .from = 0x1250, .to = 0x1256, .category = .pvalid },
1936 .{ .from = 0x125A, .to = 0x125D, .category = .pvalid },
1937 .{ .from = 0x125E, .to = 0x125F, .category = .unassigned },
1938 .{ .from = 0x1260, .to = 0x1288, .category = .pvalid },
1939 .{ .from = 0x128A, .to = 0x128D, .category = .pvalid },
1940 .{ .from = 0x128E, .to = 0x128F, .category = .unassigned },
1941 .{ .from = 0x1290, .to = 0x12B0, .category = .pvalid },
1942 .{ .from = 0x12B2, .to = 0x12B5, .category = .pvalid },
1943 .{ .from = 0x12B6, .to = 0x12B7, .category = .unassigned },
1944 .{ .from = 0x12B8, .to = 0x12BE, .category = .pvalid },
1945 .{ .from = 0x12C2, .to = 0x12C5, .category = .pvalid },
1946 .{ .from = 0x12C6, .to = 0x12C7, .category = .unassigned },
1947 .{ .from = 0x12C8, .to = 0x12D6, .category = .pvalid },
1948 .{ .from = 0x12D8, .to = 0x1310, .category = .pvalid },
1949 .{ .from = 0x1312, .to = 0x1315, .category = .pvalid },
1950 .{ .from = 0x1316, .to = 0x1317, .category = .unassigned },
1951 .{ .from = 0x1318, .to = 0x135A, .category = .pvalid },
1952 .{ .from = 0x135B, .to = 0x135C, .category = .unassigned },
1953 .{ .from = 0x135D, .to = 0x135F, .category = .pvalid },
1954 .{ .from = 0x1360, .to = 0x137C, .category = .disallowed },
1955 .{ .from = 0x137D, .to = 0x137F, .category = .unassigned },
1956 .{ .from = 0x1380, .to = 0x138F, .category = .pvalid },
1957 .{ .from = 0x1390, .to = 0x1399, .category = .disallowed },
1958 .{ .from = 0x139A, .to = 0x139F, .category = .unassigned },
1959 .{ .from = 0x13A0, .to = 0x13F5, .category = .pvalid },
1960 .{ .from = 0x13F6, .to = 0x13F7, .category = .unassigned },
1961 .{ .from = 0x13F8, .to = 0x13FD, .category = .disallowed },
1962 .{ .from = 0x13FE, .to = 0x13FF, .category = .unassigned },
1963 .{ .from = 0x1401, .to = 0x166C, .category = .pvalid },
1964 .{ .from = 0x166D, .to = 0x166E, .category = .disallowed },
1965 .{ .from = 0x166F, .to = 0x167F, .category = .pvalid },
1966 .{ .from = 0x1681, .to = 0x169A, .category = .pvalid },
1967 .{ .from = 0x169B, .to = 0x169C, .category = .disallowed },
1968 .{ .from = 0x169D, .to = 0x169F, .category = .unassigned },
1969 .{ .from = 0x16A0, .to = 0x16EA, .category = .pvalid },
1970 .{ .from = 0x16EB, .to = 0x16F0, .category = .disallowed },
1971 .{ .from = 0x16F1, .to = 0x16F8, .category = .pvalid },
1972 .{ .from = 0x16F9, .to = 0x16FF, .category = .unassigned },
1973 .{ .from = 0x1700, .to = 0x1715, .category = .pvalid },
1974 .{ .from = 0x1716, .to = 0x171E, .category = .unassigned },
1975 .{ .from = 0x171F, .to = 0x1734, .category = .pvalid },
1976 .{ .from = 0x1735, .to = 0x1736, .category = .disallowed },
1977 .{ .from = 0x1737, .to = 0x173F, .category = .unassigned },
1978 .{ .from = 0x1740, .to = 0x1753, .category = .pvalid },
1979 .{ .from = 0x1754, .to = 0x175F, .category = .unassigned },
1980 .{ .from = 0x1760, .to = 0x176C, .category = .pvalid },
1981 .{ .from = 0x176E, .to = 0x1770, .category = .pvalid },
1982 .{ .from = 0x1772, .to = 0x1773, .category = .pvalid },
1983 .{ .from = 0x1774, .to = 0x177F, .category = .unassigned },
1984 .{ .from = 0x1780, .to = 0x17B3, .category = .pvalid },
1985 .{ .from = 0x17B4, .to = 0x17B5, .category = .disallowed },
1986 .{ .from = 0x17B6, .to = 0x17D3, .category = .pvalid },
1987 .{ .from = 0x17D4, .to = 0x17D6, .category = .disallowed },
1988 .{ .from = 0x17D8, .to = 0x17DB, .category = .disallowed },
1989 .{ .from = 0x17DC, .to = 0x17DD, .category = .pvalid },
1990 .{ .from = 0x17DE, .to = 0x17DF, .category = .unassigned },
1991 .{ .from = 0x17E0, .to = 0x17E9, .category = .pvalid },
1992 .{ .from = 0x17EA, .to = 0x17EF, .category = .unassigned },
1993 .{ .from = 0x17F0, .to = 0x17F9, .category = .disallowed },
1994 .{ .from = 0x17FA, .to = 0x17FF, .category = .unassigned },
1995 .{ .from = 0x1800, .to = 0x180F, .category = .disallowed },
1996 .{ .from = 0x1810, .to = 0x1819, .category = .pvalid },
1997 .{ .from = 0x181A, .to = 0x181F, .category = .unassigned },
1998 .{ .from = 0x1820, .to = 0x1878, .category = .pvalid },
1999 .{ .from = 0x1879, .to = 0x187F, .category = .unassigned },
2000 .{ .from = 0x1880, .to = 0x18AA, .category = .pvalid },
2001 .{ .from = 0x18AB, .to = 0x18AF, .category = .unassigned },
2002 .{ .from = 0x18B0, .to = 0x18F5, .category = .pvalid },
2003 .{ .from = 0x18F6, .to = 0x18FF, .category = .unassigned },
2004 .{ .from = 0x1900, .to = 0x191E, .category = .pvalid },
2005 .{ .from = 0x1920, .to = 0x192B, .category = .pvalid },
2006 .{ .from = 0x192C, .to = 0x192F, .category = .unassigned },
2007 .{ .from = 0x1930, .to = 0x193B, .category = .pvalid },
2008 .{ .from = 0x193C, .to = 0x193F, .category = .unassigned },
2009 .{ .from = 0x1941, .to = 0x1943, .category = .unassigned },
2010 .{ .from = 0x1944, .to = 0x1945, .category = .disallowed },
2011 .{ .from = 0x1946, .to = 0x196D, .category = .pvalid },
2012 .{ .from = 0x196E, .to = 0x196F, .category = .unassigned },
2013 .{ .from = 0x1970, .to = 0x1974, .category = .pvalid },
2014 .{ .from = 0x1975, .to = 0x197F, .category = .unassigned },
2015 .{ .from = 0x1980, .to = 0x19AB, .category = .pvalid },
2016 .{ .from = 0x19AC, .to = 0x19AF, .category = .unassigned },
2017 .{ .from = 0x19B0, .to = 0x19C9, .category = .pvalid },
2018 .{ .from = 0x19CA, .to = 0x19CF, .category = .unassigned },
2019 .{ .from = 0x19D0, .to = 0x19D9, .category = .pvalid },
2020 .{ .from = 0x19DB, .to = 0x19DD, .category = .unassigned },
2021 .{ .from = 0x19DE, .to = 0x19FF, .category = .disallowed },
2022 .{ .from = 0x1A00, .to = 0x1A1B, .category = .pvalid },
2023 .{ .from = 0x1A1C, .to = 0x1A1D, .category = .unassigned },
2024 .{ .from = 0x1A1E, .to = 0x1A1F, .category = .disallowed },
2025 .{ .from = 0x1A20, .to = 0x1A5E, .category = .pvalid },
2026 .{ .from = 0x1A60, .to = 0x1A7C, .category = .pvalid },
2027 .{ .from = 0x1A7D, .to = 0x1A7E, .category = .unassigned },
2028 .{ .from = 0x1A7F, .to = 0x1A89, .category = .pvalid },
2029 .{ .from = 0x1A8A, .to = 0x1A8F, .category = .unassigned },
2030 .{ .from = 0x1A90, .to = 0x1A99, .category = .pvalid },
2031 .{ .from = 0x1A9A, .to = 0x1A9F, .category = .unassigned },
2032 .{ .from = 0x1AA0, .to = 0x1AA6, .category = .disallowed },
2033 .{ .from = 0x1AA8, .to = 0x1AAD, .category = .disallowed },
2034 .{ .from = 0x1AAE, .to = 0x1AAF, .category = .unassigned },
2035 .{ .from = 0x1AB0, .to = 0x1ABD, .category = .pvalid },
2036 .{ .from = 0x1ABF, .to = 0x1ADD, .category = .pvalid },
2037 .{ .from = 0x1ADE, .to = 0x1ADF, .category = .unassigned },
2038 .{ .from = 0x1AE0, .to = 0x1AEB, .category = .pvalid },
2039 .{ .from = 0x1AEC, .to = 0x1AFF, .category = .unassigned },
2040 .{ .from = 0x1B00, .to = 0x1B4C, .category = .pvalid },
2041 .{ .from = 0x1B4E, .to = 0x1B4F, .category = .disallowed },
2042 .{ .from = 0x1B50, .to = 0x1B59, .category = .pvalid },
2043 .{ .from = 0x1B5A, .to = 0x1B6A, .category = .disallowed },
2044 .{ .from = 0x1B6B, .to = 0x1B73, .category = .pvalid },
2045 .{ .from = 0x1B74, .to = 0x1B7F, .category = .disallowed },
2046 .{ .from = 0x1B80, .to = 0x1BF3, .category = .pvalid },
2047 .{ .from = 0x1BF4, .to = 0x1BFB, .category = .unassigned },
2048 .{ .from = 0x1BFC, .to = 0x1BFF, .category = .disallowed },
2049 .{ .from = 0x1C00, .to = 0x1C37, .category = .pvalid },
2050 .{ .from = 0x1C38, .to = 0x1C3A, .category = .unassigned },
2051 .{ .from = 0x1C3B, .to = 0x1C3F, .category = .disallowed },
2052 .{ .from = 0x1C40, .to = 0x1C49, .category = .pvalid },
2053 .{ .from = 0x1C4A, .to = 0x1C4C, .category = .unassigned },
2054 .{ .from = 0x1C4D, .to = 0x1C7D, .category = .pvalid },
2055 .{ .from = 0x1C7E, .to = 0x1C89, .category = .disallowed },
2056 .{ .from = 0x1C8B, .to = 0x1C8F, .category = .unassigned },
2057 .{ .from = 0x1C90, .to = 0x1CBA, .category = .disallowed },
2058 .{ .from = 0x1CBB, .to = 0x1CBC, .category = .unassigned },
2059 .{ .from = 0x1CBD, .to = 0x1CC7, .category = .disallowed },
2060 .{ .from = 0x1CC8, .to = 0x1CCF, .category = .unassigned },
2061 .{ .from = 0x1CD0, .to = 0x1CD2, .category = .pvalid },
2062 .{ .from = 0x1CD4, .to = 0x1CFA, .category = .pvalid },
2063 .{ .from = 0x1CFB, .to = 0x1CFF, .category = .unassigned },
2064 .{ .from = 0x1D00, .to = 0x1D2B, .category = .pvalid },
2065 .{ .from = 0x1D2C, .to = 0x1D2E, .category = .disallowed },
2066 .{ .from = 0x1D30, .to = 0x1D3A, .category = .disallowed },
2067 .{ .from = 0x1D3C, .to = 0x1D4D, .category = .disallowed },
2068 .{ .from = 0x1D4F, .to = 0x1D6A, .category = .disallowed },
2069 .{ .from = 0x1D6B, .to = 0x1D77, .category = .pvalid },
2070 .{ .from = 0x1D79, .to = 0x1D9A, .category = .pvalid },
2071 .{ .from = 0x1D9B, .to = 0x1DBF, .category = .disallowed },
2072 .{ .from = 0x1DC0, .to = 0x1DFF, .category = .pvalid },
2073 .{ .from = 0x1E95, .to = 0x1E99, .category = .pvalid },
2074 .{ .from = 0x1E9A, .to = 0x1E9B, .category = .disallowed },
2075 .{ .from = 0x1E9C, .to = 0x1E9D, .category = .pvalid },
2076 .{ .from = 0x1EFF, .to = 0x1F07, .category = .pvalid },
2077 .{ .from = 0x1F08, .to = 0x1F0F, .category = .disallowed },
2078 .{ .from = 0x1F10, .to = 0x1F15, .category = .pvalid },
2079 .{ .from = 0x1F16, .to = 0x1F17, .category = .unassigned },
2080 .{ .from = 0x1F18, .to = 0x1F1D, .category = .disallowed },
2081 .{ .from = 0x1F1E, .to = 0x1F1F, .category = .unassigned },
2082 .{ .from = 0x1F20, .to = 0x1F27, .category = .pvalid },
2083 .{ .from = 0x1F28, .to = 0x1F2F, .category = .disallowed },
2084 .{ .from = 0x1F30, .to = 0x1F37, .category = .pvalid },
2085 .{ .from = 0x1F38, .to = 0x1F3F, .category = .disallowed },
2086 .{ .from = 0x1F40, .to = 0x1F45, .category = .pvalid },
2087 .{ .from = 0x1F46, .to = 0x1F47, .category = .unassigned },
2088 .{ .from = 0x1F48, .to = 0x1F4D, .category = .disallowed },
2089 .{ .from = 0x1F4E, .to = 0x1F4F, .category = .unassigned },
2090 .{ .from = 0x1F50, .to = 0x1F57, .category = .pvalid },
2091 .{ .from = 0x1F60, .to = 0x1F67, .category = .pvalid },
2092 .{ .from = 0x1F68, .to = 0x1F6F, .category = .disallowed },
2093 .{ .from = 0x1F7E, .to = 0x1F7F, .category = .unassigned },
2094 .{ .from = 0x1F80, .to = 0x1FAF, .category = .disallowed },
2095 .{ .from = 0x1FB0, .to = 0x1FB1, .category = .pvalid },
2096 .{ .from = 0x1FB2, .to = 0x1FB4, .category = .disallowed },
2097 .{ .from = 0x1FB7, .to = 0x1FC4, .category = .disallowed },
2098 .{ .from = 0x1FC7, .to = 0x1FCF, .category = .disallowed },
2099 .{ .from = 0x1FD0, .to = 0x1FD2, .category = .pvalid },
2100 .{ .from = 0x1FD4, .to = 0x1FD5, .category = .unassigned },
2101 .{ .from = 0x1FD6, .to = 0x1FD7, .category = .pvalid },
2102 .{ .from = 0x1FD8, .to = 0x1FDB, .category = .disallowed },
2103 .{ .from = 0x1FDD, .to = 0x1FDF, .category = .disallowed },
2104 .{ .from = 0x1FE0, .to = 0x1FE2, .category = .pvalid },
2105 .{ .from = 0x1FE4, .to = 0x1FE7, .category = .pvalid },
2106 .{ .from = 0x1FE8, .to = 0x1FEF, .category = .disallowed },
2107 .{ .from = 0x1FF0, .to = 0x1FF1, .category = .unassigned },
2108 .{ .from = 0x1FF2, .to = 0x1FF4, .category = .disallowed },
2109 .{ .from = 0x1FF7, .to = 0x1FFE, .category = .disallowed },
2110 .{ .from = 0x2000, .to = 0x200B, .category = .disallowed },
2111 .{ .from = 0x200C, .to = 0x200D, .category = .contextj },
2112 .{ .from = 0x200E, .to = 0x2064, .category = .disallowed },
2113 .{ .from = 0x2066, .to = 0x2071, .category = .disallowed },
2114 .{ .from = 0x2072, .to = 0x2073, .category = .unassigned },
2115 .{ .from = 0x2074, .to = 0x208E, .category = .disallowed },
2116 .{ .from = 0x2090, .to = 0x209C, .category = .disallowed },
2117 .{ .from = 0x209D, .to = 0x209F, .category = .unassigned },
2118 .{ .from = 0x20A0, .to = 0x20C1, .category = .disallowed },
2119 .{ .from = 0x20C2, .to = 0x20CF, .category = .unassigned },
2120 .{ .from = 0x20D0, .to = 0x20F0, .category = .disallowed },
2121 .{ .from = 0x20F1, .to = 0x20FF, .category = .unassigned },
2122 .{ .from = 0x2100, .to = 0x214D, .category = .disallowed },
2123 .{ .from = 0x214F, .to = 0x2183, .category = .disallowed },
2124 .{ .from = 0x2185, .to = 0x218B, .category = .disallowed },
2125 .{ .from = 0x218C, .to = 0x218F, .category = .unassigned },
2126 .{ .from = 0x2190, .to = 0x2429, .category = .disallowed },
2127 .{ .from = 0x242A, .to = 0x243F, .category = .unassigned },
2128 .{ .from = 0x2440, .to = 0x244A, .category = .disallowed },
2129 .{ .from = 0x244B, .to = 0x245F, .category = .unassigned },
2130 .{ .from = 0x2460, .to = 0x2B73, .category = .disallowed },
2131 .{ .from = 0x2B74, .to = 0x2B75, .category = .unassigned },
2132 .{ .from = 0x2B76, .to = 0x2C2F, .category = .disallowed },
2133 .{ .from = 0x2C30, .to = 0x2C5F, .category = .pvalid },
2134 .{ .from = 0x2C62, .to = 0x2C64, .category = .disallowed },
2135 .{ .from = 0x2C65, .to = 0x2C66, .category = .pvalid },
2136 .{ .from = 0x2C6D, .to = 0x2C70, .category = .disallowed },
2137 .{ .from = 0x2C73, .to = 0x2C74, .category = .pvalid },
2138 .{ .from = 0x2C76, .to = 0x2C7B, .category = .pvalid },
2139 .{ .from = 0x2C7C, .to = 0x2C80, .category = .disallowed },
2140 .{ .from = 0x2CE3, .to = 0x2CE4, .category = .pvalid },
2141 .{ .from = 0x2CE5, .to = 0x2CEB, .category = .disallowed },
2142 .{ .from = 0x2CEE, .to = 0x2CF1, .category = .pvalid },
2143 .{ .from = 0x2CF4, .to = 0x2CF8, .category = .unassigned },
2144 .{ .from = 0x2CF9, .to = 0x2CFF, .category = .disallowed },
2145 .{ .from = 0x2D00, .to = 0x2D25, .category = .pvalid },
2146 .{ .from = 0x2D28, .to = 0x2D2C, .category = .unassigned },
2147 .{ .from = 0x2D2E, .to = 0x2D2F, .category = .unassigned },
2148 .{ .from = 0x2D30, .to = 0x2D67, .category = .pvalid },
2149 .{ .from = 0x2D68, .to = 0x2D6E, .category = .unassigned },
2150 .{ .from = 0x2D6F, .to = 0x2D70, .category = .disallowed },
2151 .{ .from = 0x2D71, .to = 0x2D7E, .category = .unassigned },
2152 .{ .from = 0x2D7F, .to = 0x2D96, .category = .pvalid },
2153 .{ .from = 0x2D97, .to = 0x2D9F, .category = .unassigned },
2154 .{ .from = 0x2DA0, .to = 0x2DA6, .category = .pvalid },
2155 .{ .from = 0x2DA8, .to = 0x2DAE, .category = .pvalid },
2156 .{ .from = 0x2DB0, .to = 0x2DB6, .category = .pvalid },
2157 .{ .from = 0x2DB8, .to = 0x2DBE, .category = .pvalid },
2158 .{ .from = 0x2DC0, .to = 0x2DC6, .category = .pvalid },
2159 .{ .from = 0x2DC8, .to = 0x2DCE, .category = .pvalid },
2160 .{ .from = 0x2DD0, .to = 0x2DD6, .category = .pvalid },
2161 .{ .from = 0x2DD8, .to = 0x2DDE, .category = .pvalid },
2162 .{ .from = 0x2DE0, .to = 0x2DFF, .category = .pvalid },
2163 .{ .from = 0x2E00, .to = 0x2E2E, .category = .disallowed },
2164 .{ .from = 0x2E30, .to = 0x2E5D, .category = .disallowed },
2165 .{ .from = 0x2E5E, .to = 0x2E7F, .category = .unassigned },
2166 .{ .from = 0x2E80, .to = 0x2E99, .category = .disallowed },
2167 .{ .from = 0x2E9B, .to = 0x2EF3, .category = .disallowed },
2168 .{ .from = 0x2EF4, .to = 0x2EFF, .category = .unassigned },
2169 .{ .from = 0x2F00, .to = 0x2FD5, .category = .disallowed },
2170 .{ .from = 0x2FD6, .to = 0x2FEF, .category = .unassigned },
2171 .{ .from = 0x2FF0, .to = 0x3004, .category = .disallowed },
2172 .{ .from = 0x3005, .to = 0x3007, .category = .pvalid },
2173 .{ .from = 0x3008, .to = 0x3029, .category = .disallowed },
2174 .{ .from = 0x302A, .to = 0x302D, .category = .pvalid },
2175 .{ .from = 0x302E, .to = 0x303B, .category = .disallowed },
2176 .{ .from = 0x303D, .to = 0x303F, .category = .disallowed },
2177 .{ .from = 0x3041, .to = 0x3096, .category = .pvalid },
2178 .{ .from = 0x3097, .to = 0x3098, .category = .unassigned },
2179 .{ .from = 0x3099, .to = 0x309A, .category = .pvalid },
2180 .{ .from = 0x309B, .to = 0x309C, .category = .disallowed },
2181 .{ .from = 0x309D, .to = 0x309E, .category = .pvalid },
2182 .{ .from = 0x309F, .to = 0x30A0, .category = .disallowed },
2183 .{ .from = 0x30A1, .to = 0x30FA, .category = .pvalid },
2184 .{ .from = 0x30FC, .to = 0x30FE, .category = .pvalid },
2185 .{ .from = 0x3100, .to = 0x3104, .category = .unassigned },
2186 .{ .from = 0x3105, .to = 0x312F, .category = .pvalid },
2187 .{ .from = 0x3131, .to = 0x318E, .category = .disallowed },
2188 .{ .from = 0x3190, .to = 0x319F, .category = .disallowed },
2189 .{ .from = 0x31A0, .to = 0x31BF, .category = .pvalid },
2190 .{ .from = 0x31C0, .to = 0x31E5, .category = .disallowed },
2191 .{ .from = 0x31E6, .to = 0x31EE, .category = .unassigned },
2192 .{ .from = 0x31F0, .to = 0x31FF, .category = .pvalid },
2193 .{ .from = 0x3200, .to = 0x321E, .category = .disallowed },
2194 .{ .from = 0x3220, .to = 0x33FF, .category = .disallowed },
2195 .{ .from = 0x3400, .to = 0x4DBF, .category = .pvalid },
2196 .{ .from = 0x4DC0, .to = 0x4DFF, .category = .disallowed },
2197 .{ .from = 0x4E00, .to = 0xA48C, .category = .pvalid },
2198 .{ .from = 0xA48D, .to = 0xA48F, .category = .unassigned },
2199 .{ .from = 0xA490, .to = 0xA4C6, .category = .disallowed },
2200 .{ .from = 0xA4C7, .to = 0xA4CF, .category = .unassigned },
2201 .{ .from = 0xA4D0, .to = 0xA4FD, .category = .pvalid },
2202 .{ .from = 0xA4FE, .to = 0xA4FF, .category = .disallowed },
2203 .{ .from = 0xA500, .to = 0xA60C, .category = .pvalid },
2204 .{ .from = 0xA60D, .to = 0xA60F, .category = .disallowed },
2205 .{ .from = 0xA610, .to = 0xA62B, .category = .pvalid },
2206 .{ .from = 0xA62C, .to = 0xA63F, .category = .unassigned },
2207 .{ .from = 0xA66D, .to = 0xA66F, .category = .pvalid },
2208 .{ .from = 0xA670, .to = 0xA673, .category = .disallowed },
2209 .{ .from = 0xA674, .to = 0xA67D, .category = .pvalid },
2210 .{ .from = 0xA69C, .to = 0xA69D, .category = .disallowed },
2211 .{ .from = 0xA69E, .to = 0xA6E5, .category = .pvalid },
2212 .{ .from = 0xA6E6, .to = 0xA6EF, .category = .disallowed },
2213 .{ .from = 0xA6F0, .to = 0xA6F1, .category = .pvalid },
2214 .{ .from = 0xA6F2, .to = 0xA6F7, .category = .disallowed },
2215 .{ .from = 0xA6F8, .to = 0xA6FF, .category = .unassigned },
2216 .{ .from = 0xA700, .to = 0xA716, .category = .disallowed },
2217 .{ .from = 0xA717, .to = 0xA71F, .category = .pvalid },
2218 .{ .from = 0xA720, .to = 0xA722, .category = .disallowed },
2219 .{ .from = 0xA72F, .to = 0xA731, .category = .pvalid },
2220 .{ .from = 0xA771, .to = 0xA778, .category = .pvalid },
2221 .{ .from = 0xA77D, .to = 0xA77E, .category = .disallowed },
2222 .{ .from = 0xA787, .to = 0xA788, .category = .pvalid },
2223 .{ .from = 0xA789, .to = 0xA78B, .category = .disallowed },
2224 .{ .from = 0xA78E, .to = 0xA78F, .category = .pvalid },
2225 .{ .from = 0xA793, .to = 0xA795, .category = .pvalid },
2226 .{ .from = 0xA7AA, .to = 0xA7AE, .category = .disallowed },
2227 .{ .from = 0xA7B0, .to = 0xA7B4, .category = .disallowed },
2228 .{ .from = 0xA7C4, .to = 0xA7C7, .category = .disallowed },
2229 .{ .from = 0xA7CB, .to = 0xA7CC, .category = .disallowed },
2230 .{ .from = 0xA7DD, .to = 0xA7F0, .category = .unassigned },
2231 .{ .from = 0xA7F1, .to = 0xA7F5, .category = .disallowed },
2232 .{ .from = 0xA7F6, .to = 0xA7F7, .category = .pvalid },
2233 .{ .from = 0xA7F8, .to = 0xA7F9, .category = .disallowed },
2234 .{ .from = 0xA7FA, .to = 0xA827, .category = .pvalid },
2235 .{ .from = 0xA828, .to = 0xA82B, .category = .disallowed },
2236 .{ .from = 0xA82D, .to = 0xA82F, .category = .unassigned },
2237 .{ .from = 0xA830, .to = 0xA839, .category = .disallowed },
2238 .{ .from = 0xA83A, .to = 0xA83F, .category = .unassigned },
2239 .{ .from = 0xA840, .to = 0xA873, .category = .pvalid },
2240 .{ .from = 0xA874, .to = 0xA877, .category = .disallowed },
2241 .{ .from = 0xA878, .to = 0xA87F, .category = .unassigned },
2242 .{ .from = 0xA880, .to = 0xA8C5, .category = .pvalid },
2243 .{ .from = 0xA8C6, .to = 0xA8CD, .category = .unassigned },
2244 .{ .from = 0xA8CE, .to = 0xA8CF, .category = .disallowed },
2245 .{ .from = 0xA8D0, .to = 0xA8D9, .category = .pvalid },
2246 .{ .from = 0xA8DA, .to = 0xA8DF, .category = .unassigned },
2247 .{ .from = 0xA8E0, .to = 0xA8F7, .category = .pvalid },
2248 .{ .from = 0xA8F8, .to = 0xA8FA, .category = .disallowed },
2249 .{ .from = 0xA8FD, .to = 0xA92D, .category = .pvalid },
2250 .{ .from = 0xA92E, .to = 0xA92F, .category = .disallowed },
2251 .{ .from = 0xA930, .to = 0xA953, .category = .pvalid },
2252 .{ .from = 0xA954, .to = 0xA95E, .category = .unassigned },
2253 .{ .from = 0xA95F, .to = 0xA97C, .category = .disallowed },
2254 .{ .from = 0xA97D, .to = 0xA97F, .category = .unassigned },
2255 .{ .from = 0xA980, .to = 0xA9C0, .category = .pvalid },
2256 .{ .from = 0xA9C1, .to = 0xA9CD, .category = .disallowed },
2257 .{ .from = 0xA9CF, .to = 0xA9D9, .category = .pvalid },
2258 .{ .from = 0xA9DA, .to = 0xA9DD, .category = .unassigned },
2259 .{ .from = 0xA9DE, .to = 0xA9DF, .category = .disallowed },
2260 .{ .from = 0xA9E0, .to = 0xA9FE, .category = .pvalid },
2261 .{ .from = 0xAA00, .to = 0xAA36, .category = .pvalid },
2262 .{ .from = 0xAA37, .to = 0xAA3F, .category = .unassigned },
2263 .{ .from = 0xAA40, .to = 0xAA4D, .category = .pvalid },
2264 .{ .from = 0xAA4E, .to = 0xAA4F, .category = .unassigned },
2265 .{ .from = 0xAA50, .to = 0xAA59, .category = .pvalid },
2266 .{ .from = 0xAA5A, .to = 0xAA5B, .category = .unassigned },
2267 .{ .from = 0xAA5C, .to = 0xAA5F, .category = .disallowed },
2268 .{ .from = 0xAA60, .to = 0xAA76, .category = .pvalid },
2269 .{ .from = 0xAA77, .to = 0xAA79, .category = .disallowed },
2270 .{ .from = 0xAA7A, .to = 0xAAC2, .category = .pvalid },
2271 .{ .from = 0xAAC3, .to = 0xAADA, .category = .unassigned },
2272 .{ .from = 0xAADB, .to = 0xAADD, .category = .pvalid },
2273 .{ .from = 0xAADE, .to = 0xAADF, .category = .disallowed },
2274 .{ .from = 0xAAE0, .to = 0xAAEF, .category = .pvalid },
2275 .{ .from = 0xAAF0, .to = 0xAAF1, .category = .disallowed },
2276 .{ .from = 0xAAF2, .to = 0xAAF6, .category = .pvalid },
2277 .{ .from = 0xAAF7, .to = 0xAB00, .category = .unassigned },
2278 .{ .from = 0xAB01, .to = 0xAB06, .category = .pvalid },
2279 .{ .from = 0xAB07, .to = 0xAB08, .category = .unassigned },
2280 .{ .from = 0xAB09, .to = 0xAB0E, .category = .pvalid },
2281 .{ .from = 0xAB0F, .to = 0xAB10, .category = .unassigned },
2282 .{ .from = 0xAB11, .to = 0xAB16, .category = .pvalid },
2283 .{ .from = 0xAB17, .to = 0xAB1F, .category = .unassigned },
2284 .{ .from = 0xAB20, .to = 0xAB26, .category = .pvalid },
2285 .{ .from = 0xAB28, .to = 0xAB2E, .category = .pvalid },
2286 .{ .from = 0xAB30, .to = 0xAB5A, .category = .pvalid },
2287 .{ .from = 0xAB5B, .to = 0xAB5F, .category = .disallowed },
2288 .{ .from = 0xAB60, .to = 0xAB68, .category = .pvalid },
2289 .{ .from = 0xAB69, .to = 0xAB6B, .category = .disallowed },
2290 .{ .from = 0xAB6C, .to = 0xAB6F, .category = .unassigned },
2291 .{ .from = 0xAB70, .to = 0xABBF, .category = .disallowed },
2292 .{ .from = 0xABC0, .to = 0xABEA, .category = .pvalid },
2293 .{ .from = 0xABEC, .to = 0xABED, .category = .pvalid },
2294 .{ .from = 0xABEE, .to = 0xABEF, .category = .unassigned },
2295 .{ .from = 0xABF0, .to = 0xABF9, .category = .pvalid },
2296 .{ .from = 0xABFA, .to = 0xABFF, .category = .unassigned },
2297 .{ .from = 0xAC00, .to = 0xD7A3, .category = .pvalid },
2298 .{ .from = 0xD7A4, .to = 0xD7AF, .category = .unassigned },
2299 .{ .from = 0xD7B0, .to = 0xD7C6, .category = .disallowed },
2300 .{ .from = 0xD7C7, .to = 0xD7CA, .category = .unassigned },
2301 .{ .from = 0xD7CB, .to = 0xD7FB, .category = .disallowed },
2302 .{ .from = 0xD7FC, .to = 0xD7FF, .category = .unassigned },
2303 .{ .from = 0xD800, .to = 0xFA0D, .category = .disallowed },
2304 .{ .from = 0xFA0E, .to = 0xFA0F, .category = .pvalid },
2305 .{ .from = 0xFA13, .to = 0xFA14, .category = .pvalid },
2306 .{ .from = 0xFA15, .to = 0xFA1E, .category = .disallowed },
2307 .{ .from = 0xFA23, .to = 0xFA24, .category = .pvalid },
2308 .{ .from = 0xFA25, .to = 0xFA26, .category = .disallowed },
2309 .{ .from = 0xFA27, .to = 0xFA29, .category = .pvalid },
2310 .{ .from = 0xFA2A, .to = 0xFA6D, .category = .disallowed },
2311 .{ .from = 0xFA6E, .to = 0xFA6F, .category = .unassigned },
2312 .{ .from = 0xFA70, .to = 0xFAD9, .category = .disallowed },
2313 .{ .from = 0xFADA, .to = 0xFAFF, .category = .unassigned },
2314 .{ .from = 0xFB00, .to = 0xFB06, .category = .disallowed },
2315 .{ .from = 0xFB07, .to = 0xFB12, .category = .unassigned },
2316 .{ .from = 0xFB13, .to = 0xFB17, .category = .disallowed },
2317 .{ .from = 0xFB18, .to = 0xFB1C, .category = .unassigned },
2318 .{ .from = 0xFB1F, .to = 0xFB36, .category = .disallowed },
2319 .{ .from = 0xFB38, .to = 0xFB3C, .category = .disallowed },
2320 .{ .from = 0xFB40, .to = 0xFB41, .category = .disallowed },
2321 .{ .from = 0xFB43, .to = 0xFB44, .category = .disallowed },
2322 .{ .from = 0xFB46, .to = 0xFE19, .category = .disallowed },
2323 .{ .from = 0xFE1A, .to = 0xFE1F, .category = .unassigned },
2324 .{ .from = 0xFE20, .to = 0xFE2F, .category = .pvalid },
2325 .{ .from = 0xFE30, .to = 0xFE52, .category = .disallowed },
2326 .{ .from = 0xFE54, .to = 0xFE66, .category = .disallowed },
2327 .{ .from = 0xFE68, .to = 0xFE6B, .category = .disallowed },
2328 .{ .from = 0xFE6C, .to = 0xFE6F, .category = .unassigned },
2329 .{ .from = 0xFE70, .to = 0xFE72, .category = .disallowed },
2330 .{ .from = 0xFE76, .to = 0xFEFC, .category = .disallowed },
2331 .{ .from = 0xFEFD, .to = 0xFEFE, .category = .unassigned },
2332 .{ .from = 0xFF01, .to = 0xFFBE, .category = .disallowed },
2333 .{ .from = 0xFFBF, .to = 0xFFC1, .category = .unassigned },
2334 .{ .from = 0xFFC2, .to = 0xFFC7, .category = .disallowed },
2335 .{ .from = 0xFFC8, .to = 0xFFC9, .category = .unassigned },
2336 .{ .from = 0xFFCA, .to = 0xFFCF, .category = .disallowed },
2337 .{ .from = 0xFFD0, .to = 0xFFD1, .category = .unassigned },
2338 .{ .from = 0xFFD2, .to = 0xFFD7, .category = .disallowed },
2339 .{ .from = 0xFFD8, .to = 0xFFD9, .category = .unassigned },
2340 .{ .from = 0xFFDA, .to = 0xFFDC, .category = .disallowed },
2341 .{ .from = 0xFFDD, .to = 0xFFDF, .category = .unassigned },
2342 .{ .from = 0xFFE0, .to = 0xFFE6, .category = .disallowed },
2343 .{ .from = 0xFFE8, .to = 0xFFEE, .category = .disallowed },
2344 .{ .from = 0xFFEF, .to = 0xFFF8, .category = .unassigned },
2345 .{ .from = 0xFFF9, .to = 0xFFFF, .category = .disallowed },
2346 .{ .from = 0x10000, .to = 0x1000B, .category = .pvalid },
2347 .{ .from = 0x1000D, .to = 0x10026, .category = .pvalid },
2348 .{ .from = 0x10028, .to = 0x1003A, .category = .pvalid },
2349 .{ .from = 0x1003C, .to = 0x1003D, .category = .pvalid },
2350 .{ .from = 0x1003F, .to = 0x1004D, .category = .pvalid },
2351 .{ .from = 0x1004E, .to = 0x1004F, .category = .unassigned },
2352 .{ .from = 0x10050, .to = 0x1005D, .category = .pvalid },
2353 .{ .from = 0x1005E, .to = 0x1007F, .category = .unassigned },
2354 .{ .from = 0x10080, .to = 0x100FA, .category = .pvalid },
2355 .{ .from = 0x100FB, .to = 0x100FF, .category = .unassigned },
2356 .{ .from = 0x10100, .to = 0x10102, .category = .disallowed },
2357 .{ .from = 0x10103, .to = 0x10106, .category = .unassigned },
2358 .{ .from = 0x10107, .to = 0x10133, .category = .disallowed },
2359 .{ .from = 0x10134, .to = 0x10136, .category = .unassigned },
2360 .{ .from = 0x10137, .to = 0x1018E, .category = .disallowed },
2361 .{ .from = 0x10190, .to = 0x1019C, .category = .disallowed },
2362 .{ .from = 0x1019D, .to = 0x1019F, .category = .unassigned },
2363 .{ .from = 0x101A1, .to = 0x101CF, .category = .unassigned },
2364 .{ .from = 0x101D0, .to = 0x101FC, .category = .disallowed },
2365 .{ .from = 0x101FE, .to = 0x1027F, .category = .unassigned },
2366 .{ .from = 0x10280, .to = 0x1029C, .category = .pvalid },
2367 .{ .from = 0x1029D, .to = 0x1029F, .category = .unassigned },
2368 .{ .from = 0x102A0, .to = 0x102D0, .category = .pvalid },
2369 .{ .from = 0x102D1, .to = 0x102DF, .category = .unassigned },
2370 .{ .from = 0x102E1, .to = 0x102FB, .category = .disallowed },
2371 .{ .from = 0x102FC, .to = 0x102FF, .category = .unassigned },
2372 .{ .from = 0x10300, .to = 0x1031F, .category = .pvalid },
2373 .{ .from = 0x10320, .to = 0x10323, .category = .disallowed },
2374 .{ .from = 0x10324, .to = 0x1032C, .category = .unassigned },
2375 .{ .from = 0x1032D, .to = 0x10340, .category = .pvalid },
2376 .{ .from = 0x10342, .to = 0x10349, .category = .pvalid },
2377 .{ .from = 0x1034B, .to = 0x1034F, .category = .unassigned },
2378 .{ .from = 0x10350, .to = 0x1037A, .category = .pvalid },
2379 .{ .from = 0x1037B, .to = 0x1037F, .category = .unassigned },
2380 .{ .from = 0x10380, .to = 0x1039D, .category = .pvalid },
2381 .{ .from = 0x103A0, .to = 0x103C3, .category = .pvalid },
2382 .{ .from = 0x103C4, .to = 0x103C7, .category = .unassigned },
2383 .{ .from = 0x103C8, .to = 0x103CF, .category = .pvalid },
2384 .{ .from = 0x103D0, .to = 0x103D5, .category = .disallowed },
2385 .{ .from = 0x103D6, .to = 0x103FF, .category = .unassigned },
2386 .{ .from = 0x10400, .to = 0x10427, .category = .disallowed },
2387 .{ .from = 0x10428, .to = 0x1049D, .category = .pvalid },
2388 .{ .from = 0x1049E, .to = 0x1049F, .category = .unassigned },
2389 .{ .from = 0x104A0, .to = 0x104A9, .category = .pvalid },
2390 .{ .from = 0x104AA, .to = 0x104AF, .category = .unassigned },
2391 .{ .from = 0x104B0, .to = 0x104D3, .category = .disallowed },
2392 .{ .from = 0x104D4, .to = 0x104D7, .category = .unassigned },
2393 .{ .from = 0x104D8, .to = 0x104FB, .category = .pvalid },
2394 .{ .from = 0x104FC, .to = 0x104FF, .category = .unassigned },
2395 .{ .from = 0x10500, .to = 0x10527, .category = .pvalid },
2396 .{ .from = 0x10528, .to = 0x1052F, .category = .unassigned },
2397 .{ .from = 0x10530, .to = 0x10563, .category = .pvalid },
2398 .{ .from = 0x10564, .to = 0x1056E, .category = .unassigned },
2399 .{ .from = 0x1056F, .to = 0x1057A, .category = .disallowed },
2400 .{ .from = 0x1057C, .to = 0x1058A, .category = .disallowed },
2401 .{ .from = 0x1058C, .to = 0x10592, .category = .disallowed },
2402 .{ .from = 0x10594, .to = 0x10595, .category = .disallowed },
2403 .{ .from = 0x10597, .to = 0x105A1, .category = .pvalid },
2404 .{ .from = 0x105A3, .to = 0x105B1, .category = .pvalid },
2405 .{ .from = 0x105B3, .to = 0x105B9, .category = .pvalid },
2406 .{ .from = 0x105BB, .to = 0x105BC, .category = .pvalid },
2407 .{ .from = 0x105BD, .to = 0x105BF, .category = .unassigned },
2408 .{ .from = 0x105C0, .to = 0x105F3, .category = .pvalid },
2409 .{ .from = 0x105F4, .to = 0x105FF, .category = .unassigned },
2410 .{ .from = 0x10600, .to = 0x10736, .category = .pvalid },
2411 .{ .from = 0x10737, .to = 0x1073F, .category = .unassigned },
2412 .{ .from = 0x10740, .to = 0x10755, .category = .pvalid },
2413 .{ .from = 0x10756, .to = 0x1075F, .category = .unassigned },
2414 .{ .from = 0x10760, .to = 0x10767, .category = .pvalid },
2415 .{ .from = 0x10768, .to = 0x1077F, .category = .unassigned },
2416 .{ .from = 0x10781, .to = 0x10785, .category = .disallowed },
2417 .{ .from = 0x10787, .to = 0x107B0, .category = .disallowed },
2418 .{ .from = 0x107B2, .to = 0x107BA, .category = .disallowed },
2419 .{ .from = 0x107BB, .to = 0x107FF, .category = .unassigned },
2420 .{ .from = 0x10800, .to = 0x10805, .category = .pvalid },
2421 .{ .from = 0x10806, .to = 0x10807, .category = .unassigned },
2422 .{ .from = 0x1080A, .to = 0x10835, .category = .pvalid },
2423 .{ .from = 0x10837, .to = 0x10838, .category = .pvalid },
2424 .{ .from = 0x10839, .to = 0x1083B, .category = .unassigned },
2425 .{ .from = 0x1083D, .to = 0x1083E, .category = .unassigned },
2426 .{ .from = 0x1083F, .to = 0x10855, .category = .pvalid },
2427 .{ .from = 0x10857, .to = 0x1085F, .category = .disallowed },
2428 .{ .from = 0x10860, .to = 0x10876, .category = .pvalid },
2429 .{ .from = 0x10877, .to = 0x1087F, .category = .disallowed },
2430 .{ .from = 0x10880, .to = 0x1089E, .category = .pvalid },
2431 .{ .from = 0x1089F, .to = 0x108A6, .category = .unassigned },
2432 .{ .from = 0x108A7, .to = 0x108AF, .category = .disallowed },
2433 .{ .from = 0x108B0, .to = 0x108DF, .category = .unassigned },
2434 .{ .from = 0x108E0, .to = 0x108F2, .category = .pvalid },
2435 .{ .from = 0x108F4, .to = 0x108F5, .category = .pvalid },
2436 .{ .from = 0x108F6, .to = 0x108FA, .category = .unassigned },
2437 .{ .from = 0x108FB, .to = 0x108FF, .category = .disallowed },
2438 .{ .from = 0x10900, .to = 0x10915, .category = .pvalid },
2439 .{ .from = 0x10916, .to = 0x1091B, .category = .disallowed },
2440 .{ .from = 0x1091C, .to = 0x1091E, .category = .unassigned },
2441 .{ .from = 0x10920, .to = 0x10939, .category = .pvalid },
2442 .{ .from = 0x1093A, .to = 0x1093E, .category = .unassigned },
2443 .{ .from = 0x10940, .to = 0x10959, .category = .pvalid },
2444 .{ .from = 0x1095A, .to = 0x1097F, .category = .unassigned },
2445 .{ .from = 0x10980, .to = 0x109B7, .category = .pvalid },
2446 .{ .from = 0x109B8, .to = 0x109BB, .category = .unassigned },
2447 .{ .from = 0x109BC, .to = 0x109BD, .category = .disallowed },
2448 .{ .from = 0x109BE, .to = 0x109BF, .category = .pvalid },
2449 .{ .from = 0x109C0, .to = 0x109CF, .category = .disallowed },
2450 .{ .from = 0x109D0, .to = 0x109D1, .category = .unassigned },
2451 .{ .from = 0x109D2, .to = 0x109FF, .category = .disallowed },
2452 .{ .from = 0x10A00, .to = 0x10A03, .category = .pvalid },
2453 .{ .from = 0x10A05, .to = 0x10A06, .category = .pvalid },
2454 .{ .from = 0x10A07, .to = 0x10A0B, .category = .unassigned },
2455 .{ .from = 0x10A0C, .to = 0x10A13, .category = .pvalid },
2456 .{ .from = 0x10A15, .to = 0x10A17, .category = .pvalid },
2457 .{ .from = 0x10A19, .to = 0x10A35, .category = .pvalid },
2458 .{ .from = 0x10A36, .to = 0x10A37, .category = .unassigned },
2459 .{ .from = 0x10A38, .to = 0x10A3A, .category = .pvalid },
2460 .{ .from = 0x10A3B, .to = 0x10A3E, .category = .unassigned },
2461 .{ .from = 0x10A40, .to = 0x10A48, .category = .disallowed },
2462 .{ .from = 0x10A49, .to = 0x10A4F, .category = .unassigned },
2463 .{ .from = 0x10A50, .to = 0x10A58, .category = .disallowed },
2464 .{ .from = 0x10A59, .to = 0x10A5F, .category = .unassigned },
2465 .{ .from = 0x10A60, .to = 0x10A7C, .category = .pvalid },
2466 .{ .from = 0x10A7D, .to = 0x10A7F, .category = .disallowed },
2467 .{ .from = 0x10A80, .to = 0x10A9C, .category = .pvalid },
2468 .{ .from = 0x10A9D, .to = 0x10A9F, .category = .disallowed },
2469 .{ .from = 0x10AA0, .to = 0x10ABF, .category = .unassigned },
2470 .{ .from = 0x10AC0, .to = 0x10AC7, .category = .pvalid },
2471 .{ .from = 0x10AC9, .to = 0x10AE6, .category = .pvalid },
2472 .{ .from = 0x10AE7, .to = 0x10AEA, .category = .unassigned },
2473 .{ .from = 0x10AEB, .to = 0x10AF6, .category = .disallowed },
2474 .{ .from = 0x10AF7, .to = 0x10AFF, .category = .unassigned },
2475 .{ .from = 0x10B00, .to = 0x10B35, .category = .pvalid },
2476 .{ .from = 0x10B36, .to = 0x10B38, .category = .unassigned },
2477 .{ .from = 0x10B39, .to = 0x10B3F, .category = .disallowed },
2478 .{ .from = 0x10B40, .to = 0x10B55, .category = .pvalid },
2479 .{ .from = 0x10B56, .to = 0x10B57, .category = .unassigned },
2480 .{ .from = 0x10B58, .to = 0x10B5F, .category = .disallowed },
2481 .{ .from = 0x10B60, .to = 0x10B72, .category = .pvalid },
2482 .{ .from = 0x10B73, .to = 0x10B77, .category = .unassigned },
2483 .{ .from = 0x10B78, .to = 0x10B7F, .category = .disallowed },
2484 .{ .from = 0x10B80, .to = 0x10B91, .category = .pvalid },
2485 .{ .from = 0x10B92, .to = 0x10B98, .category = .unassigned },
2486 .{ .from = 0x10B99, .to = 0x10B9C, .category = .disallowed },
2487 .{ .from = 0x10B9D, .to = 0x10BA8, .category = .unassigned },
2488 .{ .from = 0x10BA9, .to = 0x10BAF, .category = .disallowed },
2489 .{ .from = 0x10BB0, .to = 0x10BFF, .category = .unassigned },
2490 .{ .from = 0x10C00, .to = 0x10C48, .category = .pvalid },
2491 .{ .from = 0x10C49, .to = 0x10C7F, .category = .unassigned },
2492 .{ .from = 0x10C80, .to = 0x10CB2, .category = .disallowed },
2493 .{ .from = 0x10CB3, .to = 0x10CBF, .category = .unassigned },
2494 .{ .from = 0x10CC0, .to = 0x10CF2, .category = .pvalid },
2495 .{ .from = 0x10CF3, .to = 0x10CF9, .category = .unassigned },
2496 .{ .from = 0x10CFA, .to = 0x10CFF, .category = .disallowed },
2497 .{ .from = 0x10D00, .to = 0x10D27, .category = .pvalid },
2498 .{ .from = 0x10D28, .to = 0x10D2F, .category = .unassigned },
2499 .{ .from = 0x10D30, .to = 0x10D39, .category = .pvalid },
2500 .{ .from = 0x10D3A, .to = 0x10D3F, .category = .unassigned },
2501 .{ .from = 0x10D40, .to = 0x10D4F, .category = .pvalid },
2502 .{ .from = 0x10D50, .to = 0x10D65, .category = .disallowed },
2503 .{ .from = 0x10D66, .to = 0x10D68, .category = .unassigned },
2504 .{ .from = 0x10D69, .to = 0x10D6D, .category = .pvalid },
2505 .{ .from = 0x10D6F, .to = 0x10D85, .category = .pvalid },
2506 .{ .from = 0x10D86, .to = 0x10D8D, .category = .unassigned },
2507 .{ .from = 0x10D8E, .to = 0x10D8F, .category = .disallowed },
2508 .{ .from = 0x10D90, .to = 0x10E5F, .category = .unassigned },
2509 .{ .from = 0x10E60, .to = 0x10E7E, .category = .disallowed },
2510 .{ .from = 0x10E80, .to = 0x10EA9, .category = .pvalid },
2511 .{ .from = 0x10EAB, .to = 0x10EAC, .category = .pvalid },
2512 .{ .from = 0x10EAE, .to = 0x10EAF, .category = .unassigned },
2513 .{ .from = 0x10EB0, .to = 0x10EB1, .category = .pvalid },
2514 .{ .from = 0x10EB2, .to = 0x10EC1, .category = .unassigned },
2515 .{ .from = 0x10EC2, .to = 0x10EC7, .category = .pvalid },
2516 .{ .from = 0x10EC8, .to = 0x10ECF, .category = .unassigned },
2517 .{ .from = 0x10ED0, .to = 0x10ED8, .category = .disallowed },
2518 .{ .from = 0x10ED9, .to = 0x10EF9, .category = .unassigned },
2519 .{ .from = 0x10EFA, .to = 0x10F1C, .category = .pvalid },
2520 .{ .from = 0x10F1D, .to = 0x10F26, .category = .disallowed },
2521 .{ .from = 0x10F28, .to = 0x10F2F, .category = .unassigned },
2522 .{ .from = 0x10F30, .to = 0x10F50, .category = .pvalid },
2523 .{ .from = 0x10F51, .to = 0x10F59, .category = .disallowed },
2524 .{ .from = 0x10F5A, .to = 0x10F6F, .category = .unassigned },
2525 .{ .from = 0x10F70, .to = 0x10F85, .category = .pvalid },
2526 .{ .from = 0x10F86, .to = 0x10F89, .category = .disallowed },
2527 .{ .from = 0x10F8A, .to = 0x10FAF, .category = .unassigned },
2528 .{ .from = 0x10FB0, .to = 0x10FC4, .category = .pvalid },
2529 .{ .from = 0x10FC5, .to = 0x10FCB, .category = .disallowed },
2530 .{ .from = 0x10FCC, .to = 0x10FDF, .category = .unassigned },
2531 .{ .from = 0x10FE0, .to = 0x10FF6, .category = .pvalid },
2532 .{ .from = 0x10FF7, .to = 0x10FFF, .category = .unassigned },
2533 .{ .from = 0x11000, .to = 0x11046, .category = .pvalid },
2534 .{ .from = 0x11047, .to = 0x1104D, .category = .disallowed },
2535 .{ .from = 0x1104E, .to = 0x11051, .category = .unassigned },
2536 .{ .from = 0x11052, .to = 0x11065, .category = .disallowed },
2537 .{ .from = 0x11066, .to = 0x11075, .category = .pvalid },
2538 .{ .from = 0x11076, .to = 0x1107E, .category = .unassigned },
2539 .{ .from = 0x1107F, .to = 0x110BA, .category = .pvalid },
2540 .{ .from = 0x110BB, .to = 0x110C1, .category = .disallowed },
2541 .{ .from = 0x110C3, .to = 0x110CC, .category = .unassigned },
2542 .{ .from = 0x110CE, .to = 0x110CF, .category = .unassigned },
2543 .{ .from = 0x110D0, .to = 0x110E8, .category = .pvalid },
2544 .{ .from = 0x110E9, .to = 0x110EF, .category = .unassigned },
2545 .{ .from = 0x110F0, .to = 0x110F9, .category = .pvalid },
2546 .{ .from = 0x110FA, .to = 0x110FF, .category = .unassigned },
2547 .{ .from = 0x11100, .to = 0x11134, .category = .pvalid },
2548 .{ .from = 0x11136, .to = 0x1113F, .category = .pvalid },
2549 .{ .from = 0x11140, .to = 0x11143, .category = .disallowed },
2550 .{ .from = 0x11144, .to = 0x11147, .category = .pvalid },
2551 .{ .from = 0x11148, .to = 0x1114F, .category = .unassigned },
2552 .{ .from = 0x11150, .to = 0x11173, .category = .pvalid },
2553 .{ .from = 0x11174, .to = 0x11175, .category = .disallowed },
2554 .{ .from = 0x11177, .to = 0x1117F, .category = .unassigned },
2555 .{ .from = 0x11180, .to = 0x111C4, .category = .pvalid },
2556 .{ .from = 0x111C5, .to = 0x111C8, .category = .disallowed },
2557 .{ .from = 0x111C9, .to = 0x111CC, .category = .pvalid },
2558 .{ .from = 0x111CE, .to = 0x111DA, .category = .pvalid },
2559 .{ .from = 0x111DD, .to = 0x111DF, .category = .disallowed },
2560 .{ .from = 0x111E1, .to = 0x111F4, .category = .disallowed },
2561 .{ .from = 0x111F5, .to = 0x111FF, .category = .unassigned },
2562 .{ .from = 0x11200, .to = 0x11211, .category = .pvalid },
2563 .{ .from = 0x11213, .to = 0x11237, .category = .pvalid },
2564 .{ .from = 0x11238, .to = 0x1123D, .category = .disallowed },
2565 .{ .from = 0x1123E, .to = 0x11241, .category = .pvalid },
2566 .{ .from = 0x11242, .to = 0x1127F, .category = .unassigned },
2567 .{ .from = 0x11280, .to = 0x11286, .category = .pvalid },
2568 .{ .from = 0x1128A, .to = 0x1128D, .category = .pvalid },
2569 .{ .from = 0x1128F, .to = 0x1129D, .category = .pvalid },
2570 .{ .from = 0x1129F, .to = 0x112A8, .category = .pvalid },
2571 .{ .from = 0x112AA, .to = 0x112AF, .category = .unassigned },
2572 .{ .from = 0x112B0, .to = 0x112EA, .category = .pvalid },
2573 .{ .from = 0x112EB, .to = 0x112EF, .category = .unassigned },
2574 .{ .from = 0x112F0, .to = 0x112F9, .category = .pvalid },
2575 .{ .from = 0x112FA, .to = 0x112FF, .category = .unassigned },
2576 .{ .from = 0x11300, .to = 0x11303, .category = .pvalid },
2577 .{ .from = 0x11305, .to = 0x1130C, .category = .pvalid },
2578 .{ .from = 0x1130D, .to = 0x1130E, .category = .unassigned },
2579 .{ .from = 0x1130F, .to = 0x11310, .category = .pvalid },
2580 .{ .from = 0x11311, .to = 0x11312, .category = .unassigned },
2581 .{ .from = 0x11313, .to = 0x11328, .category = .pvalid },
2582 .{ .from = 0x1132A, .to = 0x11330, .category = .pvalid },
2583 .{ .from = 0x11332, .to = 0x11333, .category = .pvalid },
2584 .{ .from = 0x11335, .to = 0x11339, .category = .pvalid },
2585 .{ .from = 0x1133B, .to = 0x11344, .category = .pvalid },
2586 .{ .from = 0x11345, .to = 0x11346, .category = .unassigned },
2587 .{ .from = 0x11347, .to = 0x11348, .category = .pvalid },
2588 .{ .from = 0x11349, .to = 0x1134A, .category = .unassigned },
2589 .{ .from = 0x1134B, .to = 0x1134D, .category = .pvalid },
2590 .{ .from = 0x1134E, .to = 0x1134F, .category = .unassigned },
2591 .{ .from = 0x11351, .to = 0x11356, .category = .unassigned },
2592 .{ .from = 0x11358, .to = 0x1135C, .category = .unassigned },
2593 .{ .from = 0x1135D, .to = 0x11363, .category = .pvalid },
2594 .{ .from = 0x11364, .to = 0x11365, .category = .unassigned },
2595 .{ .from = 0x11366, .to = 0x1136C, .category = .pvalid },
2596 .{ .from = 0x1136D, .to = 0x1136F, .category = .unassigned },
2597 .{ .from = 0x11370, .to = 0x11374, .category = .pvalid },
2598 .{ .from = 0x11375, .to = 0x1137F, .category = .unassigned },
2599 .{ .from = 0x11380, .to = 0x11389, .category = .pvalid },
2600 .{ .from = 0x1138C, .to = 0x1138D, .category = .unassigned },
2601 .{ .from = 0x11390, .to = 0x113B5, .category = .pvalid },
2602 .{ .from = 0x113B7, .to = 0x113C0, .category = .pvalid },
2603 .{ .from = 0x113C3, .to = 0x113C4, .category = .unassigned },
2604 .{ .from = 0x113C7, .to = 0x113CA, .category = .pvalid },
2605 .{ .from = 0x113CC, .to = 0x113D3, .category = .pvalid },
2606 .{ .from = 0x113D4, .to = 0x113D5, .category = .disallowed },
2607 .{ .from = 0x113D7, .to = 0x113D8, .category = .disallowed },
2608 .{ .from = 0x113D9, .to = 0x113E0, .category = .unassigned },
2609 .{ .from = 0x113E1, .to = 0x113E2, .category = .pvalid },
2610 .{ .from = 0x113E3, .to = 0x113FF, .category = .unassigned },
2611 .{ .from = 0x11400, .to = 0x1144A, .category = .pvalid },
2612 .{ .from = 0x1144B, .to = 0x1144F, .category = .disallowed },
2613 .{ .from = 0x11450, .to = 0x11459, .category = .pvalid },
2614 .{ .from = 0x1145A, .to = 0x1145B, .category = .disallowed },
2615 .{ .from = 0x1145E, .to = 0x11461, .category = .pvalid },
2616 .{ .from = 0x11462, .to = 0x1147F, .category = .unassigned },
2617 .{ .from = 0x11480, .to = 0x114C5, .category = .pvalid },
2618 .{ .from = 0x114C8, .to = 0x114CF, .category = .unassigned },
2619 .{ .from = 0x114D0, .to = 0x114D9, .category = .pvalid },
2620 .{ .from = 0x114DA, .to = 0x1157F, .category = .unassigned },
2621 .{ .from = 0x11580, .to = 0x115B5, .category = .pvalid },
2622 .{ .from = 0x115B6, .to = 0x115B7, .category = .unassigned },
2623 .{ .from = 0x115B8, .to = 0x115C0, .category = .pvalid },
2624 .{ .from = 0x115C1, .to = 0x115D7, .category = .disallowed },
2625 .{ .from = 0x115D8, .to = 0x115DD, .category = .pvalid },
2626 .{ .from = 0x115DE, .to = 0x115FF, .category = .unassigned },
2627 .{ .from = 0x11600, .to = 0x11640, .category = .pvalid },
2628 .{ .from = 0x11641, .to = 0x11643, .category = .disallowed },
2629 .{ .from = 0x11645, .to = 0x1164F, .category = .unassigned },
2630 .{ .from = 0x11650, .to = 0x11659, .category = .pvalid },
2631 .{ .from = 0x1165A, .to = 0x1165F, .category = .unassigned },
2632 .{ .from = 0x11660, .to = 0x1166C, .category = .disallowed },
2633 .{ .from = 0x1166D, .to = 0x1167F, .category = .unassigned },
2634 .{ .from = 0x11680, .to = 0x116B8, .category = .pvalid },
2635 .{ .from = 0x116BA, .to = 0x116BF, .category = .unassigned },
2636 .{ .from = 0x116C0, .to = 0x116C9, .category = .pvalid },
2637 .{ .from = 0x116CA, .to = 0x116CF, .category = .unassigned },
2638 .{ .from = 0x116D0, .to = 0x116E3, .category = .pvalid },
2639 .{ .from = 0x116E4, .to = 0x116FF, .category = .unassigned },
2640 .{ .from = 0x11700, .to = 0x1171A, .category = .pvalid },
2641 .{ .from = 0x1171B, .to = 0x1171C, .category = .unassigned },
2642 .{ .from = 0x1171D, .to = 0x1172B, .category = .pvalid },
2643 .{ .from = 0x1172C, .to = 0x1172F, .category = .unassigned },
2644 .{ .from = 0x11730, .to = 0x11739, .category = .pvalid },
2645 .{ .from = 0x1173A, .to = 0x1173F, .category = .disallowed },
2646 .{ .from = 0x11740, .to = 0x11746, .category = .pvalid },
2647 .{ .from = 0x11747, .to = 0x117FF, .category = .unassigned },
2648 .{ .from = 0x11800, .to = 0x1183A, .category = .pvalid },
2649 .{ .from = 0x1183C, .to = 0x1189F, .category = .unassigned },
2650 .{ .from = 0x118A0, .to = 0x118BF, .category = .disallowed },
2651 .{ .from = 0x118C0, .to = 0x118E9, .category = .pvalid },
2652 .{ .from = 0x118EA, .to = 0x118F2, .category = .disallowed },
2653 .{ .from = 0x118F3, .to = 0x118FE, .category = .unassigned },
2654 .{ .from = 0x118FF, .to = 0x11906, .category = .pvalid },
2655 .{ .from = 0x11907, .to = 0x11908, .category = .unassigned },
2656 .{ .from = 0x1190A, .to = 0x1190B, .category = .unassigned },
2657 .{ .from = 0x1190C, .to = 0x11913, .category = .pvalid },
2658 .{ .from = 0x11915, .to = 0x11916, .category = .pvalid },
2659 .{ .from = 0x11918, .to = 0x11935, .category = .pvalid },
2660 .{ .from = 0x11937, .to = 0x11938, .category = .pvalid },
2661 .{ .from = 0x11939, .to = 0x1193A, .category = .unassigned },
2662 .{ .from = 0x1193B, .to = 0x11943, .category = .pvalid },
2663 .{ .from = 0x11944, .to = 0x11946, .category = .disallowed },
2664 .{ .from = 0x11947, .to = 0x1194F, .category = .unassigned },
2665 .{ .from = 0x11950, .to = 0x11959, .category = .pvalid },
2666 .{ .from = 0x1195A, .to = 0x1199F, .category = .unassigned },
2667 .{ .from = 0x119A0, .to = 0x119A7, .category = .pvalid },
2668 .{ .from = 0x119A8, .to = 0x119A9, .category = .unassigned },
2669 .{ .from = 0x119AA, .to = 0x119D7, .category = .pvalid },
2670 .{ .from = 0x119D8, .to = 0x119D9, .category = .unassigned },
2671 .{ .from = 0x119DA, .to = 0x119E1, .category = .pvalid },
2672 .{ .from = 0x119E3, .to = 0x119E4, .category = .pvalid },
2673 .{ .from = 0x119E5, .to = 0x119FF, .category = .unassigned },
2674 .{ .from = 0x11A00, .to = 0x11A3E, .category = .pvalid },
2675 .{ .from = 0x11A3F, .to = 0x11A46, .category = .disallowed },
2676 .{ .from = 0x11A48, .to = 0x11A4F, .category = .unassigned },
2677 .{ .from = 0x11A50, .to = 0x11A99, .category = .pvalid },
2678 .{ .from = 0x11A9A, .to = 0x11A9C, .category = .disallowed },
2679 .{ .from = 0x11A9E, .to = 0x11AA2, .category = .disallowed },
2680 .{ .from = 0x11AA3, .to = 0x11AAF, .category = .unassigned },
2681 .{ .from = 0x11AB0, .to = 0x11AF8, .category = .pvalid },
2682 .{ .from = 0x11AF9, .to = 0x11AFF, .category = .unassigned },
2683 .{ .from = 0x11B00, .to = 0x11B09, .category = .disallowed },
2684 .{ .from = 0x11B0A, .to = 0x11B5F, .category = .unassigned },
2685 .{ .from = 0x11B60, .to = 0x11B67, .category = .pvalid },
2686 .{ .from = 0x11B68, .to = 0x11BBF, .category = .unassigned },
2687 .{ .from = 0x11BC0, .to = 0x11BE0, .category = .pvalid },
2688 .{ .from = 0x11BE2, .to = 0x11BEF, .category = .unassigned },
2689 .{ .from = 0x11BF0, .to = 0x11BF9, .category = .pvalid },
2690 .{ .from = 0x11BFA, .to = 0x11BFF, .category = .unassigned },
2691 .{ .from = 0x11C00, .to = 0x11C08, .category = .pvalid },
2692 .{ .from = 0x11C0A, .to = 0x11C36, .category = .pvalid },
2693 .{ .from = 0x11C38, .to = 0x11C40, .category = .pvalid },
2694 .{ .from = 0x11C41, .to = 0x11C45, .category = .disallowed },
2695 .{ .from = 0x11C46, .to = 0x11C4F, .category = .unassigned },
2696 .{ .from = 0x11C50, .to = 0x11C59, .category = .pvalid },
2697 .{ .from = 0x11C5A, .to = 0x11C6C, .category = .disallowed },
2698 .{ .from = 0x11C6D, .to = 0x11C6F, .category = .unassigned },
2699 .{ .from = 0x11C70, .to = 0x11C71, .category = .disallowed },
2700 .{ .from = 0x11C72, .to = 0x11C8F, .category = .pvalid },
2701 .{ .from = 0x11C90, .to = 0x11C91, .category = .unassigned },
2702 .{ .from = 0x11C92, .to = 0x11CA7, .category = .pvalid },
2703 .{ .from = 0x11CA9, .to = 0x11CB6, .category = .pvalid },
2704 .{ .from = 0x11CB7, .to = 0x11CFF, .category = .unassigned },
2705 .{ .from = 0x11D00, .to = 0x11D06, .category = .pvalid },
2706 .{ .from = 0x11D08, .to = 0x11D09, .category = .pvalid },
2707 .{ .from = 0x11D0B, .to = 0x11D36, .category = .pvalid },
2708 .{ .from = 0x11D37, .to = 0x11D39, .category = .unassigned },
2709 .{ .from = 0x11D3C, .to = 0x11D3D, .category = .pvalid },
2710 .{ .from = 0x11D3F, .to = 0x11D47, .category = .pvalid },
2711 .{ .from = 0x11D48, .to = 0x11D4F, .category = .unassigned },
2712 .{ .from = 0x11D50, .to = 0x11D59, .category = .pvalid },
2713 .{ .from = 0x11D5A, .to = 0x11D5F, .category = .unassigned },
2714 .{ .from = 0x11D60, .to = 0x11D65, .category = .pvalid },
2715 .{ .from = 0x11D67, .to = 0x11D68, .category = .pvalid },
2716 .{ .from = 0x11D6A, .to = 0x11D8E, .category = .pvalid },
2717 .{ .from = 0x11D90, .to = 0x11D91, .category = .pvalid },
2718 .{ .from = 0x11D93, .to = 0x11D98, .category = .pvalid },
2719 .{ .from = 0x11D99, .to = 0x11D9F, .category = .unassigned },
2720 .{ .from = 0x11DA0, .to = 0x11DA9, .category = .pvalid },
2721 .{ .from = 0x11DAA, .to = 0x11DAF, .category = .unassigned },
2722 .{ .from = 0x11DB0, .to = 0x11DDB, .category = .pvalid },
2723 .{ .from = 0x11DDC, .to = 0x11DDF, .category = .unassigned },
2724 .{ .from = 0x11DE0, .to = 0x11DE9, .category = .pvalid },
2725 .{ .from = 0x11DEA, .to = 0x11EDF, .category = .unassigned },
2726 .{ .from = 0x11EE0, .to = 0x11EF6, .category = .pvalid },
2727 .{ .from = 0x11EF7, .to = 0x11EF8, .category = .disallowed },
2728 .{ .from = 0x11EF9, .to = 0x11EFF, .category = .unassigned },
2729 .{ .from = 0x11F00, .to = 0x11F10, .category = .pvalid },
2730 .{ .from = 0x11F12, .to = 0x11F3A, .category = .pvalid },
2731 .{ .from = 0x11F3B, .to = 0x11F3D, .category = .unassigned },
2732 .{ .from = 0x11F3E, .to = 0x11F42, .category = .pvalid },
2733 .{ .from = 0x11F43, .to = 0x11F4F, .category = .disallowed },
2734 .{ .from = 0x11F50, .to = 0x11F5A, .category = .pvalid },
2735 .{ .from = 0x11F5B, .to = 0x11FAF, .category = .unassigned },
2736 .{ .from = 0x11FB1, .to = 0x11FBF, .category = .unassigned },
2737 .{ .from = 0x11FC0, .to = 0x11FF1, .category = .disallowed },
2738 .{ .from = 0x11FF2, .to = 0x11FFE, .category = .unassigned },
2739 .{ .from = 0x12000, .to = 0x12399, .category = .pvalid },
2740 .{ .from = 0x1239A, .to = 0x123FF, .category = .unassigned },
2741 .{ .from = 0x12400, .to = 0x1246E, .category = .disallowed },
2742 .{ .from = 0x12470, .to = 0x12474, .category = .disallowed },
2743 .{ .from = 0x12475, .to = 0x1247F, .category = .unassigned },
2744 .{ .from = 0x12480, .to = 0x12543, .category = .pvalid },
2745 .{ .from = 0x12544, .to = 0x12F8F, .category = .unassigned },
2746 .{ .from = 0x12F90, .to = 0x12FF0, .category = .pvalid },
2747 .{ .from = 0x12FF1, .to = 0x12FF2, .category = .disallowed },
2748 .{ .from = 0x12FF3, .to = 0x12FFF, .category = .unassigned },
2749 .{ .from = 0x13000, .to = 0x1342F, .category = .pvalid },
2750 .{ .from = 0x13430, .to = 0x1343F, .category = .disallowed },
2751 .{ .from = 0x13440, .to = 0x13455, .category = .pvalid },
2752 .{ .from = 0x13456, .to = 0x1345F, .category = .unassigned },
2753 .{ .from = 0x13460, .to = 0x143FA, .category = .pvalid },
2754 .{ .from = 0x143FB, .to = 0x143FF, .category = .unassigned },
2755 .{ .from = 0x14400, .to = 0x14646, .category = .pvalid },
2756 .{ .from = 0x14647, .to = 0x160FF, .category = .unassigned },
2757 .{ .from = 0x16100, .to = 0x16139, .category = .pvalid },
2758 .{ .from = 0x1613A, .to = 0x167FF, .category = .unassigned },
2759 .{ .from = 0x16800, .to = 0x16A38, .category = .pvalid },
2760 .{ .from = 0x16A39, .to = 0x16A3F, .category = .unassigned },
2761 .{ .from = 0x16A40, .to = 0x16A5E, .category = .pvalid },
2762 .{ .from = 0x16A60, .to = 0x16A69, .category = .pvalid },
2763 .{ .from = 0x16A6A, .to = 0x16A6D, .category = .unassigned },
2764 .{ .from = 0x16A6E, .to = 0x16A6F, .category = .disallowed },
2765 .{ .from = 0x16A70, .to = 0x16ABE, .category = .pvalid },
2766 .{ .from = 0x16AC0, .to = 0x16AC9, .category = .pvalid },
2767 .{ .from = 0x16ACA, .to = 0x16ACF, .category = .unassigned },
2768 .{ .from = 0x16AD0, .to = 0x16AED, .category = .pvalid },
2769 .{ .from = 0x16AEE, .to = 0x16AEF, .category = .unassigned },
2770 .{ .from = 0x16AF0, .to = 0x16AF4, .category = .pvalid },
2771 .{ .from = 0x16AF6, .to = 0x16AFF, .category = .unassigned },
2772 .{ .from = 0x16B00, .to = 0x16B36, .category = .pvalid },
2773 .{ .from = 0x16B37, .to = 0x16B3F, .category = .disallowed },
2774 .{ .from = 0x16B40, .to = 0x16B43, .category = .pvalid },
2775 .{ .from = 0x16B44, .to = 0x16B45, .category = .disallowed },
2776 .{ .from = 0x16B46, .to = 0x16B4F, .category = .unassigned },
2777 .{ .from = 0x16B50, .to = 0x16B59, .category = .pvalid },
2778 .{ .from = 0x16B5B, .to = 0x16B61, .category = .disallowed },
2779 .{ .from = 0x16B63, .to = 0x16B77, .category = .pvalid },
2780 .{ .from = 0x16B78, .to = 0x16B7C, .category = .unassigned },
2781 .{ .from = 0x16B7D, .to = 0x16B8F, .category = .pvalid },
2782 .{ .from = 0x16B90, .to = 0x16D3F, .category = .unassigned },
2783 .{ .from = 0x16D40, .to = 0x16D6C, .category = .pvalid },
2784 .{ .from = 0x16D6D, .to = 0x16D6F, .category = .disallowed },
2785 .{ .from = 0x16D70, .to = 0x16D79, .category = .pvalid },
2786 .{ .from = 0x16D7A, .to = 0x16E3F, .category = .unassigned },
2787 .{ .from = 0x16E40, .to = 0x16E5F, .category = .disallowed },
2788 .{ .from = 0x16E60, .to = 0x16E7F, .category = .pvalid },
2789 .{ .from = 0x16E80, .to = 0x16E9A, .category = .disallowed },
2790 .{ .from = 0x16E9B, .to = 0x16E9F, .category = .unassigned },
2791 .{ .from = 0x16EA0, .to = 0x16EB8, .category = .disallowed },
2792 .{ .from = 0x16EB9, .to = 0x16EBA, .category = .unassigned },
2793 .{ .from = 0x16EBB, .to = 0x16ED3, .category = .pvalid },
2794 .{ .from = 0x16ED4, .to = 0x16EFF, .category = .unassigned },
2795 .{ .from = 0x16F00, .to = 0x16F4A, .category = .pvalid },
2796 .{ .from = 0x16F4B, .to = 0x16F4E, .category = .unassigned },
2797 .{ .from = 0x16F4F, .to = 0x16F87, .category = .pvalid },
2798 .{ .from = 0x16F88, .to = 0x16F8E, .category = .unassigned },
2799 .{ .from = 0x16F8F, .to = 0x16F9F, .category = .pvalid },
2800 .{ .from = 0x16FA0, .to = 0x16FDF, .category = .unassigned },
2801 .{ .from = 0x16FE0, .to = 0x16FE1, .category = .pvalid },
2802 .{ .from = 0x16FE3, .to = 0x16FE4, .category = .pvalid },
2803 .{ .from = 0x16FE5, .to = 0x16FEF, .category = .unassigned },
2804 .{ .from = 0x16FF0, .to = 0x16FF3, .category = .pvalid },
2805 .{ .from = 0x16FF4, .to = 0x16FF6, .category = .disallowed },
2806 .{ .from = 0x16FF7, .to = 0x16FFF, .category = .unassigned },
2807 .{ .from = 0x17000, .to = 0x18CD5, .category = .pvalid },
2808 .{ .from = 0x18CD6, .to = 0x18CFE, .category = .unassigned },
2809 .{ .from = 0x18CFF, .to = 0x18D1E, .category = .pvalid },
2810 .{ .from = 0x18D1F, .to = 0x18D7F, .category = .unassigned },
2811 .{ .from = 0x18D80, .to = 0x18DF2, .category = .pvalid },
2812 .{ .from = 0x18DF3, .to = 0x1AFEF, .category = .unassigned },
2813 .{ .from = 0x1AFF0, .to = 0x1AFF3, .category = .pvalid },
2814 .{ .from = 0x1AFF5, .to = 0x1AFFB, .category = .pvalid },
2815 .{ .from = 0x1AFFD, .to = 0x1AFFE, .category = .pvalid },
2816 .{ .from = 0x1B000, .to = 0x1B122, .category = .pvalid },
2817 .{ .from = 0x1B123, .to = 0x1B131, .category = .unassigned },
2818 .{ .from = 0x1B133, .to = 0x1B14F, .category = .unassigned },
2819 .{ .from = 0x1B150, .to = 0x1B152, .category = .pvalid },
2820 .{ .from = 0x1B153, .to = 0x1B154, .category = .unassigned },
2821 .{ .from = 0x1B156, .to = 0x1B163, .category = .unassigned },
2822 .{ .from = 0x1B164, .to = 0x1B167, .category = .pvalid },
2823 .{ .from = 0x1B168, .to = 0x1B16F, .category = .unassigned },
2824 .{ .from = 0x1B170, .to = 0x1B2FB, .category = .pvalid },
2825 .{ .from = 0x1B2FC, .to = 0x1BBFF, .category = .unassigned },
2826 .{ .from = 0x1BC00, .to = 0x1BC6A, .category = .pvalid },
2827 .{ .from = 0x1BC6B, .to = 0x1BC6F, .category = .unassigned },
2828 .{ .from = 0x1BC70, .to = 0x1BC7C, .category = .pvalid },
2829 .{ .from = 0x1BC7D, .to = 0x1BC7F, .category = .unassigned },
2830 .{ .from = 0x1BC80, .to = 0x1BC88, .category = .pvalid },
2831 .{ .from = 0x1BC89, .to = 0x1BC8F, .category = .unassigned },
2832 .{ .from = 0x1BC90, .to = 0x1BC99, .category = .pvalid },
2833 .{ .from = 0x1BC9A, .to = 0x1BC9B, .category = .unassigned },
2834 .{ .from = 0x1BC9D, .to = 0x1BC9E, .category = .pvalid },
2835 .{ .from = 0x1BC9F, .to = 0x1BCA3, .category = .disallowed },
2836 .{ .from = 0x1BCA4, .to = 0x1CBFF, .category = .unassigned },
2837 .{ .from = 0x1CC00, .to = 0x1CCFC, .category = .disallowed },
2838 .{ .from = 0x1CCFD, .to = 0x1CCFF, .category = .unassigned },
2839 .{ .from = 0x1CD00, .to = 0x1CEB3, .category = .disallowed },
2840 .{ .from = 0x1CEB4, .to = 0x1CEB9, .category = .unassigned },
2841 .{ .from = 0x1CEBA, .to = 0x1CED0, .category = .disallowed },
2842 .{ .from = 0x1CED1, .to = 0x1CEDF, .category = .unassigned },
2843 .{ .from = 0x1CEE0, .to = 0x1CEF0, .category = .disallowed },
2844 .{ .from = 0x1CEF1, .to = 0x1CEFF, .category = .unassigned },
2845 .{ .from = 0x1CF00, .to = 0x1CF2D, .category = .pvalid },
2846 .{ .from = 0x1CF2E, .to = 0x1CF2F, .category = .unassigned },
2847 .{ .from = 0x1CF30, .to = 0x1CF46, .category = .pvalid },
2848 .{ .from = 0x1CF47, .to = 0x1CF4F, .category = .unassigned },
2849 .{ .from = 0x1CF50, .to = 0x1CFC3, .category = .disallowed },
2850 .{ .from = 0x1CFC4, .to = 0x1CFFF, .category = .unassigned },
2851 .{ .from = 0x1D000, .to = 0x1D0F5, .category = .disallowed },
2852 .{ .from = 0x1D0F6, .to = 0x1D0FF, .category = .unassigned },
2853 .{ .from = 0x1D100, .to = 0x1D126, .category = .disallowed },
2854 .{ .from = 0x1D127, .to = 0x1D128, .category = .unassigned },
2855 .{ .from = 0x1D129, .to = 0x1D1EA, .category = .disallowed },
2856 .{ .from = 0x1D1EB, .to = 0x1D1FF, .category = .unassigned },
2857 .{ .from = 0x1D200, .to = 0x1D245, .category = .disallowed },
2858 .{ .from = 0x1D246, .to = 0x1D2BF, .category = .unassigned },
2859 .{ .from = 0x1D2C0, .to = 0x1D2D3, .category = .disallowed },
2860 .{ .from = 0x1D2D4, .to = 0x1D2DF, .category = .unassigned },
2861 .{ .from = 0x1D2E0, .to = 0x1D2F3, .category = .disallowed },
2862 .{ .from = 0x1D2F4, .to = 0x1D2FF, .category = .unassigned },
2863 .{ .from = 0x1D300, .to = 0x1D356, .category = .disallowed },
2864 .{ .from = 0x1D357, .to = 0x1D35F, .category = .unassigned },
2865 .{ .from = 0x1D360, .to = 0x1D378, .category = .disallowed },
2866 .{ .from = 0x1D379, .to = 0x1D3FF, .category = .unassigned },
2867 .{ .from = 0x1D400, .to = 0x1D454, .category = .disallowed },
2868 .{ .from = 0x1D456, .to = 0x1D49C, .category = .disallowed },
2869 .{ .from = 0x1D49E, .to = 0x1D49F, .category = .disallowed },
2870 .{ .from = 0x1D4A0, .to = 0x1D4A1, .category = .unassigned },
2871 .{ .from = 0x1D4A3, .to = 0x1D4A4, .category = .unassigned },
2872 .{ .from = 0x1D4A5, .to = 0x1D4A6, .category = .disallowed },
2873 .{ .from = 0x1D4A7, .to = 0x1D4A8, .category = .unassigned },
2874 .{ .from = 0x1D4A9, .to = 0x1D4AC, .category = .disallowed },
2875 .{ .from = 0x1D4AE, .to = 0x1D4B9, .category = .disallowed },
2876 .{ .from = 0x1D4BD, .to = 0x1D4C3, .category = .disallowed },
2877 .{ .from = 0x1D4C5, .to = 0x1D505, .category = .disallowed },
2878 .{ .from = 0x1D507, .to = 0x1D50A, .category = .disallowed },
2879 .{ .from = 0x1D50B, .to = 0x1D50C, .category = .unassigned },
2880 .{ .from = 0x1D50D, .to = 0x1D514, .category = .disallowed },
2881 .{ .from = 0x1D516, .to = 0x1D51C, .category = .disallowed },
2882 .{ .from = 0x1D51E, .to = 0x1D539, .category = .disallowed },
2883 .{ .from = 0x1D53B, .to = 0x1D53E, .category = .disallowed },
2884 .{ .from = 0x1D540, .to = 0x1D544, .category = .disallowed },
2885 .{ .from = 0x1D547, .to = 0x1D549, .category = .unassigned },
2886 .{ .from = 0x1D54A, .to = 0x1D550, .category = .disallowed },
2887 .{ .from = 0x1D552, .to = 0x1D6A5, .category = .disallowed },
2888 .{ .from = 0x1D6A6, .to = 0x1D6A7, .category = .unassigned },
2889 .{ .from = 0x1D6A8, .to = 0x1D7CB, .category = .disallowed },
2890 .{ .from = 0x1D7CC, .to = 0x1D7CD, .category = .unassigned },
2891 .{ .from = 0x1D7CE, .to = 0x1D9FF, .category = .disallowed },
2892 .{ .from = 0x1DA00, .to = 0x1DA36, .category = .pvalid },
2893 .{ .from = 0x1DA37, .to = 0x1DA3A, .category = .disallowed },
2894 .{ .from = 0x1DA3B, .to = 0x1DA6C, .category = .pvalid },
2895 .{ .from = 0x1DA6D, .to = 0x1DA74, .category = .disallowed },
2896 .{ .from = 0x1DA76, .to = 0x1DA83, .category = .disallowed },
2897 .{ .from = 0x1DA85, .to = 0x1DA8B, .category = .disallowed },
2898 .{ .from = 0x1DA8C, .to = 0x1DA9A, .category = .unassigned },
2899 .{ .from = 0x1DA9B, .to = 0x1DA9F, .category = .pvalid },
2900 .{ .from = 0x1DAA1, .to = 0x1DAAF, .category = .pvalid },
2901 .{ .from = 0x1DAB0, .to = 0x1DEFF, .category = .unassigned },
2902 .{ .from = 0x1DF00, .to = 0x1DF1E, .category = .pvalid },
2903 .{ .from = 0x1DF1F, .to = 0x1DF24, .category = .unassigned },
2904 .{ .from = 0x1DF25, .to = 0x1DF2A, .category = .pvalid },
2905 .{ .from = 0x1DF2B, .to = 0x1DFFF, .category = .unassigned },
2906 .{ .from = 0x1E000, .to = 0x1E006, .category = .pvalid },
2907 .{ .from = 0x1E008, .to = 0x1E018, .category = .pvalid },
2908 .{ .from = 0x1E019, .to = 0x1E01A, .category = .unassigned },
2909 .{ .from = 0x1E01B, .to = 0x1E021, .category = .pvalid },
2910 .{ .from = 0x1E023, .to = 0x1E024, .category = .pvalid },
2911 .{ .from = 0x1E026, .to = 0x1E02A, .category = .pvalid },
2912 .{ .from = 0x1E02B, .to = 0x1E02F, .category = .unassigned },
2913 .{ .from = 0x1E030, .to = 0x1E06D, .category = .disallowed },
2914 .{ .from = 0x1E06E, .to = 0x1E08E, .category = .unassigned },
2915 .{ .from = 0x1E090, .to = 0x1E0FF, .category = .unassigned },
2916 .{ .from = 0x1E100, .to = 0x1E12C, .category = .pvalid },
2917 .{ .from = 0x1E12D, .to = 0x1E12F, .category = .unassigned },
2918 .{ .from = 0x1E130, .to = 0x1E13D, .category = .pvalid },
2919 .{ .from = 0x1E13E, .to = 0x1E13F, .category = .unassigned },
2920 .{ .from = 0x1E140, .to = 0x1E149, .category = .pvalid },
2921 .{ .from = 0x1E14A, .to = 0x1E14D, .category = .unassigned },
2922 .{ .from = 0x1E150, .to = 0x1E28F, .category = .unassigned },
2923 .{ .from = 0x1E290, .to = 0x1E2AE, .category = .pvalid },
2924 .{ .from = 0x1E2AF, .to = 0x1E2BF, .category = .unassigned },
2925 .{ .from = 0x1E2C0, .to = 0x1E2F9, .category = .pvalid },
2926 .{ .from = 0x1E2FA, .to = 0x1E2FE, .category = .unassigned },
2927 .{ .from = 0x1E300, .to = 0x1E4CF, .category = .unassigned },
2928 .{ .from = 0x1E4D0, .to = 0x1E4F9, .category = .pvalid },
2929 .{ .from = 0x1E4FA, .to = 0x1E5CF, .category = .unassigned },
2930 .{ .from = 0x1E5D0, .to = 0x1E5FA, .category = .pvalid },
2931 .{ .from = 0x1E5FB, .to = 0x1E5FE, .category = .unassigned },
2932 .{ .from = 0x1E600, .to = 0x1E6BF, .category = .unassigned },
2933 .{ .from = 0x1E6C0, .to = 0x1E6DE, .category = .pvalid },
2934 .{ .from = 0x1E6E0, .to = 0x1E6F5, .category = .pvalid },
2935 .{ .from = 0x1E6F6, .to = 0x1E6FD, .category = .unassigned },
2936 .{ .from = 0x1E6FE, .to = 0x1E6FF, .category = .pvalid },
2937 .{ .from = 0x1E700, .to = 0x1E7DF, .category = .unassigned },
2938 .{ .from = 0x1E7E0, .to = 0x1E7E6, .category = .pvalid },
2939 .{ .from = 0x1E7E8, .to = 0x1E7EB, .category = .pvalid },
2940 .{ .from = 0x1E7ED, .to = 0x1E7EE, .category = .pvalid },
2941 .{ .from = 0x1E7F0, .to = 0x1E7FE, .category = .pvalid },
2942 .{ .from = 0x1E800, .to = 0x1E8C4, .category = .pvalid },
2943 .{ .from = 0x1E8C5, .to = 0x1E8C6, .category = .unassigned },
2944 .{ .from = 0x1E8C7, .to = 0x1E8CF, .category = .disallowed },
2945 .{ .from = 0x1E8D0, .to = 0x1E8D6, .category = .pvalid },
2946 .{ .from = 0x1E8D7, .to = 0x1E8FF, .category = .unassigned },
2947 .{ .from = 0x1E900, .to = 0x1E921, .category = .disallowed },
2948 .{ .from = 0x1E922, .to = 0x1E94B, .category = .pvalid },
2949 .{ .from = 0x1E94C, .to = 0x1E94F, .category = .unassigned },
2950 .{ .from = 0x1E950, .to = 0x1E959, .category = .pvalid },
2951 .{ .from = 0x1E95A, .to = 0x1E95D, .category = .unassigned },
2952 .{ .from = 0x1E95E, .to = 0x1E95F, .category = .disallowed },
2953 .{ .from = 0x1E960, .to = 0x1EC70, .category = .unassigned },
2954 .{ .from = 0x1EC71, .to = 0x1ECB4, .category = .disallowed },
2955 .{ .from = 0x1ECB5, .to = 0x1ED00, .category = .unassigned },
2956 .{ .from = 0x1ED01, .to = 0x1ED3D, .category = .disallowed },
2957 .{ .from = 0x1ED3E, .to = 0x1EDFF, .category = .unassigned },
2958 .{ .from = 0x1EE00, .to = 0x1EE03, .category = .disallowed },
2959 .{ .from = 0x1EE05, .to = 0x1EE1F, .category = .disallowed },
2960 .{ .from = 0x1EE21, .to = 0x1EE22, .category = .disallowed },
2961 .{ .from = 0x1EE25, .to = 0x1EE26, .category = .unassigned },
2962 .{ .from = 0x1EE29, .to = 0x1EE32, .category = .disallowed },
2963 .{ .from = 0x1EE34, .to = 0x1EE37, .category = .disallowed },
2964 .{ .from = 0x1EE3C, .to = 0x1EE41, .category = .unassigned },
2965 .{ .from = 0x1EE43, .to = 0x1EE46, .category = .unassigned },
2966 .{ .from = 0x1EE4D, .to = 0x1EE4F, .category = .disallowed },
2967 .{ .from = 0x1EE51, .to = 0x1EE52, .category = .disallowed },
2968 .{ .from = 0x1EE55, .to = 0x1EE56, .category = .unassigned },
2969 .{ .from = 0x1EE61, .to = 0x1EE62, .category = .disallowed },
2970 .{ .from = 0x1EE65, .to = 0x1EE66, .category = .unassigned },
2971 .{ .from = 0x1EE67, .to = 0x1EE6A, .category = .disallowed },
2972 .{ .from = 0x1EE6C, .to = 0x1EE72, .category = .disallowed },
2973 .{ .from = 0x1EE74, .to = 0x1EE77, .category = .disallowed },
2974 .{ .from = 0x1EE79, .to = 0x1EE7C, .category = .disallowed },
2975 .{ .from = 0x1EE80, .to = 0x1EE89, .category = .disallowed },
2976 .{ .from = 0x1EE8B, .to = 0x1EE9B, .category = .disallowed },
2977 .{ .from = 0x1EE9C, .to = 0x1EEA0, .category = .unassigned },
2978 .{ .from = 0x1EEA1, .to = 0x1EEA3, .category = .disallowed },
2979 .{ .from = 0x1EEA5, .to = 0x1EEA9, .category = .disallowed },
2980 .{ .from = 0x1EEAB, .to = 0x1EEBB, .category = .disallowed },
2981 .{ .from = 0x1EEBC, .to = 0x1EEEF, .category = .unassigned },
2982 .{ .from = 0x1EEF0, .to = 0x1EEF1, .category = .disallowed },
2983 .{ .from = 0x1EEF2, .to = 0x1EFFF, .category = .unassigned },
2984 .{ .from = 0x1F000, .to = 0x1F02B, .category = .disallowed },
2985 .{ .from = 0x1F02C, .to = 0x1F02F, .category = .unassigned },
2986 .{ .from = 0x1F030, .to = 0x1F093, .category = .disallowed },
2987 .{ .from = 0x1F094, .to = 0x1F09F, .category = .unassigned },
2988 .{ .from = 0x1F0A0, .to = 0x1F0AE, .category = .disallowed },
2989 .{ .from = 0x1F0AF, .to = 0x1F0B0, .category = .unassigned },
2990 .{ .from = 0x1F0B1, .to = 0x1F0BF, .category = .disallowed },
2991 .{ .from = 0x1F0C1, .to = 0x1F0CF, .category = .disallowed },
2992 .{ .from = 0x1F0D1, .to = 0x1F0F5, .category = .disallowed },
2993 .{ .from = 0x1F0F6, .to = 0x1F0FF, .category = .unassigned },
2994 .{ .from = 0x1F100, .to = 0x1F1AD, .category = .disallowed },
2995 .{ .from = 0x1F1AE, .to = 0x1F1E5, .category = .unassigned },
2996 .{ .from = 0x1F1E6, .to = 0x1F202, .category = .disallowed },
2997 .{ .from = 0x1F203, .to = 0x1F20F, .category = .unassigned },
2998 .{ .from = 0x1F210, .to = 0x1F23B, .category = .disallowed },
2999 .{ .from = 0x1F23C, .to = 0x1F23F, .category = .unassigned },
3000 .{ .from = 0x1F240, .to = 0x1F248, .category = .disallowed },
3001 .{ .from = 0x1F249, .to = 0x1F24F, .category = .unassigned },
3002 .{ .from = 0x1F250, .to = 0x1F251, .category = .disallowed },
3003 .{ .from = 0x1F252, .to = 0x1F25F, .category = .unassigned },
3004 .{ .from = 0x1F260, .to = 0x1F265, .category = .disallowed },
3005 .{ .from = 0x1F266, .to = 0x1F2FF, .category = .unassigned },
3006 .{ .from = 0x1F300, .to = 0x1F6D8, .category = .disallowed },
3007 .{ .from = 0x1F6D9, .to = 0x1F6DB, .category = .unassigned },
3008 .{ .from = 0x1F6DC, .to = 0x1F6EC, .category = .disallowed },
3009 .{ .from = 0x1F6ED, .to = 0x1F6EF, .category = .unassigned },
3010 .{ .from = 0x1F6F0, .to = 0x1F6FC, .category = .disallowed },
3011 .{ .from = 0x1F6FD, .to = 0x1F6FF, .category = .unassigned },
3012 .{ .from = 0x1F700, .to = 0x1F7D9, .category = .disallowed },
3013 .{ .from = 0x1F7DA, .to = 0x1F7DF, .category = .unassigned },
3014 .{ .from = 0x1F7E0, .to = 0x1F7EB, .category = .disallowed },
3015 .{ .from = 0x1F7EC, .to = 0x1F7EF, .category = .unassigned },
3016 .{ .from = 0x1F7F1, .to = 0x1F7FF, .category = .unassigned },
3017 .{ .from = 0x1F800, .to = 0x1F80B, .category = .disallowed },
3018 .{ .from = 0x1F80C, .to = 0x1F80F, .category = .unassigned },
3019 .{ .from = 0x1F810, .to = 0x1F847, .category = .disallowed },
3020 .{ .from = 0x1F848, .to = 0x1F84F, .category = .unassigned },
3021 .{ .from = 0x1F850, .to = 0x1F859, .category = .disallowed },
3022 .{ .from = 0x1F85A, .to = 0x1F85F, .category = .unassigned },
3023 .{ .from = 0x1F860, .to = 0x1F887, .category = .disallowed },
3024 .{ .from = 0x1F888, .to = 0x1F88F, .category = .unassigned },
3025 .{ .from = 0x1F890, .to = 0x1F8AD, .category = .disallowed },
3026 .{ .from = 0x1F8AE, .to = 0x1F8AF, .category = .unassigned },
3027 .{ .from = 0x1F8B0, .to = 0x1F8BB, .category = .disallowed },
3028 .{ .from = 0x1F8BC, .to = 0x1F8BF, .category = .unassigned },
3029 .{ .from = 0x1F8C0, .to = 0x1F8C1, .category = .disallowed },
3030 .{ .from = 0x1F8C2, .to = 0x1F8CF, .category = .unassigned },
3031 .{ .from = 0x1F8D0, .to = 0x1F8D8, .category = .disallowed },
3032 .{ .from = 0x1F8D9, .to = 0x1F8FF, .category = .unassigned },
3033 .{ .from = 0x1F900, .to = 0x1FA57, .category = .disallowed },
3034 .{ .from = 0x1FA58, .to = 0x1FA5F, .category = .unassigned },
3035 .{ .from = 0x1FA60, .to = 0x1FA6D, .category = .disallowed },
3036 .{ .from = 0x1FA6E, .to = 0x1FA6F, .category = .unassigned },
3037 .{ .from = 0x1FA70, .to = 0x1FA7C, .category = .disallowed },
3038 .{ .from = 0x1FA7D, .to = 0x1FA7F, .category = .unassigned },
3039 .{ .from = 0x1FA80, .to = 0x1FA8A, .category = .disallowed },
3040 .{ .from = 0x1FA8B, .to = 0x1FA8D, .category = .unassigned },
3041 .{ .from = 0x1FA8E, .to = 0x1FAC6, .category = .disallowed },
3042 .{ .from = 0x1FAC9, .to = 0x1FACC, .category = .unassigned },
3043 .{ .from = 0x1FACD, .to = 0x1FADC, .category = .disallowed },
3044 .{ .from = 0x1FADD, .to = 0x1FADE, .category = .unassigned },
3045 .{ .from = 0x1FADF, .to = 0x1FAEA, .category = .disallowed },
3046 .{ .from = 0x1FAEB, .to = 0x1FAEE, .category = .unassigned },
3047 .{ .from = 0x1FAEF, .to = 0x1FAF8, .category = .disallowed },
3048 .{ .from = 0x1FAF9, .to = 0x1FAFF, .category = .unassigned },
3049 .{ .from = 0x1FB00, .to = 0x1FB92, .category = .disallowed },
3050 .{ .from = 0x1FB94, .to = 0x1FBFA, .category = .disallowed },
3051 .{ .from = 0x1FBFB, .to = 0x1FFFD, .category = .unassigned },
3052 .{ .from = 0x1FFFE, .to = 0x1FFFF, .category = .disallowed },
3053 .{ .from = 0x20000, .to = 0x2A6DF, .category = .pvalid },
3054 .{ .from = 0x2A6E0, .to = 0x2A6FF, .category = .unassigned },
3055 .{ .from = 0x2A700, .to = 0x2B81D, .category = .pvalid },
3056 .{ .from = 0x2B81E, .to = 0x2B81F, .category = .unassigned },
3057 .{ .from = 0x2B820, .to = 0x2CEAD, .category = .pvalid },
3058 .{ .from = 0x2CEAE, .to = 0x2CEAF, .category = .unassigned },
3059 .{ .from = 0x2CEB0, .to = 0x2EBE0, .category = .pvalid },
3060 .{ .from = 0x2EBE1, .to = 0x2EBEF, .category = .unassigned },
3061 .{ .from = 0x2EBF0, .to = 0x2EE5D, .category = .pvalid },
3062 .{ .from = 0x2EE5E, .to = 0x2F7FF, .category = .unassigned },
3063 .{ .from = 0x2F800, .to = 0x2FA1D, .category = .disallowed },
3064 .{ .from = 0x2FA1E, .to = 0x2FFFD, .category = .unassigned },
3065 .{ .from = 0x2FFFE, .to = 0x2FFFF, .category = .disallowed },
3066 .{ .from = 0x30000, .to = 0x3134A, .category = .pvalid },
3067 .{ .from = 0x3134B, .to = 0x3134F, .category = .unassigned },
3068 .{ .from = 0x31350, .to = 0x33479, .category = .pvalid },
3069 .{ .from = 0x3347A, .to = 0x3FFFD, .category = .unassigned },
3070 .{ .from = 0x3FFFE, .to = 0x3FFFF, .category = .disallowed },
3071 .{ .from = 0x40000, .to = 0x4FFFD, .category = .unassigned },
3072 .{ .from = 0x4FFFE, .to = 0x4FFFF, .category = .disallowed },
3073 .{ .from = 0x50000, .to = 0x5FFFD, .category = .unassigned },
3074 .{ .from = 0x5FFFE, .to = 0x5FFFF, .category = .disallowed },
3075 .{ .from = 0x60000, .to = 0x6FFFD, .category = .unassigned },
3076 .{ .from = 0x6FFFE, .to = 0x6FFFF, .category = .disallowed },
3077 .{ .from = 0x70000, .to = 0x7FFFD, .category = .unassigned },
3078 .{ .from = 0x7FFFE, .to = 0x7FFFF, .category = .disallowed },
3079 .{ .from = 0x80000, .to = 0x8FFFD, .category = .unassigned },
3080 .{ .from = 0x8FFFE, .to = 0x8FFFF, .category = .disallowed },
3081 .{ .from = 0x90000, .to = 0x9FFFD, .category = .unassigned },
3082 .{ .from = 0x9FFFE, .to = 0x9FFFF, .category = .disallowed },
3083 .{ .from = 0xA0000, .to = 0xAFFFD, .category = .unassigned },
3084 .{ .from = 0xAFFFE, .to = 0xAFFFF, .category = .disallowed },
3085 .{ .from = 0xB0000, .to = 0xBFFFD, .category = .unassigned },
3086 .{ .from = 0xBFFFE, .to = 0xBFFFF, .category = .disallowed },
3087 .{ .from = 0xC0000, .to = 0xCFFFD, .category = .unassigned },
3088 .{ .from = 0xCFFFE, .to = 0xCFFFF, .category = .disallowed },
3089 .{ .from = 0xD0000, .to = 0xDFFFD, .category = .unassigned },
3090 .{ .from = 0xDFFFE, .to = 0xDFFFF, .category = .disallowed },
3091 .{ .from = 0xE0002, .to = 0xE001F, .category = .unassigned },
3092 .{ .from = 0xE0020, .to = 0xE007F, .category = .disallowed },
3093 .{ .from = 0xE0080, .to = 0xE00FF, .category = .unassigned },
3094 .{ .from = 0xE0100, .to = 0xE01EF, .category = .disallowed },
3095 .{ .from = 0xE01F0, .to = 0xEFFFD, .category = .unassigned },
3096 .{ .from = 0xEFFFE, .to = 0x10FFFF, .category = .disallowed },
3097};
LICENSE created+21
...@@ -0,0 +1,21 @@
1MIT License
2
3Copyright (c) 2026 Meghan Denny
4
5Permission is hereby granted, free of charge, to any person obtaining a copy
6of this software and associated documentation files (the "Software"), to deal
7in the Software without restriction, including without limitation the rights
8to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9copies of the Software, and to permit persons to whom the Software is
10furnished to do so, subject to the following conditions:
11
12The above copyright notice and this permission notice shall be included in all
13copies or substantial portions of the Software.
14
15THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21SOFTWARE.
README.md created+17
...@@ -0,0 +1,17 @@
1# zig-unicode-idna
2
3![loc](https://sloc.xyz/github/nektro/zig-unicode-idna)
4[![license](https://img.shields.io/github/license/nektro/zig-unicode-idna.svg)](https://github.com/nektro/zig-unicode-idna/blob/master/LICENSE)
5[![nektro @ github sponsors](https://img.shields.io/badge/sponsors-nektro-purple?logo=github)](https://github.com/sponsors/nektro)
6[![Zig](https://img.shields.io/badge/Zig-0.14-f7a41d)](https://ziglang.org/)
7[![Zigmod](https://img.shields.io/badge/Zigmod-latest-f7a41d)](https://github.com/nektro/zigmod)
8
9Zig bindings for Unicode IDNA (Internationalizing Domain Names for Applications) Compatibility Processing
10
11Last updated as of Unicode 17.0.0
12
13http://www.unicode.org/reports/tr46/
14
15https://www.unicode.org/versions/latest/
16
17Source data files are https://www.unicode.org/license.html
build.zig created+20
...@@ -0,0 +1,20 @@
1const std = @import("std");
2const deps = @import("./deps.zig");
3
4pub fn build(b: *std.Build) void {
5 const target = b.standardTargetOptions(.{});
6 const mode = b.option(std.builtin.Mode, "mode", "") orelse .Debug;
7
8 const tests = b.addTest(.{
9 .root_source_file = b.path("test.zig"),
10 .target = target,
11 .optimize = mode,
12 });
13 deps.addAllTo(tests);
14
15 const test_step = b.step("test", "Run all library tests");
16 const tests_run = b.addRunArtifact(tests);
17 tests_run.setCwd(b.path("."));
18 tests_run.has_side_effects = true;
19 test_step.dependOn(&tests_run.step);
20}
bun.lock created+26
...@@ -0,0 +1,26 @@
1{
2 "lockfileVersion": 1,
3 "configVersion": 1,
4 "workspaces": {
5 "": {
6 "name": "zig-unicode-idna",
7 "devDependencies": {
8 "@types/bun": "latest",
9 },
10 "peerDependencies": {
11 "typescript": "^5",
12 },
13 },
14 },
15 "packages": {
16 "@types/bun": ["@types/bun@1.3.5", "", { "dependencies": { "bun-types": "1.3.5" } }, "sha512-RnygCqNrd3srIPEWBd5LFeUYG7plCoH2Yw9WaZGyNmdTEei+gWaHqydbaIRkIkcbXwhBT94q78QljxN0Sk838w=="],
17
18 "@types/node": ["@types/node@25.0.6", "", { "dependencies": { "undici-types": "~7.16.0" } }, "sha512-NNu0sjyNxpoiW3YuVFfNz7mxSQ+S4X2G28uqg2s+CzoqoQjLPsWSbsFFyztIAqt2vb8kfEAsJNepMGPTxFDx3Q=="],
19
20 "bun-types": ["bun-types@1.3.5", "", { "dependencies": { "@types/node": "*" } }, "sha512-inmAYe2PFLs0SUbFOWSVD24sg1jFlMPxOjOSSCYqUgn4Hsc3rDc7dFvfVYjFPNHtov6kgUeulV4SxbuIV/stPw=="],
21
22 "typescript": ["typescript@5.9.3", "", { "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" } }, "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw=="],
23
24 "undici-types": ["undici-types@7.16.0", "", {}, "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw=="],
25 }
26}
generate.ts created+160
...@@ -0,0 +1,160 @@
1import { closeSync, openSync } from "node:fs";
2
3const unicode_version = "17.0.0";
4
5{
6 const source = `https://www.unicode.org/Public/${unicode_version}/idna/IdnaMappingTable.txt`;
7 const response = await fetch(source);
8 const data = await response.text();
9 const lines = data.split("\n").filter((x) => !x.startsWith("#") && x.length > 0);
10 const lines_clear = lines.map((x) => x.split("#")[0]!);
11 const cols = lines_clear.map((x) => x.split(";").map((y) => y.trim()));
12
13 closeSync(openSync("./table.zig", "w", 0o777));
14 const f = Bun.file("./table.zig");
15 const w = f.writer();
16
17 w.write(`// This file is part of Unicode IDNA Compatibility Processing\n`);
18 w.write(`// For documentation, see http://www.unicode.org/reports/tr46/\n`);
19 w.write(`//\n`);
20 w.write(`\n`);
21 w.write(`// Based on the source file: ${source}\n`);
22 w.write(`//\n`);
23 w.write(`\n`);
24 w.write(`pub const Row = struct {\n`);
25 w.write(` cp: u21,\n`);
26 w.write(` status: Status,\n`);
27 w.write(` mapping: []const u21,\n`);
28 w.write(` status2: Status2008,\n`);
29 w.write(`};\n`);
30 w.write(`\n`);
31 w.write(`pub const RowRange = struct {\n`);
32 w.write(` from: u21,\n`);
33 w.write(` to: u21,\n`);
34 w.write(` status: Status,\n`);
35 w.write(` mapping: []const u21,\n`);
36 w.write(` status2: Status2008,\n`);
37 w.write(`};\n`);
38 w.write(`\n`);
39 w.write(`pub const Status = enum {\n`);
40 w.write(` valid,\n`);
41 w.write(` ignored,\n`);
42 w.write(` mapped,\n`);
43 w.write(` deviation,\n`);
44 w.write(` disallowed,\n`);
45 w.write(`};\n`);
46 w.write(`\n`);
47 w.write(`pub const Status2008 = enum {\n`);
48 w.write(` none,\n`);
49 w.write(` NV8,\n`);
50 w.write(` XV8,\n`);
51 w.write(`};\n`);
52 w.write(`\n`);
53 w.write(`pub const data = [_]Row{\n`);
54 {
55 for (const c of cols.filter((x) => !x[0]!.includes(".."))) {
56 w.write(` .{ .cp = 0x${c[0]},`);
57 w.write(` .status = .${c[1]},`);
58 // prettier-ignore
59 w.write(` .mapping = &.{${c[2]?.split(" ").filter(x => x.length > 0).map((x) => `0x${x}`).join(",") ?? ""}},`,);
60 w.write(` .status2 = .${c[3] ?? "none"},`);
61 w.write(` },\n`);
62 }
63 }
64 w.write(`};\n`);
65 w.write(`\n`);
66 w.write(`pub const data_range = [_]RowRange{\n`);
67 {
68 for (const c of cols.filter((x) => x[0]!.includes(".."))) {
69 w.write(` .{ .from = 0x${c[0]!.split("..")[0]}, .to = 0x${c[0]!.split("..")[1]},`);
70 w.write(` .status = .${c[1]},`);
71 // prettier-ignore
72 w.write(` .mapping = &.{${c[2]?.split(" ").filter(x => x.length > 0).map((x) => `0x${x}`).join(",") ?? ""}},`,);
73 w.write(` .status2 = .${c[3] ?? "none"},`);
74 w.write(` },\n`);
75 }
76 }
77 w.write(`};\n`);
78 w.flush();
79}
80
81{
82 const source = `https://www.unicode.org/Public/${unicode_version}/idna/Idna2008.txt`;
83 const response = await fetch(source);
84 const data = await response.text();
85 const lines = data.split("\n").filter((x) => !x.startsWith("#") && x.length > 0);
86 const lines_clear = lines.map((x) => x.split("#")[0]!);
87 const cols = lines_clear.map((x) => x.split(";").map((y) => y.trim()));
88
89 closeSync(openSync("./2008.zig", "w", 0o777));
90 const f = Bun.file("./2008.zig");
91 const w = f.writer();
92
93 w.write(`// This file is part of Unicode IDNA Compatibility Processing\n`);
94 w.write(`// For documentation, see http://www.unicode.org/reports/tr46/\n`);
95 w.write(`//\n`);
96 w.write(`\n`);
97 w.write(`// Based on the source file: ${source}\n`);
98 w.write(`//\n`);
99 w.write(`\n`);
100 w.write(`pub const Prop = struct {\n`);
101 w.write(` cp: u21,\n`);
102 w.write(` category: Category\n`);
103 w.write(`};\n`);
104 w.write(`\n`);
105 w.write(`pub const PropRange = struct {\n`);
106 w.write(` from: u21,\n`);
107 w.write(` to: u21,\n`);
108 w.write(` category: Category\n`);
109 w.write(`};\n`);
110 w.write(`\n`);
111 w.write(`pub const Category = enum {\n`);
112 w.write(` pvalid,\n`);
113 w.write(` contextj,\n`);
114 w.write(` contexto,\n`);
115 w.write(` disallowed,\n`);
116 w.write(` unassigned,\n`);
117 w.write(`};\n`);
118 w.write(`\n`);
119 w.write(`pub const data = [_]Prop{\n`);
120 {
121 for (const c of cols.filter((x) => !x[0]!.includes(".."))) {
122 w.write(` .{ .cp = 0x${c[0]}, .category = .${c[1]!.toLowerCase()} },\n`);
123 }
124 }
125 w.write(`};\n`);
126 w.write(`\n`);
127 w.write(`pub const data_range = [_]PropRange{\n`);
128 {
129 for (const c of cols.filter((x) => x[0]!.includes(".."))) {
130 w.write(` .{ .from = 0x${c[0]!.split("..")[0]}, .to = 0x${c[0]!.split("..")[1]}, .category = .${c[1]!.toLowerCase()} },\n`);
131 }
132 }
133 w.write(`};\n`);
134 w.flush();
135}
136
137{
138 const source = `https://www.unicode.org/Public/${unicode_version}/idna/IdnaTestV2.txt`;
139 const response = await fetch(source);
140 const data = await response.text();
141 const lines = data.split("\n").filter((x) => !x.startsWith("#") && x.length > 0);
142 const lines_clear = lines.map((x) => x.split("#")[0]!);
143 const cols = lines_clear.map((x) => x.split(";").map((y) => y.trim()));
144
145 closeSync(openSync("./testv2.zig", "w", 0o777));
146 const f = Bun.file("./testv2.zig");
147 const w = f.writer();
148
149 w.write(`// This file is part of Unicode IDNA Compatibility Processing\n`);
150 w.write(`// For documentation, see http://www.unicode.org/reports/tr46/\n`);
151 w.write(`//\n`);
152 w.write(`\n`);
153 w.write(`// Based on the source file: ${source}\n`);
154 w.write(`//\n`);
155 w.write(`\n`);
156
157 //TODO:
158
159 w.flush();
160}
idna.zig created+5
...@@ -0,0 +1,5 @@
1const std = @import("std");
2
3pub const @"2008" = @import("./2008.zig");
4
5pub const table = @import("./table.zig");
licenses.txt created+3
...@@ -0,0 +1,3 @@
1MIT:
2= https://spdx.org/licenses/MIT
3- This
package.json created+10
...@@ -0,0 +1,10 @@
1{
2 "name": "zig-unicode-idna",
3 "private": true,
4 "devDependencies": {
5 "@types/bun": "latest"
6 },
7 "peerDependencies": {
8 "typescript": "^5"
9 }
10}
table.zig created+9303
...@@ -0,0 +1,9303 @@
1// This file is part of Unicode IDNA Compatibility Processing
2// For documentation, see http://www.unicode.org/reports/tr46/
3//
4
5// Based on the source file: https://www.unicode.org/Public/17.0.0/idna/IdnaMappingTable.txt
6//
7
8pub const Row = struct {
9 cp: u21,
10 status: Status,
11 mapping: []const u21,
12 status2: Status2008,
13};
14
15pub const RowRange = struct {
16 from: u21,
17 to: u21,
18 status: Status,
19 mapping: []const u21,
20 status2: Status2008,
21};
22
23pub const Status = enum {
24 valid,
25 ignored,
26 mapped,
27 deviation,
28 disallowed,
29};
30
31pub const Status2008 = enum {
32 none,
33 NV8,
34 XV8,
35};
36
37pub const data = [_]Row{
38 .{ .cp = 0x002F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
39 .{ .cp = 0x0041, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, },
40 .{ .cp = 0x0042, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, },
41 .{ .cp = 0x0043, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, },
42 .{ .cp = 0x0044, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, },
43 .{ .cp = 0x0045, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, },
44 .{ .cp = 0x0046, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, },
45 .{ .cp = 0x0047, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, },
46 .{ .cp = 0x0048, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, },
47 .{ .cp = 0x0049, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, },
48 .{ .cp = 0x004A, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, },
49 .{ .cp = 0x004B, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, },
50 .{ .cp = 0x004C, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, },
51 .{ .cp = 0x004D, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, },
52 .{ .cp = 0x004E, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, },
53 .{ .cp = 0x004F, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, },
54 .{ .cp = 0x0050, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, },
55 .{ .cp = 0x0051, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, },
56 .{ .cp = 0x0052, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, },
57 .{ .cp = 0x0053, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, },
58 .{ .cp = 0x0054, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, },
59 .{ .cp = 0x0055, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, },
60 .{ .cp = 0x0056, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, },
61 .{ .cp = 0x0057, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, },
62 .{ .cp = 0x0058, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, },
63 .{ .cp = 0x0059, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, },
64 .{ .cp = 0x005A, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, },
65 .{ .cp = 0x00A0, .status = .mapped, .mapping = &.{0x0020}, .status2 = .none, },
66 .{ .cp = 0x00A8, .status = .mapped, .mapping = &.{0x0020,0x0308}, .status2 = .none, },
67 .{ .cp = 0x00A9, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
68 .{ .cp = 0x00AA, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, },
69 .{ .cp = 0x00AD, .status = .ignored, .mapping = &.{}, .status2 = .none, },
70 .{ .cp = 0x00AE, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
71 .{ .cp = 0x00AF, .status = .mapped, .mapping = &.{0x0020,0x0304}, .status2 = .none, },
72 .{ .cp = 0x00B2, .status = .mapped, .mapping = &.{0x0032}, .status2 = .none, },
73 .{ .cp = 0x00B3, .status = .mapped, .mapping = &.{0x0033}, .status2 = .none, },
74 .{ .cp = 0x00B4, .status = .mapped, .mapping = &.{0x0020,0x0301}, .status2 = .none, },
75 .{ .cp = 0x00B5, .status = .mapped, .mapping = &.{0x03BC}, .status2 = .none, },
76 .{ .cp = 0x00B6, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
77 .{ .cp = 0x00B7, .status = .valid, .mapping = &.{}, .status2 = .none, },
78 .{ .cp = 0x00B8, .status = .mapped, .mapping = &.{0x0020,0x0327}, .status2 = .none, },
79 .{ .cp = 0x00B9, .status = .mapped, .mapping = &.{0x0031}, .status2 = .none, },
80 .{ .cp = 0x00BA, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, },
81 .{ .cp = 0x00BB, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
82 .{ .cp = 0x00BC, .status = .mapped, .mapping = &.{0x0031,0x2044,0x0034}, .status2 = .none, },
83 .{ .cp = 0x00BD, .status = .mapped, .mapping = &.{0x0031,0x2044,0x0032}, .status2 = .none, },
84 .{ .cp = 0x00BE, .status = .mapped, .mapping = &.{0x0033,0x2044,0x0034}, .status2 = .none, },
85 .{ .cp = 0x00BF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
86 .{ .cp = 0x00C0, .status = .mapped, .mapping = &.{0x00E0}, .status2 = .none, },
87 .{ .cp = 0x00C1, .status = .mapped, .mapping = &.{0x00E1}, .status2 = .none, },
88 .{ .cp = 0x00C2, .status = .mapped, .mapping = &.{0x00E2}, .status2 = .none, },
89 .{ .cp = 0x00C3, .status = .mapped, .mapping = &.{0x00E3}, .status2 = .none, },
90 .{ .cp = 0x00C4, .status = .mapped, .mapping = &.{0x00E4}, .status2 = .none, },
91 .{ .cp = 0x00C5, .status = .mapped, .mapping = &.{0x00E5}, .status2 = .none, },
92 .{ .cp = 0x00C6, .status = .mapped, .mapping = &.{0x00E6}, .status2 = .none, },
93 .{ .cp = 0x00C7, .status = .mapped, .mapping = &.{0x00E7}, .status2 = .none, },
94 .{ .cp = 0x00C8, .status = .mapped, .mapping = &.{0x00E8}, .status2 = .none, },
95 .{ .cp = 0x00C9, .status = .mapped, .mapping = &.{0x00E9}, .status2 = .none, },
96 .{ .cp = 0x00CA, .status = .mapped, .mapping = &.{0x00EA}, .status2 = .none, },
97 .{ .cp = 0x00CB, .status = .mapped, .mapping = &.{0x00EB}, .status2 = .none, },
98 .{ .cp = 0x00CC, .status = .mapped, .mapping = &.{0x00EC}, .status2 = .none, },
99 .{ .cp = 0x00CD, .status = .mapped, .mapping = &.{0x00ED}, .status2 = .none, },
100 .{ .cp = 0x00CE, .status = .mapped, .mapping = &.{0x00EE}, .status2 = .none, },
101 .{ .cp = 0x00CF, .status = .mapped, .mapping = &.{0x00EF}, .status2 = .none, },
102 .{ .cp = 0x00D0, .status = .mapped, .mapping = &.{0x00F0}, .status2 = .none, },
103 .{ .cp = 0x00D1, .status = .mapped, .mapping = &.{0x00F1}, .status2 = .none, },
104 .{ .cp = 0x00D2, .status = .mapped, .mapping = &.{0x00F2}, .status2 = .none, },
105 .{ .cp = 0x00D3, .status = .mapped, .mapping = &.{0x00F3}, .status2 = .none, },
106 .{ .cp = 0x00D4, .status = .mapped, .mapping = &.{0x00F4}, .status2 = .none, },
107 .{ .cp = 0x00D5, .status = .mapped, .mapping = &.{0x00F5}, .status2 = .none, },
108 .{ .cp = 0x00D6, .status = .mapped, .mapping = &.{0x00F6}, .status2 = .none, },
109 .{ .cp = 0x00D7, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
110 .{ .cp = 0x00D8, .status = .mapped, .mapping = &.{0x00F8}, .status2 = .none, },
111 .{ .cp = 0x00D9, .status = .mapped, .mapping = &.{0x00F9}, .status2 = .none, },
112 .{ .cp = 0x00DA, .status = .mapped, .mapping = &.{0x00FA}, .status2 = .none, },
113 .{ .cp = 0x00DB, .status = .mapped, .mapping = &.{0x00FB}, .status2 = .none, },
114 .{ .cp = 0x00DC, .status = .mapped, .mapping = &.{0x00FC}, .status2 = .none, },
115 .{ .cp = 0x00DD, .status = .mapped, .mapping = &.{0x00FD}, .status2 = .none, },
116 .{ .cp = 0x00DE, .status = .mapped, .mapping = &.{0x00FE}, .status2 = .none, },
117 .{ .cp = 0x00DF, .status = .deviation, .mapping = &.{0x0073,0x0073}, .status2 = .none, },
118 .{ .cp = 0x00F7, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
119 .{ .cp = 0x0100, .status = .mapped, .mapping = &.{0x0101}, .status2 = .none, },
120 .{ .cp = 0x0101, .status = .valid, .mapping = &.{}, .status2 = .none, },
121 .{ .cp = 0x0102, .status = .mapped, .mapping = &.{0x0103}, .status2 = .none, },
122 .{ .cp = 0x0103, .status = .valid, .mapping = &.{}, .status2 = .none, },
123 .{ .cp = 0x0104, .status = .mapped, .mapping = &.{0x0105}, .status2 = .none, },
124 .{ .cp = 0x0105, .status = .valid, .mapping = &.{}, .status2 = .none, },
125 .{ .cp = 0x0106, .status = .mapped, .mapping = &.{0x0107}, .status2 = .none, },
126 .{ .cp = 0x0107, .status = .valid, .mapping = &.{}, .status2 = .none, },
127 .{ .cp = 0x0108, .status = .mapped, .mapping = &.{0x0109}, .status2 = .none, },
128 .{ .cp = 0x0109, .status = .valid, .mapping = &.{}, .status2 = .none, },
129 .{ .cp = 0x010A, .status = .mapped, .mapping = &.{0x010B}, .status2 = .none, },
130 .{ .cp = 0x010B, .status = .valid, .mapping = &.{}, .status2 = .none, },
131 .{ .cp = 0x010C, .status = .mapped, .mapping = &.{0x010D}, .status2 = .none, },
132 .{ .cp = 0x010D, .status = .valid, .mapping = &.{}, .status2 = .none, },
133 .{ .cp = 0x010E, .status = .mapped, .mapping = &.{0x010F}, .status2 = .none, },
134 .{ .cp = 0x010F, .status = .valid, .mapping = &.{}, .status2 = .none, },
135 .{ .cp = 0x0110, .status = .mapped, .mapping = &.{0x0111}, .status2 = .none, },
136 .{ .cp = 0x0111, .status = .valid, .mapping = &.{}, .status2 = .none, },
137 .{ .cp = 0x0112, .status = .mapped, .mapping = &.{0x0113}, .status2 = .none, },
138 .{ .cp = 0x0113, .status = .valid, .mapping = &.{}, .status2 = .none, },
139 .{ .cp = 0x0114, .status = .mapped, .mapping = &.{0x0115}, .status2 = .none, },
140 .{ .cp = 0x0115, .status = .valid, .mapping = &.{}, .status2 = .none, },
141 .{ .cp = 0x0116, .status = .mapped, .mapping = &.{0x0117}, .status2 = .none, },
142 .{ .cp = 0x0117, .status = .valid, .mapping = &.{}, .status2 = .none, },
143 .{ .cp = 0x0118, .status = .mapped, .mapping = &.{0x0119}, .status2 = .none, },
144 .{ .cp = 0x0119, .status = .valid, .mapping = &.{}, .status2 = .none, },
145 .{ .cp = 0x011A, .status = .mapped, .mapping = &.{0x011B}, .status2 = .none, },
146 .{ .cp = 0x011B, .status = .valid, .mapping = &.{}, .status2 = .none, },
147 .{ .cp = 0x011C, .status = .mapped, .mapping = &.{0x011D}, .status2 = .none, },
148 .{ .cp = 0x011D, .status = .valid, .mapping = &.{}, .status2 = .none, },
149 .{ .cp = 0x011E, .status = .mapped, .mapping = &.{0x011F}, .status2 = .none, },
150 .{ .cp = 0x011F, .status = .valid, .mapping = &.{}, .status2 = .none, },
151 .{ .cp = 0x0120, .status = .mapped, .mapping = &.{0x0121}, .status2 = .none, },
152 .{ .cp = 0x0121, .status = .valid, .mapping = &.{}, .status2 = .none, },
153 .{ .cp = 0x0122, .status = .mapped, .mapping = &.{0x0123}, .status2 = .none, },
154 .{ .cp = 0x0123, .status = .valid, .mapping = &.{}, .status2 = .none, },
155 .{ .cp = 0x0124, .status = .mapped, .mapping = &.{0x0125}, .status2 = .none, },
156 .{ .cp = 0x0125, .status = .valid, .mapping = &.{}, .status2 = .none, },
157 .{ .cp = 0x0126, .status = .mapped, .mapping = &.{0x0127}, .status2 = .none, },
158 .{ .cp = 0x0127, .status = .valid, .mapping = &.{}, .status2 = .none, },
159 .{ .cp = 0x0128, .status = .mapped, .mapping = &.{0x0129}, .status2 = .none, },
160 .{ .cp = 0x0129, .status = .valid, .mapping = &.{}, .status2 = .none, },
161 .{ .cp = 0x012A, .status = .mapped, .mapping = &.{0x012B}, .status2 = .none, },
162 .{ .cp = 0x012B, .status = .valid, .mapping = &.{}, .status2 = .none, },
163 .{ .cp = 0x012C, .status = .mapped, .mapping = &.{0x012D}, .status2 = .none, },
164 .{ .cp = 0x012D, .status = .valid, .mapping = &.{}, .status2 = .none, },
165 .{ .cp = 0x012E, .status = .mapped, .mapping = &.{0x012F}, .status2 = .none, },
166 .{ .cp = 0x012F, .status = .valid, .mapping = &.{}, .status2 = .none, },
167 .{ .cp = 0x0130, .status = .mapped, .mapping = &.{0x0069,0x0307}, .status2 = .none, },
168 .{ .cp = 0x0131, .status = .valid, .mapping = &.{}, .status2 = .none, },
169 .{ .cp = 0x0134, .status = .mapped, .mapping = &.{0x0135}, .status2 = .none, },
170 .{ .cp = 0x0135, .status = .valid, .mapping = &.{}, .status2 = .none, },
171 .{ .cp = 0x0136, .status = .mapped, .mapping = &.{0x0137}, .status2 = .none, },
172 .{ .cp = 0x0139, .status = .mapped, .mapping = &.{0x013A}, .status2 = .none, },
173 .{ .cp = 0x013A, .status = .valid, .mapping = &.{}, .status2 = .none, },
174 .{ .cp = 0x013B, .status = .mapped, .mapping = &.{0x013C}, .status2 = .none, },
175 .{ .cp = 0x013C, .status = .valid, .mapping = &.{}, .status2 = .none, },
176 .{ .cp = 0x013D, .status = .mapped, .mapping = &.{0x013E}, .status2 = .none, },
177 .{ .cp = 0x013E, .status = .valid, .mapping = &.{}, .status2 = .none, },
178 .{ .cp = 0x0141, .status = .mapped, .mapping = &.{0x0142}, .status2 = .none, },
179 .{ .cp = 0x0142, .status = .valid, .mapping = &.{}, .status2 = .none, },
180 .{ .cp = 0x0143, .status = .mapped, .mapping = &.{0x0144}, .status2 = .none, },
181 .{ .cp = 0x0144, .status = .valid, .mapping = &.{}, .status2 = .none, },
182 .{ .cp = 0x0145, .status = .mapped, .mapping = &.{0x0146}, .status2 = .none, },
183 .{ .cp = 0x0146, .status = .valid, .mapping = &.{}, .status2 = .none, },
184 .{ .cp = 0x0147, .status = .mapped, .mapping = &.{0x0148}, .status2 = .none, },
185 .{ .cp = 0x0148, .status = .valid, .mapping = &.{}, .status2 = .none, },
186 .{ .cp = 0x0149, .status = .mapped, .mapping = &.{0x02BC,0x006E}, .status2 = .none, },
187 .{ .cp = 0x014A, .status = .mapped, .mapping = &.{0x014B}, .status2 = .none, },
188 .{ .cp = 0x014B, .status = .valid, .mapping = &.{}, .status2 = .none, },
189 .{ .cp = 0x014C, .status = .mapped, .mapping = &.{0x014D}, .status2 = .none, },
190 .{ .cp = 0x014D, .status = .valid, .mapping = &.{}, .status2 = .none, },
191 .{ .cp = 0x014E, .status = .mapped, .mapping = &.{0x014F}, .status2 = .none, },
192 .{ .cp = 0x014F, .status = .valid, .mapping = &.{}, .status2 = .none, },
193 .{ .cp = 0x0150, .status = .mapped, .mapping = &.{0x0151}, .status2 = .none, },
194 .{ .cp = 0x0151, .status = .valid, .mapping = &.{}, .status2 = .none, },
195 .{ .cp = 0x0152, .status = .mapped, .mapping = &.{0x0153}, .status2 = .none, },
196 .{ .cp = 0x0153, .status = .valid, .mapping = &.{}, .status2 = .none, },
197 .{ .cp = 0x0154, .status = .mapped, .mapping = &.{0x0155}, .status2 = .none, },
198 .{ .cp = 0x0155, .status = .valid, .mapping = &.{}, .status2 = .none, },
199 .{ .cp = 0x0156, .status = .mapped, .mapping = &.{0x0157}, .status2 = .none, },
200 .{ .cp = 0x0157, .status = .valid, .mapping = &.{}, .status2 = .none, },
201 .{ .cp = 0x0158, .status = .mapped, .mapping = &.{0x0159}, .status2 = .none, },
202 .{ .cp = 0x0159, .status = .valid, .mapping = &.{}, .status2 = .none, },
203 .{ .cp = 0x015A, .status = .mapped, .mapping = &.{0x015B}, .status2 = .none, },
204 .{ .cp = 0x015B, .status = .valid, .mapping = &.{}, .status2 = .none, },
205 .{ .cp = 0x015C, .status = .mapped, .mapping = &.{0x015D}, .status2 = .none, },
206 .{ .cp = 0x015D, .status = .valid, .mapping = &.{}, .status2 = .none, },
207 .{ .cp = 0x015E, .status = .mapped, .mapping = &.{0x015F}, .status2 = .none, },
208 .{ .cp = 0x015F, .status = .valid, .mapping = &.{}, .status2 = .none, },
209 .{ .cp = 0x0160, .status = .mapped, .mapping = &.{0x0161}, .status2 = .none, },
210 .{ .cp = 0x0161, .status = .valid, .mapping = &.{}, .status2 = .none, },
211 .{ .cp = 0x0162, .status = .mapped, .mapping = &.{0x0163}, .status2 = .none, },
212 .{ .cp = 0x0163, .status = .valid, .mapping = &.{}, .status2 = .none, },
213 .{ .cp = 0x0164, .status = .mapped, .mapping = &.{0x0165}, .status2 = .none, },
214 .{ .cp = 0x0165, .status = .valid, .mapping = &.{}, .status2 = .none, },
215 .{ .cp = 0x0166, .status = .mapped, .mapping = &.{0x0167}, .status2 = .none, },
216 .{ .cp = 0x0167, .status = .valid, .mapping = &.{}, .status2 = .none, },
217 .{ .cp = 0x0168, .status = .mapped, .mapping = &.{0x0169}, .status2 = .none, },
218 .{ .cp = 0x0169, .status = .valid, .mapping = &.{}, .status2 = .none, },
219 .{ .cp = 0x016A, .status = .mapped, .mapping = &.{0x016B}, .status2 = .none, },
220 .{ .cp = 0x016B, .status = .valid, .mapping = &.{}, .status2 = .none, },
221 .{ .cp = 0x016C, .status = .mapped, .mapping = &.{0x016D}, .status2 = .none, },
222 .{ .cp = 0x016D, .status = .valid, .mapping = &.{}, .status2 = .none, },
223 .{ .cp = 0x016E, .status = .mapped, .mapping = &.{0x016F}, .status2 = .none, },
224 .{ .cp = 0x016F, .status = .valid, .mapping = &.{}, .status2 = .none, },
225 .{ .cp = 0x0170, .status = .mapped, .mapping = &.{0x0171}, .status2 = .none, },
226 .{ .cp = 0x0171, .status = .valid, .mapping = &.{}, .status2 = .none, },
227 .{ .cp = 0x0172, .status = .mapped, .mapping = &.{0x0173}, .status2 = .none, },
228 .{ .cp = 0x0173, .status = .valid, .mapping = &.{}, .status2 = .none, },
229 .{ .cp = 0x0174, .status = .mapped, .mapping = &.{0x0175}, .status2 = .none, },
230 .{ .cp = 0x0175, .status = .valid, .mapping = &.{}, .status2 = .none, },
231 .{ .cp = 0x0176, .status = .mapped, .mapping = &.{0x0177}, .status2 = .none, },
232 .{ .cp = 0x0177, .status = .valid, .mapping = &.{}, .status2 = .none, },
233 .{ .cp = 0x0178, .status = .mapped, .mapping = &.{0x00FF}, .status2 = .none, },
234 .{ .cp = 0x0179, .status = .mapped, .mapping = &.{0x017A}, .status2 = .none, },
235 .{ .cp = 0x017A, .status = .valid, .mapping = &.{}, .status2 = .none, },
236 .{ .cp = 0x017B, .status = .mapped, .mapping = &.{0x017C}, .status2 = .none, },
237 .{ .cp = 0x017C, .status = .valid, .mapping = &.{}, .status2 = .none, },
238 .{ .cp = 0x017D, .status = .mapped, .mapping = &.{0x017E}, .status2 = .none, },
239 .{ .cp = 0x017E, .status = .valid, .mapping = &.{}, .status2 = .none, },
240 .{ .cp = 0x017F, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, },
241 .{ .cp = 0x0180, .status = .valid, .mapping = &.{}, .status2 = .none, },
242 .{ .cp = 0x0181, .status = .mapped, .mapping = &.{0x0253}, .status2 = .none, },
243 .{ .cp = 0x0182, .status = .mapped, .mapping = &.{0x0183}, .status2 = .none, },
244 .{ .cp = 0x0183, .status = .valid, .mapping = &.{}, .status2 = .none, },
245 .{ .cp = 0x0184, .status = .mapped, .mapping = &.{0x0185}, .status2 = .none, },
246 .{ .cp = 0x0185, .status = .valid, .mapping = &.{}, .status2 = .none, },
247 .{ .cp = 0x0186, .status = .mapped, .mapping = &.{0x0254}, .status2 = .none, },
248 .{ .cp = 0x0187, .status = .mapped, .mapping = &.{0x0188}, .status2 = .none, },
249 .{ .cp = 0x0188, .status = .valid, .mapping = &.{}, .status2 = .none, },
250 .{ .cp = 0x0189, .status = .mapped, .mapping = &.{0x0256}, .status2 = .none, },
251 .{ .cp = 0x018A, .status = .mapped, .mapping = &.{0x0257}, .status2 = .none, },
252 .{ .cp = 0x018B, .status = .mapped, .mapping = &.{0x018C}, .status2 = .none, },
253 .{ .cp = 0x018E, .status = .mapped, .mapping = &.{0x01DD}, .status2 = .none, },
254 .{ .cp = 0x018F, .status = .mapped, .mapping = &.{0x0259}, .status2 = .none, },
255 .{ .cp = 0x0190, .status = .mapped, .mapping = &.{0x025B}, .status2 = .none, },
256 .{ .cp = 0x0191, .status = .mapped, .mapping = &.{0x0192}, .status2 = .none, },
257 .{ .cp = 0x0192, .status = .valid, .mapping = &.{}, .status2 = .none, },
258 .{ .cp = 0x0193, .status = .mapped, .mapping = &.{0x0260}, .status2 = .none, },
259 .{ .cp = 0x0194, .status = .mapped, .mapping = &.{0x0263}, .status2 = .none, },
260 .{ .cp = 0x0195, .status = .valid, .mapping = &.{}, .status2 = .none, },
261 .{ .cp = 0x0196, .status = .mapped, .mapping = &.{0x0269}, .status2 = .none, },
262 .{ .cp = 0x0197, .status = .mapped, .mapping = &.{0x0268}, .status2 = .none, },
263 .{ .cp = 0x0198, .status = .mapped, .mapping = &.{0x0199}, .status2 = .none, },
264 .{ .cp = 0x019C, .status = .mapped, .mapping = &.{0x026F}, .status2 = .none, },
265 .{ .cp = 0x019D, .status = .mapped, .mapping = &.{0x0272}, .status2 = .none, },
266 .{ .cp = 0x019E, .status = .valid, .mapping = &.{}, .status2 = .none, },
267 .{ .cp = 0x019F, .status = .mapped, .mapping = &.{0x0275}, .status2 = .none, },
268 .{ .cp = 0x01A0, .status = .mapped, .mapping = &.{0x01A1}, .status2 = .none, },
269 .{ .cp = 0x01A1, .status = .valid, .mapping = &.{}, .status2 = .none, },
270 .{ .cp = 0x01A2, .status = .mapped, .mapping = &.{0x01A3}, .status2 = .none, },
271 .{ .cp = 0x01A3, .status = .valid, .mapping = &.{}, .status2 = .none, },
272 .{ .cp = 0x01A4, .status = .mapped, .mapping = &.{0x01A5}, .status2 = .none, },
273 .{ .cp = 0x01A5, .status = .valid, .mapping = &.{}, .status2 = .none, },
274 .{ .cp = 0x01A6, .status = .mapped, .mapping = &.{0x0280}, .status2 = .none, },
275 .{ .cp = 0x01A7, .status = .mapped, .mapping = &.{0x01A8}, .status2 = .none, },
276 .{ .cp = 0x01A8, .status = .valid, .mapping = &.{}, .status2 = .none, },
277 .{ .cp = 0x01A9, .status = .mapped, .mapping = &.{0x0283}, .status2 = .none, },
278 .{ .cp = 0x01AC, .status = .mapped, .mapping = &.{0x01AD}, .status2 = .none, },
279 .{ .cp = 0x01AD, .status = .valid, .mapping = &.{}, .status2 = .none, },
280 .{ .cp = 0x01AE, .status = .mapped, .mapping = &.{0x0288}, .status2 = .none, },
281 .{ .cp = 0x01AF, .status = .mapped, .mapping = &.{0x01B0}, .status2 = .none, },
282 .{ .cp = 0x01B0, .status = .valid, .mapping = &.{}, .status2 = .none, },
283 .{ .cp = 0x01B1, .status = .mapped, .mapping = &.{0x028A}, .status2 = .none, },
284 .{ .cp = 0x01B2, .status = .mapped, .mapping = &.{0x028B}, .status2 = .none, },
285 .{ .cp = 0x01B3, .status = .mapped, .mapping = &.{0x01B4}, .status2 = .none, },
286 .{ .cp = 0x01B4, .status = .valid, .mapping = &.{}, .status2 = .none, },
287 .{ .cp = 0x01B5, .status = .mapped, .mapping = &.{0x01B6}, .status2 = .none, },
288 .{ .cp = 0x01B6, .status = .valid, .mapping = &.{}, .status2 = .none, },
289 .{ .cp = 0x01B7, .status = .mapped, .mapping = &.{0x0292}, .status2 = .none, },
290 .{ .cp = 0x01B8, .status = .mapped, .mapping = &.{0x01B9}, .status2 = .none, },
291 .{ .cp = 0x01BC, .status = .mapped, .mapping = &.{0x01BD}, .status2 = .none, },
292 .{ .cp = 0x01CD, .status = .mapped, .mapping = &.{0x01CE}, .status2 = .none, },
293 .{ .cp = 0x01CE, .status = .valid, .mapping = &.{}, .status2 = .none, },
294 .{ .cp = 0x01CF, .status = .mapped, .mapping = &.{0x01D0}, .status2 = .none, },
295 .{ .cp = 0x01D0, .status = .valid, .mapping = &.{}, .status2 = .none, },
296 .{ .cp = 0x01D1, .status = .mapped, .mapping = &.{0x01D2}, .status2 = .none, },
297 .{ .cp = 0x01D2, .status = .valid, .mapping = &.{}, .status2 = .none, },
298 .{ .cp = 0x01D3, .status = .mapped, .mapping = &.{0x01D4}, .status2 = .none, },
299 .{ .cp = 0x01D4, .status = .valid, .mapping = &.{}, .status2 = .none, },
300 .{ .cp = 0x01D5, .status = .mapped, .mapping = &.{0x01D6}, .status2 = .none, },
301 .{ .cp = 0x01D6, .status = .valid, .mapping = &.{}, .status2 = .none, },
302 .{ .cp = 0x01D7, .status = .mapped, .mapping = &.{0x01D8}, .status2 = .none, },
303 .{ .cp = 0x01D8, .status = .valid, .mapping = &.{}, .status2 = .none, },
304 .{ .cp = 0x01D9, .status = .mapped, .mapping = &.{0x01DA}, .status2 = .none, },
305 .{ .cp = 0x01DA, .status = .valid, .mapping = &.{}, .status2 = .none, },
306 .{ .cp = 0x01DB, .status = .mapped, .mapping = &.{0x01DC}, .status2 = .none, },
307 .{ .cp = 0x01DE, .status = .mapped, .mapping = &.{0x01DF}, .status2 = .none, },
308 .{ .cp = 0x01DF, .status = .valid, .mapping = &.{}, .status2 = .none, },
309 .{ .cp = 0x01E0, .status = .mapped, .mapping = &.{0x01E1}, .status2 = .none, },
310 .{ .cp = 0x01E1, .status = .valid, .mapping = &.{}, .status2 = .none, },
311 .{ .cp = 0x01E2, .status = .mapped, .mapping = &.{0x01E3}, .status2 = .none, },
312 .{ .cp = 0x01E3, .status = .valid, .mapping = &.{}, .status2 = .none, },
313 .{ .cp = 0x01E4, .status = .mapped, .mapping = &.{0x01E5}, .status2 = .none, },
314 .{ .cp = 0x01E5, .status = .valid, .mapping = &.{}, .status2 = .none, },
315 .{ .cp = 0x01E6, .status = .mapped, .mapping = &.{0x01E7}, .status2 = .none, },
316 .{ .cp = 0x01E7, .status = .valid, .mapping = &.{}, .status2 = .none, },
317 .{ .cp = 0x01E8, .status = .mapped, .mapping = &.{0x01E9}, .status2 = .none, },
318 .{ .cp = 0x01E9, .status = .valid, .mapping = &.{}, .status2 = .none, },
319 .{ .cp = 0x01EA, .status = .mapped, .mapping = &.{0x01EB}, .status2 = .none, },
320 .{ .cp = 0x01EB, .status = .valid, .mapping = &.{}, .status2 = .none, },
321 .{ .cp = 0x01EC, .status = .mapped, .mapping = &.{0x01ED}, .status2 = .none, },
322 .{ .cp = 0x01ED, .status = .valid, .mapping = &.{}, .status2 = .none, },
323 .{ .cp = 0x01EE, .status = .mapped, .mapping = &.{0x01EF}, .status2 = .none, },
324 .{ .cp = 0x01F4, .status = .mapped, .mapping = &.{0x01F5}, .status2 = .none, },
325 .{ .cp = 0x01F5, .status = .valid, .mapping = &.{}, .status2 = .none, },
326 .{ .cp = 0x01F6, .status = .mapped, .mapping = &.{0x0195}, .status2 = .none, },
327 .{ .cp = 0x01F7, .status = .mapped, .mapping = &.{0x01BF}, .status2 = .none, },
328 .{ .cp = 0x01F8, .status = .mapped, .mapping = &.{0x01F9}, .status2 = .none, },
329 .{ .cp = 0x01F9, .status = .valid, .mapping = &.{}, .status2 = .none, },
330 .{ .cp = 0x01FA, .status = .mapped, .mapping = &.{0x01FB}, .status2 = .none, },
331 .{ .cp = 0x01FB, .status = .valid, .mapping = &.{}, .status2 = .none, },
332 .{ .cp = 0x01FC, .status = .mapped, .mapping = &.{0x01FD}, .status2 = .none, },
333 .{ .cp = 0x01FD, .status = .valid, .mapping = &.{}, .status2 = .none, },
334 .{ .cp = 0x01FE, .status = .mapped, .mapping = &.{0x01FF}, .status2 = .none, },
335 .{ .cp = 0x01FF, .status = .valid, .mapping = &.{}, .status2 = .none, },
336 .{ .cp = 0x0200, .status = .mapped, .mapping = &.{0x0201}, .status2 = .none, },
337 .{ .cp = 0x0201, .status = .valid, .mapping = &.{}, .status2 = .none, },
338 .{ .cp = 0x0202, .status = .mapped, .mapping = &.{0x0203}, .status2 = .none, },
339 .{ .cp = 0x0203, .status = .valid, .mapping = &.{}, .status2 = .none, },
340 .{ .cp = 0x0204, .status = .mapped, .mapping = &.{0x0205}, .status2 = .none, },
341 .{ .cp = 0x0205, .status = .valid, .mapping = &.{}, .status2 = .none, },
342 .{ .cp = 0x0206, .status = .mapped, .mapping = &.{0x0207}, .status2 = .none, },
343 .{ .cp = 0x0207, .status = .valid, .mapping = &.{}, .status2 = .none, },
344 .{ .cp = 0x0208, .status = .mapped, .mapping = &.{0x0209}, .status2 = .none, },
345 .{ .cp = 0x0209, .status = .valid, .mapping = &.{}, .status2 = .none, },
346 .{ .cp = 0x020A, .status = .mapped, .mapping = &.{0x020B}, .status2 = .none, },
347 .{ .cp = 0x020B, .status = .valid, .mapping = &.{}, .status2 = .none, },
348 .{ .cp = 0x020C, .status = .mapped, .mapping = &.{0x020D}, .status2 = .none, },
349 .{ .cp = 0x020D, .status = .valid, .mapping = &.{}, .status2 = .none, },
350 .{ .cp = 0x020E, .status = .mapped, .mapping = &.{0x020F}, .status2 = .none, },
351 .{ .cp = 0x020F, .status = .valid, .mapping = &.{}, .status2 = .none, },
352 .{ .cp = 0x0210, .status = .mapped, .mapping = &.{0x0211}, .status2 = .none, },
353 .{ .cp = 0x0211, .status = .valid, .mapping = &.{}, .status2 = .none, },
354 .{ .cp = 0x0212, .status = .mapped, .mapping = &.{0x0213}, .status2 = .none, },
355 .{ .cp = 0x0213, .status = .valid, .mapping = &.{}, .status2 = .none, },
356 .{ .cp = 0x0214, .status = .mapped, .mapping = &.{0x0215}, .status2 = .none, },
357 .{ .cp = 0x0215, .status = .valid, .mapping = &.{}, .status2 = .none, },
358 .{ .cp = 0x0216, .status = .mapped, .mapping = &.{0x0217}, .status2 = .none, },
359 .{ .cp = 0x0217, .status = .valid, .mapping = &.{}, .status2 = .none, },
360 .{ .cp = 0x0218, .status = .mapped, .mapping = &.{0x0219}, .status2 = .none, },
361 .{ .cp = 0x0219, .status = .valid, .mapping = &.{}, .status2 = .none, },
362 .{ .cp = 0x021A, .status = .mapped, .mapping = &.{0x021B}, .status2 = .none, },
363 .{ .cp = 0x021B, .status = .valid, .mapping = &.{}, .status2 = .none, },
364 .{ .cp = 0x021C, .status = .mapped, .mapping = &.{0x021D}, .status2 = .none, },
365 .{ .cp = 0x021D, .status = .valid, .mapping = &.{}, .status2 = .none, },
366 .{ .cp = 0x021E, .status = .mapped, .mapping = &.{0x021F}, .status2 = .none, },
367 .{ .cp = 0x021F, .status = .valid, .mapping = &.{}, .status2 = .none, },
368 .{ .cp = 0x0220, .status = .mapped, .mapping = &.{0x019E}, .status2 = .none, },
369 .{ .cp = 0x0221, .status = .valid, .mapping = &.{}, .status2 = .none, },
370 .{ .cp = 0x0222, .status = .mapped, .mapping = &.{0x0223}, .status2 = .none, },
371 .{ .cp = 0x0223, .status = .valid, .mapping = &.{}, .status2 = .none, },
372 .{ .cp = 0x0224, .status = .mapped, .mapping = &.{0x0225}, .status2 = .none, },
373 .{ .cp = 0x0225, .status = .valid, .mapping = &.{}, .status2 = .none, },
374 .{ .cp = 0x0226, .status = .mapped, .mapping = &.{0x0227}, .status2 = .none, },
375 .{ .cp = 0x0227, .status = .valid, .mapping = &.{}, .status2 = .none, },
376 .{ .cp = 0x0228, .status = .mapped, .mapping = &.{0x0229}, .status2 = .none, },
377 .{ .cp = 0x0229, .status = .valid, .mapping = &.{}, .status2 = .none, },
378 .{ .cp = 0x022A, .status = .mapped, .mapping = &.{0x022B}, .status2 = .none, },
379 .{ .cp = 0x022B, .status = .valid, .mapping = &.{}, .status2 = .none, },
380 .{ .cp = 0x022C, .status = .mapped, .mapping = &.{0x022D}, .status2 = .none, },
381 .{ .cp = 0x022D, .status = .valid, .mapping = &.{}, .status2 = .none, },
382 .{ .cp = 0x022E, .status = .mapped, .mapping = &.{0x022F}, .status2 = .none, },
383 .{ .cp = 0x022F, .status = .valid, .mapping = &.{}, .status2 = .none, },
384 .{ .cp = 0x0230, .status = .mapped, .mapping = &.{0x0231}, .status2 = .none, },
385 .{ .cp = 0x0231, .status = .valid, .mapping = &.{}, .status2 = .none, },
386 .{ .cp = 0x0232, .status = .mapped, .mapping = &.{0x0233}, .status2 = .none, },
387 .{ .cp = 0x0233, .status = .valid, .mapping = &.{}, .status2 = .none, },
388 .{ .cp = 0x023A, .status = .mapped, .mapping = &.{0x2C65}, .status2 = .none, },
389 .{ .cp = 0x023B, .status = .mapped, .mapping = &.{0x023C}, .status2 = .none, },
390 .{ .cp = 0x023C, .status = .valid, .mapping = &.{}, .status2 = .none, },
391 .{ .cp = 0x023D, .status = .mapped, .mapping = &.{0x019A}, .status2 = .none, },
392 .{ .cp = 0x023E, .status = .mapped, .mapping = &.{0x2C66}, .status2 = .none, },
393 .{ .cp = 0x0241, .status = .mapped, .mapping = &.{0x0242}, .status2 = .none, },
394 .{ .cp = 0x0242, .status = .valid, .mapping = &.{}, .status2 = .none, },
395 .{ .cp = 0x0243, .status = .mapped, .mapping = &.{0x0180}, .status2 = .none, },
396 .{ .cp = 0x0244, .status = .mapped, .mapping = &.{0x0289}, .status2 = .none, },
397 .{ .cp = 0x0245, .status = .mapped, .mapping = &.{0x028C}, .status2 = .none, },
398 .{ .cp = 0x0246, .status = .mapped, .mapping = &.{0x0247}, .status2 = .none, },
399 .{ .cp = 0x0247, .status = .valid, .mapping = &.{}, .status2 = .none, },
400 .{ .cp = 0x0248, .status = .mapped, .mapping = &.{0x0249}, .status2 = .none, },
401 .{ .cp = 0x0249, .status = .valid, .mapping = &.{}, .status2 = .none, },
402 .{ .cp = 0x024A, .status = .mapped, .mapping = &.{0x024B}, .status2 = .none, },
403 .{ .cp = 0x024B, .status = .valid, .mapping = &.{}, .status2 = .none, },
404 .{ .cp = 0x024C, .status = .mapped, .mapping = &.{0x024D}, .status2 = .none, },
405 .{ .cp = 0x024D, .status = .valid, .mapping = &.{}, .status2 = .none, },
406 .{ .cp = 0x024E, .status = .mapped, .mapping = &.{0x024F}, .status2 = .none, },
407 .{ .cp = 0x024F, .status = .valid, .mapping = &.{}, .status2 = .none, },
408 .{ .cp = 0x02B0, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, },
409 .{ .cp = 0x02B1, .status = .mapped, .mapping = &.{0x0266}, .status2 = .none, },
410 .{ .cp = 0x02B2, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, },
411 .{ .cp = 0x02B3, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, },
412 .{ .cp = 0x02B4, .status = .mapped, .mapping = &.{0x0279}, .status2 = .none, },
413 .{ .cp = 0x02B5, .status = .mapped, .mapping = &.{0x027B}, .status2 = .none, },
414 .{ .cp = 0x02B6, .status = .mapped, .mapping = &.{0x0281}, .status2 = .none, },
415 .{ .cp = 0x02B7, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, },
416 .{ .cp = 0x02B8, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, },
417 .{ .cp = 0x02D8, .status = .mapped, .mapping = &.{0x0020,0x0306}, .status2 = .none, },
418 .{ .cp = 0x02D9, .status = .mapped, .mapping = &.{0x0020,0x0307}, .status2 = .none, },
419 .{ .cp = 0x02DA, .status = .mapped, .mapping = &.{0x0020,0x030A}, .status2 = .none, },
420 .{ .cp = 0x02DB, .status = .mapped, .mapping = &.{0x0020,0x0328}, .status2 = .none, },
421 .{ .cp = 0x02DC, .status = .mapped, .mapping = &.{0x0020,0x0303}, .status2 = .none, },
422 .{ .cp = 0x02DD, .status = .mapped, .mapping = &.{0x0020,0x030B}, .status2 = .none, },
423 .{ .cp = 0x02DE, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
424 .{ .cp = 0x02DF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
425 .{ .cp = 0x02E0, .status = .mapped, .mapping = &.{0x0263}, .status2 = .none, },
426 .{ .cp = 0x02E1, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, },
427 .{ .cp = 0x02E2, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, },
428 .{ .cp = 0x02E3, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, },
429 .{ .cp = 0x02E4, .status = .mapped, .mapping = &.{0x0295}, .status2 = .none, },
430 .{ .cp = 0x02EC, .status = .valid, .mapping = &.{}, .status2 = .none, },
431 .{ .cp = 0x02ED, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
432 .{ .cp = 0x02EE, .status = .valid, .mapping = &.{}, .status2 = .none, },
433 .{ .cp = 0x0340, .status = .mapped, .mapping = &.{0x0300}, .status2 = .none, },
434 .{ .cp = 0x0341, .status = .mapped, .mapping = &.{0x0301}, .status2 = .none, },
435 .{ .cp = 0x0342, .status = .valid, .mapping = &.{}, .status2 = .none, },
436 .{ .cp = 0x0343, .status = .mapped, .mapping = &.{0x0313}, .status2 = .none, },
437 .{ .cp = 0x0344, .status = .mapped, .mapping = &.{0x0308,0x0301}, .status2 = .none, },
438 .{ .cp = 0x0345, .status = .mapped, .mapping = &.{0x03B9}, .status2 = .none, },
439 .{ .cp = 0x034F, .status = .ignored, .mapping = &.{}, .status2 = .none, },
440 .{ .cp = 0x0362, .status = .valid, .mapping = &.{}, .status2 = .none, },
441 .{ .cp = 0x0370, .status = .mapped, .mapping = &.{0x0371}, .status2 = .none, },
442 .{ .cp = 0x0371, .status = .valid, .mapping = &.{}, .status2 = .none, },
443 .{ .cp = 0x0372, .status = .mapped, .mapping = &.{0x0373}, .status2 = .none, },
444 .{ .cp = 0x0373, .status = .valid, .mapping = &.{}, .status2 = .none, },
445 .{ .cp = 0x0374, .status = .mapped, .mapping = &.{0x02B9}, .status2 = .none, },
446 .{ .cp = 0x0375, .status = .valid, .mapping = &.{}, .status2 = .none, },
447 .{ .cp = 0x0376, .status = .mapped, .mapping = &.{0x0377}, .status2 = .none, },
448 .{ .cp = 0x0377, .status = .valid, .mapping = &.{}, .status2 = .none, },
449 .{ .cp = 0x037A, .status = .mapped, .mapping = &.{0x0020,0x03B9}, .status2 = .none, },
450 .{ .cp = 0x037E, .status = .mapped, .mapping = &.{0x003B}, .status2 = .none, },
451 .{ .cp = 0x037F, .status = .mapped, .mapping = &.{0x03F3}, .status2 = .none, },
452 .{ .cp = 0x0384, .status = .mapped, .mapping = &.{0x0020,0x0301}, .status2 = .none, },
453 .{ .cp = 0x0385, .status = .mapped, .mapping = &.{0x0020,0x0308,0x0301}, .status2 = .none, },
454 .{ .cp = 0x0386, .status = .mapped, .mapping = &.{0x03AC}, .status2 = .none, },
455 .{ .cp = 0x0387, .status = .mapped, .mapping = &.{0x00B7}, .status2 = .none, },
456 .{ .cp = 0x0388, .status = .mapped, .mapping = &.{0x03AD}, .status2 = .none, },
457 .{ .cp = 0x0389, .status = .mapped, .mapping = &.{0x03AE}, .status2 = .none, },
458 .{ .cp = 0x038A, .status = .mapped, .mapping = &.{0x03AF}, .status2 = .none, },
459 .{ .cp = 0x038B, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
460 .{ .cp = 0x038C, .status = .mapped, .mapping = &.{0x03CC}, .status2 = .none, },
461 .{ .cp = 0x038D, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
462 .{ .cp = 0x038E, .status = .mapped, .mapping = &.{0x03CD}, .status2 = .none, },
463 .{ .cp = 0x038F, .status = .mapped, .mapping = &.{0x03CE}, .status2 = .none, },
464 .{ .cp = 0x0390, .status = .valid, .mapping = &.{}, .status2 = .none, },
465 .{ .cp = 0x0391, .status = .mapped, .mapping = &.{0x03B1}, .status2 = .none, },
466 .{ .cp = 0x0392, .status = .mapped, .mapping = &.{0x03B2}, .status2 = .none, },
467 .{ .cp = 0x0393, .status = .mapped, .mapping = &.{0x03B3}, .status2 = .none, },
468 .{ .cp = 0x0394, .status = .mapped, .mapping = &.{0x03B4}, .status2 = .none, },
469 .{ .cp = 0x0395, .status = .mapped, .mapping = &.{0x03B5}, .status2 = .none, },
470 .{ .cp = 0x0396, .status = .mapped, .mapping = &.{0x03B6}, .status2 = .none, },
471 .{ .cp = 0x0397, .status = .mapped, .mapping = &.{0x03B7}, .status2 = .none, },
472 .{ .cp = 0x0398, .status = .mapped, .mapping = &.{0x03B8}, .status2 = .none, },
473 .{ .cp = 0x0399, .status = .mapped, .mapping = &.{0x03B9}, .status2 = .none, },
474 .{ .cp = 0x039A, .status = .mapped, .mapping = &.{0x03BA}, .status2 = .none, },
475 .{ .cp = 0x039B, .status = .mapped, .mapping = &.{0x03BB}, .status2 = .none, },
476 .{ .cp = 0x039C, .status = .mapped, .mapping = &.{0x03BC}, .status2 = .none, },
477 .{ .cp = 0x039D, .status = .mapped, .mapping = &.{0x03BD}, .status2 = .none, },
478 .{ .cp = 0x039E, .status = .mapped, .mapping = &.{0x03BE}, .status2 = .none, },
479 .{ .cp = 0x039F, .status = .mapped, .mapping = &.{0x03BF}, .status2 = .none, },
480 .{ .cp = 0x03A0, .status = .mapped, .mapping = &.{0x03C0}, .status2 = .none, },
481 .{ .cp = 0x03A1, .status = .mapped, .mapping = &.{0x03C1}, .status2 = .none, },
482 .{ .cp = 0x03A2, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
483 .{ .cp = 0x03A3, .status = .mapped, .mapping = &.{0x03C3}, .status2 = .none, },
484 .{ .cp = 0x03A4, .status = .mapped, .mapping = &.{0x03C4}, .status2 = .none, },
485 .{ .cp = 0x03A5, .status = .mapped, .mapping = &.{0x03C5}, .status2 = .none, },
486 .{ .cp = 0x03A6, .status = .mapped, .mapping = &.{0x03C6}, .status2 = .none, },
487 .{ .cp = 0x03A7, .status = .mapped, .mapping = &.{0x03C7}, .status2 = .none, },
488 .{ .cp = 0x03A8, .status = .mapped, .mapping = &.{0x03C8}, .status2 = .none, },
489 .{ .cp = 0x03A9, .status = .mapped, .mapping = &.{0x03C9}, .status2 = .none, },
490 .{ .cp = 0x03AA, .status = .mapped, .mapping = &.{0x03CA}, .status2 = .none, },
491 .{ .cp = 0x03AB, .status = .mapped, .mapping = &.{0x03CB}, .status2 = .none, },
492 .{ .cp = 0x03C2, .status = .deviation, .mapping = &.{0x03C3}, .status2 = .none, },
493 .{ .cp = 0x03CF, .status = .mapped, .mapping = &.{0x03D7}, .status2 = .none, },
494 .{ .cp = 0x03D0, .status = .mapped, .mapping = &.{0x03B2}, .status2 = .none, },
495 .{ .cp = 0x03D1, .status = .mapped, .mapping = &.{0x03B8}, .status2 = .none, },
496 .{ .cp = 0x03D2, .status = .mapped, .mapping = &.{0x03C5}, .status2 = .none, },
497 .{ .cp = 0x03D3, .status = .mapped, .mapping = &.{0x03CD}, .status2 = .none, },
498 .{ .cp = 0x03D4, .status = .mapped, .mapping = &.{0x03CB}, .status2 = .none, },
499 .{ .cp = 0x03D5, .status = .mapped, .mapping = &.{0x03C6}, .status2 = .none, },
500 .{ .cp = 0x03D6, .status = .mapped, .mapping = &.{0x03C0}, .status2 = .none, },
501 .{ .cp = 0x03D7, .status = .valid, .mapping = &.{}, .status2 = .none, },
502 .{ .cp = 0x03D8, .status = .mapped, .mapping = &.{0x03D9}, .status2 = .none, },
503 .{ .cp = 0x03D9, .status = .valid, .mapping = &.{}, .status2 = .none, },
504 .{ .cp = 0x03DA, .status = .mapped, .mapping = &.{0x03DB}, .status2 = .none, },
505 .{ .cp = 0x03DB, .status = .valid, .mapping = &.{}, .status2 = .none, },
506 .{ .cp = 0x03DC, .status = .mapped, .mapping = &.{0x03DD}, .status2 = .none, },
507 .{ .cp = 0x03DD, .status = .valid, .mapping = &.{}, .status2 = .none, },
508 .{ .cp = 0x03DE, .status = .mapped, .mapping = &.{0x03DF}, .status2 = .none, },
509 .{ .cp = 0x03DF, .status = .valid, .mapping = &.{}, .status2 = .none, },
510 .{ .cp = 0x03E0, .status = .mapped, .mapping = &.{0x03E1}, .status2 = .none, },
511 .{ .cp = 0x03E1, .status = .valid, .mapping = &.{}, .status2 = .none, },
512 .{ .cp = 0x03E2, .status = .mapped, .mapping = &.{0x03E3}, .status2 = .none, },
513 .{ .cp = 0x03E3, .status = .valid, .mapping = &.{}, .status2 = .none, },
514 .{ .cp = 0x03E4, .status = .mapped, .mapping = &.{0x03E5}, .status2 = .none, },
515 .{ .cp = 0x03E5, .status = .valid, .mapping = &.{}, .status2 = .none, },
516 .{ .cp = 0x03E6, .status = .mapped, .mapping = &.{0x03E7}, .status2 = .none, },
517 .{ .cp = 0x03E7, .status = .valid, .mapping = &.{}, .status2 = .none, },
518 .{ .cp = 0x03E8, .status = .mapped, .mapping = &.{0x03E9}, .status2 = .none, },
519 .{ .cp = 0x03E9, .status = .valid, .mapping = &.{}, .status2 = .none, },
520 .{ .cp = 0x03EA, .status = .mapped, .mapping = &.{0x03EB}, .status2 = .none, },
521 .{ .cp = 0x03EB, .status = .valid, .mapping = &.{}, .status2 = .none, },
522 .{ .cp = 0x03EC, .status = .mapped, .mapping = &.{0x03ED}, .status2 = .none, },
523 .{ .cp = 0x03ED, .status = .valid, .mapping = &.{}, .status2 = .none, },
524 .{ .cp = 0x03EE, .status = .mapped, .mapping = &.{0x03EF}, .status2 = .none, },
525 .{ .cp = 0x03EF, .status = .valid, .mapping = &.{}, .status2 = .none, },
526 .{ .cp = 0x03F0, .status = .mapped, .mapping = &.{0x03BA}, .status2 = .none, },
527 .{ .cp = 0x03F1, .status = .mapped, .mapping = &.{0x03C1}, .status2 = .none, },
528 .{ .cp = 0x03F2, .status = .mapped, .mapping = &.{0x03C3}, .status2 = .none, },
529 .{ .cp = 0x03F3, .status = .valid, .mapping = &.{}, .status2 = .none, },
530 .{ .cp = 0x03F4, .status = .mapped, .mapping = &.{0x03B8}, .status2 = .none, },
531 .{ .cp = 0x03F5, .status = .mapped, .mapping = &.{0x03B5}, .status2 = .none, },
532 .{ .cp = 0x03F6, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
533 .{ .cp = 0x03F7, .status = .mapped, .mapping = &.{0x03F8}, .status2 = .none, },
534 .{ .cp = 0x03F8, .status = .valid, .mapping = &.{}, .status2 = .none, },
535 .{ .cp = 0x03F9, .status = .mapped, .mapping = &.{0x03C3}, .status2 = .none, },
536 .{ .cp = 0x03FA, .status = .mapped, .mapping = &.{0x03FB}, .status2 = .none, },
537 .{ .cp = 0x03FB, .status = .valid, .mapping = &.{}, .status2 = .none, },
538 .{ .cp = 0x03FC, .status = .valid, .mapping = &.{}, .status2 = .none, },
539 .{ .cp = 0x03FD, .status = .mapped, .mapping = &.{0x037B}, .status2 = .none, },
540 .{ .cp = 0x03FE, .status = .mapped, .mapping = &.{0x037C}, .status2 = .none, },
541 .{ .cp = 0x03FF, .status = .mapped, .mapping = &.{0x037D}, .status2 = .none, },
542 .{ .cp = 0x0400, .status = .mapped, .mapping = &.{0x0450}, .status2 = .none, },
543 .{ .cp = 0x0401, .status = .mapped, .mapping = &.{0x0451}, .status2 = .none, },
544 .{ .cp = 0x0402, .status = .mapped, .mapping = &.{0x0452}, .status2 = .none, },
545 .{ .cp = 0x0403, .status = .mapped, .mapping = &.{0x0453}, .status2 = .none, },
546 .{ .cp = 0x0404, .status = .mapped, .mapping = &.{0x0454}, .status2 = .none, },
547 .{ .cp = 0x0405, .status = .mapped, .mapping = &.{0x0455}, .status2 = .none, },
548 .{ .cp = 0x0406, .status = .mapped, .mapping = &.{0x0456}, .status2 = .none, },
549 .{ .cp = 0x0407, .status = .mapped, .mapping = &.{0x0457}, .status2 = .none, },
550 .{ .cp = 0x0408, .status = .mapped, .mapping = &.{0x0458}, .status2 = .none, },
551 .{ .cp = 0x0409, .status = .mapped, .mapping = &.{0x0459}, .status2 = .none, },
552 .{ .cp = 0x040A, .status = .mapped, .mapping = &.{0x045A}, .status2 = .none, },
553 .{ .cp = 0x040B, .status = .mapped, .mapping = &.{0x045B}, .status2 = .none, },
554 .{ .cp = 0x040C, .status = .mapped, .mapping = &.{0x045C}, .status2 = .none, },
555 .{ .cp = 0x040D, .status = .mapped, .mapping = &.{0x045D}, .status2 = .none, },
556 .{ .cp = 0x040E, .status = .mapped, .mapping = &.{0x045E}, .status2 = .none, },
557 .{ .cp = 0x040F, .status = .mapped, .mapping = &.{0x045F}, .status2 = .none, },
558 .{ .cp = 0x0410, .status = .mapped, .mapping = &.{0x0430}, .status2 = .none, },
559 .{ .cp = 0x0411, .status = .mapped, .mapping = &.{0x0431}, .status2 = .none, },
560 .{ .cp = 0x0412, .status = .mapped, .mapping = &.{0x0432}, .status2 = .none, },
561 .{ .cp = 0x0413, .status = .mapped, .mapping = &.{0x0433}, .status2 = .none, },
562 .{ .cp = 0x0414, .status = .mapped, .mapping = &.{0x0434}, .status2 = .none, },
563 .{ .cp = 0x0415, .status = .mapped, .mapping = &.{0x0435}, .status2 = .none, },
564 .{ .cp = 0x0416, .status = .mapped, .mapping = &.{0x0436}, .status2 = .none, },
565 .{ .cp = 0x0417, .status = .mapped, .mapping = &.{0x0437}, .status2 = .none, },
566 .{ .cp = 0x0418, .status = .mapped, .mapping = &.{0x0438}, .status2 = .none, },
567 .{ .cp = 0x0419, .status = .mapped, .mapping = &.{0x0439}, .status2 = .none, },
568 .{ .cp = 0x041A, .status = .mapped, .mapping = &.{0x043A}, .status2 = .none, },
569 .{ .cp = 0x041B, .status = .mapped, .mapping = &.{0x043B}, .status2 = .none, },
570 .{ .cp = 0x041C, .status = .mapped, .mapping = &.{0x043C}, .status2 = .none, },
571 .{ .cp = 0x041D, .status = .mapped, .mapping = &.{0x043D}, .status2 = .none, },
572 .{ .cp = 0x041E, .status = .mapped, .mapping = &.{0x043E}, .status2 = .none, },
573 .{ .cp = 0x041F, .status = .mapped, .mapping = &.{0x043F}, .status2 = .none, },
574 .{ .cp = 0x0420, .status = .mapped, .mapping = &.{0x0440}, .status2 = .none, },
575 .{ .cp = 0x0421, .status = .mapped, .mapping = &.{0x0441}, .status2 = .none, },
576 .{ .cp = 0x0422, .status = .mapped, .mapping = &.{0x0442}, .status2 = .none, },
577 .{ .cp = 0x0423, .status = .mapped, .mapping = &.{0x0443}, .status2 = .none, },
578 .{ .cp = 0x0424, .status = .mapped, .mapping = &.{0x0444}, .status2 = .none, },
579 .{ .cp = 0x0425, .status = .mapped, .mapping = &.{0x0445}, .status2 = .none, },
580 .{ .cp = 0x0426, .status = .mapped, .mapping = &.{0x0446}, .status2 = .none, },
581 .{ .cp = 0x0427, .status = .mapped, .mapping = &.{0x0447}, .status2 = .none, },
582 .{ .cp = 0x0428, .status = .mapped, .mapping = &.{0x0448}, .status2 = .none, },
583 .{ .cp = 0x0429, .status = .mapped, .mapping = &.{0x0449}, .status2 = .none, },
584 .{ .cp = 0x042A, .status = .mapped, .mapping = &.{0x044A}, .status2 = .none, },
585 .{ .cp = 0x042B, .status = .mapped, .mapping = &.{0x044B}, .status2 = .none, },
586 .{ .cp = 0x042C, .status = .mapped, .mapping = &.{0x044C}, .status2 = .none, },
587 .{ .cp = 0x042D, .status = .mapped, .mapping = &.{0x044D}, .status2 = .none, },
588 .{ .cp = 0x042E, .status = .mapped, .mapping = &.{0x044E}, .status2 = .none, },
589 .{ .cp = 0x042F, .status = .mapped, .mapping = &.{0x044F}, .status2 = .none, },
590 .{ .cp = 0x0450, .status = .valid, .mapping = &.{}, .status2 = .none, },
591 .{ .cp = 0x045D, .status = .valid, .mapping = &.{}, .status2 = .none, },
592 .{ .cp = 0x0460, .status = .mapped, .mapping = &.{0x0461}, .status2 = .none, },
593 .{ .cp = 0x0461, .status = .valid, .mapping = &.{}, .status2 = .none, },
594 .{ .cp = 0x0462, .status = .mapped, .mapping = &.{0x0463}, .status2 = .none, },
595 .{ .cp = 0x0463, .status = .valid, .mapping = &.{}, .status2 = .none, },
596 .{ .cp = 0x0464, .status = .mapped, .mapping = &.{0x0465}, .status2 = .none, },
597 .{ .cp = 0x0465, .status = .valid, .mapping = &.{}, .status2 = .none, },
598 .{ .cp = 0x0466, .status = .mapped, .mapping = &.{0x0467}, .status2 = .none, },
599 .{ .cp = 0x0467, .status = .valid, .mapping = &.{}, .status2 = .none, },
600 .{ .cp = 0x0468, .status = .mapped, .mapping = &.{0x0469}, .status2 = .none, },
601 .{ .cp = 0x0469, .status = .valid, .mapping = &.{}, .status2 = .none, },
602 .{ .cp = 0x046A, .status = .mapped, .mapping = &.{0x046B}, .status2 = .none, },
603 .{ .cp = 0x046B, .status = .valid, .mapping = &.{}, .status2 = .none, },
604 .{ .cp = 0x046C, .status = .mapped, .mapping = &.{0x046D}, .status2 = .none, },
605 .{ .cp = 0x046D, .status = .valid, .mapping = &.{}, .status2 = .none, },
606 .{ .cp = 0x046E, .status = .mapped, .mapping = &.{0x046F}, .status2 = .none, },
607 .{ .cp = 0x046F, .status = .valid, .mapping = &.{}, .status2 = .none, },
608 .{ .cp = 0x0470, .status = .mapped, .mapping = &.{0x0471}, .status2 = .none, },
609 .{ .cp = 0x0471, .status = .valid, .mapping = &.{}, .status2 = .none, },
610 .{ .cp = 0x0472, .status = .mapped, .mapping = &.{0x0473}, .status2 = .none, },
611 .{ .cp = 0x0473, .status = .valid, .mapping = &.{}, .status2 = .none, },
612 .{ .cp = 0x0474, .status = .mapped, .mapping = &.{0x0475}, .status2 = .none, },
613 .{ .cp = 0x0475, .status = .valid, .mapping = &.{}, .status2 = .none, },
614 .{ .cp = 0x0476, .status = .mapped, .mapping = &.{0x0477}, .status2 = .none, },
615 .{ .cp = 0x0477, .status = .valid, .mapping = &.{}, .status2 = .none, },
616 .{ .cp = 0x0478, .status = .mapped, .mapping = &.{0x0479}, .status2 = .none, },
617 .{ .cp = 0x0479, .status = .valid, .mapping = &.{}, .status2 = .none, },
618 .{ .cp = 0x047A, .status = .mapped, .mapping = &.{0x047B}, .status2 = .none, },
619 .{ .cp = 0x047B, .status = .valid, .mapping = &.{}, .status2 = .none, },
620 .{ .cp = 0x047C, .status = .mapped, .mapping = &.{0x047D}, .status2 = .none, },
621 .{ .cp = 0x047D, .status = .valid, .mapping = &.{}, .status2 = .none, },
622 .{ .cp = 0x047E, .status = .mapped, .mapping = &.{0x047F}, .status2 = .none, },
623 .{ .cp = 0x047F, .status = .valid, .mapping = &.{}, .status2 = .none, },
624 .{ .cp = 0x0480, .status = .mapped, .mapping = &.{0x0481}, .status2 = .none, },
625 .{ .cp = 0x0481, .status = .valid, .mapping = &.{}, .status2 = .none, },
626 .{ .cp = 0x0482, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
627 .{ .cp = 0x0487, .status = .valid, .mapping = &.{}, .status2 = .none, },
628 .{ .cp = 0x048A, .status = .mapped, .mapping = &.{0x048B}, .status2 = .none, },
629 .{ .cp = 0x048B, .status = .valid, .mapping = &.{}, .status2 = .none, },
630 .{ .cp = 0x048C, .status = .mapped, .mapping = &.{0x048D}, .status2 = .none, },
631 .{ .cp = 0x048D, .status = .valid, .mapping = &.{}, .status2 = .none, },
632 .{ .cp = 0x048E, .status = .mapped, .mapping = &.{0x048F}, .status2 = .none, },
633 .{ .cp = 0x048F, .status = .valid, .mapping = &.{}, .status2 = .none, },
634 .{ .cp = 0x0490, .status = .mapped, .mapping = &.{0x0491}, .status2 = .none, },
635 .{ .cp = 0x0491, .status = .valid, .mapping = &.{}, .status2 = .none, },
636 .{ .cp = 0x0492, .status = .mapped, .mapping = &.{0x0493}, .status2 = .none, },
637 .{ .cp = 0x0493, .status = .valid, .mapping = &.{}, .status2 = .none, },
638 .{ .cp = 0x0494, .status = .mapped, .mapping = &.{0x0495}, .status2 = .none, },
639 .{ .cp = 0x0495, .status = .valid, .mapping = &.{}, .status2 = .none, },
640 .{ .cp = 0x0496, .status = .mapped, .mapping = &.{0x0497}, .status2 = .none, },
641 .{ .cp = 0x0497, .status = .valid, .mapping = &.{}, .status2 = .none, },
642 .{ .cp = 0x0498, .status = .mapped, .mapping = &.{0x0499}, .status2 = .none, },
643 .{ .cp = 0x0499, .status = .valid, .mapping = &.{}, .status2 = .none, },
644 .{ .cp = 0x049A, .status = .mapped, .mapping = &.{0x049B}, .status2 = .none, },
645 .{ .cp = 0x049B, .status = .valid, .mapping = &.{}, .status2 = .none, },
646 .{ .cp = 0x049C, .status = .mapped, .mapping = &.{0x049D}, .status2 = .none, },
647 .{ .cp = 0x049D, .status = .valid, .mapping = &.{}, .status2 = .none, },
648 .{ .cp = 0x049E, .status = .mapped, .mapping = &.{0x049F}, .status2 = .none, },
649 .{ .cp = 0x049F, .status = .valid, .mapping = &.{}, .status2 = .none, },
650 .{ .cp = 0x04A0, .status = .mapped, .mapping = &.{0x04A1}, .status2 = .none, },
651 .{ .cp = 0x04A1, .status = .valid, .mapping = &.{}, .status2 = .none, },
652 .{ .cp = 0x04A2, .status = .mapped, .mapping = &.{0x04A3}, .status2 = .none, },
653 .{ .cp = 0x04A3, .status = .valid, .mapping = &.{}, .status2 = .none, },
654 .{ .cp = 0x04A4, .status = .mapped, .mapping = &.{0x04A5}, .status2 = .none, },
655 .{ .cp = 0x04A5, .status = .valid, .mapping = &.{}, .status2 = .none, },
656 .{ .cp = 0x04A6, .status = .mapped, .mapping = &.{0x04A7}, .status2 = .none, },
657 .{ .cp = 0x04A7, .status = .valid, .mapping = &.{}, .status2 = .none, },
658 .{ .cp = 0x04A8, .status = .mapped, .mapping = &.{0x04A9}, .status2 = .none, },
659 .{ .cp = 0x04A9, .status = .valid, .mapping = &.{}, .status2 = .none, },
660 .{ .cp = 0x04AA, .status = .mapped, .mapping = &.{0x04AB}, .status2 = .none, },
661 .{ .cp = 0x04AB, .status = .valid, .mapping = &.{}, .status2 = .none, },
662 .{ .cp = 0x04AC, .status = .mapped, .mapping = &.{0x04AD}, .status2 = .none, },
663 .{ .cp = 0x04AD, .status = .valid, .mapping = &.{}, .status2 = .none, },
664 .{ .cp = 0x04AE, .status = .mapped, .mapping = &.{0x04AF}, .status2 = .none, },
665 .{ .cp = 0x04AF, .status = .valid, .mapping = &.{}, .status2 = .none, },
666 .{ .cp = 0x04B0, .status = .mapped, .mapping = &.{0x04B1}, .status2 = .none, },
667 .{ .cp = 0x04B1, .status = .valid, .mapping = &.{}, .status2 = .none, },
668 .{ .cp = 0x04B2, .status = .mapped, .mapping = &.{0x04B3}, .status2 = .none, },
669 .{ .cp = 0x04B3, .status = .valid, .mapping = &.{}, .status2 = .none, },
670 .{ .cp = 0x04B4, .status = .mapped, .mapping = &.{0x04B5}, .status2 = .none, },
671 .{ .cp = 0x04B5, .status = .valid, .mapping = &.{}, .status2 = .none, },
672 .{ .cp = 0x04B6, .status = .mapped, .mapping = &.{0x04B7}, .status2 = .none, },
673 .{ .cp = 0x04B7, .status = .valid, .mapping = &.{}, .status2 = .none, },
674 .{ .cp = 0x04B8, .status = .mapped, .mapping = &.{0x04B9}, .status2 = .none, },
675 .{ .cp = 0x04B9, .status = .valid, .mapping = &.{}, .status2 = .none, },
676 .{ .cp = 0x04BA, .status = .mapped, .mapping = &.{0x04BB}, .status2 = .none, },
677 .{ .cp = 0x04BB, .status = .valid, .mapping = &.{}, .status2 = .none, },
678 .{ .cp = 0x04BC, .status = .mapped, .mapping = &.{0x04BD}, .status2 = .none, },
679 .{ .cp = 0x04BD, .status = .valid, .mapping = &.{}, .status2 = .none, },
680 .{ .cp = 0x04BE, .status = .mapped, .mapping = &.{0x04BF}, .status2 = .none, },
681 .{ .cp = 0x04BF, .status = .valid, .mapping = &.{}, .status2 = .none, },
682 .{ .cp = 0x04C0, .status = .mapped, .mapping = &.{0x04CF}, .status2 = .none, },
683 .{ .cp = 0x04C1, .status = .mapped, .mapping = &.{0x04C2}, .status2 = .none, },
684 .{ .cp = 0x04C2, .status = .valid, .mapping = &.{}, .status2 = .none, },
685 .{ .cp = 0x04C3, .status = .mapped, .mapping = &.{0x04C4}, .status2 = .none, },
686 .{ .cp = 0x04C4, .status = .valid, .mapping = &.{}, .status2 = .none, },
687 .{ .cp = 0x04C5, .status = .mapped, .mapping = &.{0x04C6}, .status2 = .none, },
688 .{ .cp = 0x04C6, .status = .valid, .mapping = &.{}, .status2 = .none, },
689 .{ .cp = 0x04C7, .status = .mapped, .mapping = &.{0x04C8}, .status2 = .none, },
690 .{ .cp = 0x04C8, .status = .valid, .mapping = &.{}, .status2 = .none, },
691 .{ .cp = 0x04C9, .status = .mapped, .mapping = &.{0x04CA}, .status2 = .none, },
692 .{ .cp = 0x04CA, .status = .valid, .mapping = &.{}, .status2 = .none, },
693 .{ .cp = 0x04CB, .status = .mapped, .mapping = &.{0x04CC}, .status2 = .none, },
694 .{ .cp = 0x04CC, .status = .valid, .mapping = &.{}, .status2 = .none, },
695 .{ .cp = 0x04CD, .status = .mapped, .mapping = &.{0x04CE}, .status2 = .none, },
696 .{ .cp = 0x04CE, .status = .valid, .mapping = &.{}, .status2 = .none, },
697 .{ .cp = 0x04CF, .status = .valid, .mapping = &.{}, .status2 = .none, },
698 .{ .cp = 0x04D0, .status = .mapped, .mapping = &.{0x04D1}, .status2 = .none, },
699 .{ .cp = 0x04D1, .status = .valid, .mapping = &.{}, .status2 = .none, },
700 .{ .cp = 0x04D2, .status = .mapped, .mapping = &.{0x04D3}, .status2 = .none, },
701 .{ .cp = 0x04D3, .status = .valid, .mapping = &.{}, .status2 = .none, },
702 .{ .cp = 0x04D4, .status = .mapped, .mapping = &.{0x04D5}, .status2 = .none, },
703 .{ .cp = 0x04D5, .status = .valid, .mapping = &.{}, .status2 = .none, },
704 .{ .cp = 0x04D6, .status = .mapped, .mapping = &.{0x04D7}, .status2 = .none, },
705 .{ .cp = 0x04D7, .status = .valid, .mapping = &.{}, .status2 = .none, },
706 .{ .cp = 0x04D8, .status = .mapped, .mapping = &.{0x04D9}, .status2 = .none, },
707 .{ .cp = 0x04D9, .status = .valid, .mapping = &.{}, .status2 = .none, },
708 .{ .cp = 0x04DA, .status = .mapped, .mapping = &.{0x04DB}, .status2 = .none, },
709 .{ .cp = 0x04DB, .status = .valid, .mapping = &.{}, .status2 = .none, },
710 .{ .cp = 0x04DC, .status = .mapped, .mapping = &.{0x04DD}, .status2 = .none, },
711 .{ .cp = 0x04DD, .status = .valid, .mapping = &.{}, .status2 = .none, },
712 .{ .cp = 0x04DE, .status = .mapped, .mapping = &.{0x04DF}, .status2 = .none, },
713 .{ .cp = 0x04DF, .status = .valid, .mapping = &.{}, .status2 = .none, },
714 .{ .cp = 0x04E0, .status = .mapped, .mapping = &.{0x04E1}, .status2 = .none, },
715 .{ .cp = 0x04E1, .status = .valid, .mapping = &.{}, .status2 = .none, },
716 .{ .cp = 0x04E2, .status = .mapped, .mapping = &.{0x04E3}, .status2 = .none, },
717 .{ .cp = 0x04E3, .status = .valid, .mapping = &.{}, .status2 = .none, },
718 .{ .cp = 0x04E4, .status = .mapped, .mapping = &.{0x04E5}, .status2 = .none, },
719 .{ .cp = 0x04E5, .status = .valid, .mapping = &.{}, .status2 = .none, },
720 .{ .cp = 0x04E6, .status = .mapped, .mapping = &.{0x04E7}, .status2 = .none, },
721 .{ .cp = 0x04E7, .status = .valid, .mapping = &.{}, .status2 = .none, },
722 .{ .cp = 0x04E8, .status = .mapped, .mapping = &.{0x04E9}, .status2 = .none, },
723 .{ .cp = 0x04E9, .status = .valid, .mapping = &.{}, .status2 = .none, },
724 .{ .cp = 0x04EA, .status = .mapped, .mapping = &.{0x04EB}, .status2 = .none, },
725 .{ .cp = 0x04EB, .status = .valid, .mapping = &.{}, .status2 = .none, },
726 .{ .cp = 0x04EC, .status = .mapped, .mapping = &.{0x04ED}, .status2 = .none, },
727 .{ .cp = 0x04ED, .status = .valid, .mapping = &.{}, .status2 = .none, },
728 .{ .cp = 0x04EE, .status = .mapped, .mapping = &.{0x04EF}, .status2 = .none, },
729 .{ .cp = 0x04EF, .status = .valid, .mapping = &.{}, .status2 = .none, },
730 .{ .cp = 0x04F0, .status = .mapped, .mapping = &.{0x04F1}, .status2 = .none, },
731 .{ .cp = 0x04F1, .status = .valid, .mapping = &.{}, .status2 = .none, },
732 .{ .cp = 0x04F2, .status = .mapped, .mapping = &.{0x04F3}, .status2 = .none, },
733 .{ .cp = 0x04F3, .status = .valid, .mapping = &.{}, .status2 = .none, },
734 .{ .cp = 0x04F4, .status = .mapped, .mapping = &.{0x04F5}, .status2 = .none, },
735 .{ .cp = 0x04F5, .status = .valid, .mapping = &.{}, .status2 = .none, },
736 .{ .cp = 0x04F6, .status = .mapped, .mapping = &.{0x04F7}, .status2 = .none, },
737 .{ .cp = 0x04F7, .status = .valid, .mapping = &.{}, .status2 = .none, },
738 .{ .cp = 0x04F8, .status = .mapped, .mapping = &.{0x04F9}, .status2 = .none, },
739 .{ .cp = 0x04F9, .status = .valid, .mapping = &.{}, .status2 = .none, },
740 .{ .cp = 0x04FA, .status = .mapped, .mapping = &.{0x04FB}, .status2 = .none, },
741 .{ .cp = 0x04FB, .status = .valid, .mapping = &.{}, .status2 = .none, },
742 .{ .cp = 0x04FC, .status = .mapped, .mapping = &.{0x04FD}, .status2 = .none, },
743 .{ .cp = 0x04FD, .status = .valid, .mapping = &.{}, .status2 = .none, },
744 .{ .cp = 0x04FE, .status = .mapped, .mapping = &.{0x04FF}, .status2 = .none, },
745 .{ .cp = 0x04FF, .status = .valid, .mapping = &.{}, .status2 = .none, },
746 .{ .cp = 0x0500, .status = .mapped, .mapping = &.{0x0501}, .status2 = .none, },
747 .{ .cp = 0x0501, .status = .valid, .mapping = &.{}, .status2 = .none, },
748 .{ .cp = 0x0502, .status = .mapped, .mapping = &.{0x0503}, .status2 = .none, },
749 .{ .cp = 0x0503, .status = .valid, .mapping = &.{}, .status2 = .none, },
750 .{ .cp = 0x0504, .status = .mapped, .mapping = &.{0x0505}, .status2 = .none, },
751 .{ .cp = 0x0505, .status = .valid, .mapping = &.{}, .status2 = .none, },
752 .{ .cp = 0x0506, .status = .mapped, .mapping = &.{0x0507}, .status2 = .none, },
753 .{ .cp = 0x0507, .status = .valid, .mapping = &.{}, .status2 = .none, },
754 .{ .cp = 0x0508, .status = .mapped, .mapping = &.{0x0509}, .status2 = .none, },
755 .{ .cp = 0x0509, .status = .valid, .mapping = &.{}, .status2 = .none, },
756 .{ .cp = 0x050A, .status = .mapped, .mapping = &.{0x050B}, .status2 = .none, },
757 .{ .cp = 0x050B, .status = .valid, .mapping = &.{}, .status2 = .none, },
758 .{ .cp = 0x050C, .status = .mapped, .mapping = &.{0x050D}, .status2 = .none, },
759 .{ .cp = 0x050D, .status = .valid, .mapping = &.{}, .status2 = .none, },
760 .{ .cp = 0x050E, .status = .mapped, .mapping = &.{0x050F}, .status2 = .none, },
761 .{ .cp = 0x050F, .status = .valid, .mapping = &.{}, .status2 = .none, },
762 .{ .cp = 0x0510, .status = .mapped, .mapping = &.{0x0511}, .status2 = .none, },
763 .{ .cp = 0x0511, .status = .valid, .mapping = &.{}, .status2 = .none, },
764 .{ .cp = 0x0512, .status = .mapped, .mapping = &.{0x0513}, .status2 = .none, },
765 .{ .cp = 0x0513, .status = .valid, .mapping = &.{}, .status2 = .none, },
766 .{ .cp = 0x0514, .status = .mapped, .mapping = &.{0x0515}, .status2 = .none, },
767 .{ .cp = 0x0515, .status = .valid, .mapping = &.{}, .status2 = .none, },
768 .{ .cp = 0x0516, .status = .mapped, .mapping = &.{0x0517}, .status2 = .none, },
769 .{ .cp = 0x0517, .status = .valid, .mapping = &.{}, .status2 = .none, },
770 .{ .cp = 0x0518, .status = .mapped, .mapping = &.{0x0519}, .status2 = .none, },
771 .{ .cp = 0x0519, .status = .valid, .mapping = &.{}, .status2 = .none, },
772 .{ .cp = 0x051A, .status = .mapped, .mapping = &.{0x051B}, .status2 = .none, },
773 .{ .cp = 0x051B, .status = .valid, .mapping = &.{}, .status2 = .none, },
774 .{ .cp = 0x051C, .status = .mapped, .mapping = &.{0x051D}, .status2 = .none, },
775 .{ .cp = 0x051D, .status = .valid, .mapping = &.{}, .status2 = .none, },
776 .{ .cp = 0x051E, .status = .mapped, .mapping = &.{0x051F}, .status2 = .none, },
777 .{ .cp = 0x051F, .status = .valid, .mapping = &.{}, .status2 = .none, },
778 .{ .cp = 0x0520, .status = .mapped, .mapping = &.{0x0521}, .status2 = .none, },
779 .{ .cp = 0x0521, .status = .valid, .mapping = &.{}, .status2 = .none, },
780 .{ .cp = 0x0522, .status = .mapped, .mapping = &.{0x0523}, .status2 = .none, },
781 .{ .cp = 0x0523, .status = .valid, .mapping = &.{}, .status2 = .none, },
782 .{ .cp = 0x0524, .status = .mapped, .mapping = &.{0x0525}, .status2 = .none, },
783 .{ .cp = 0x0525, .status = .valid, .mapping = &.{}, .status2 = .none, },
784 .{ .cp = 0x0526, .status = .mapped, .mapping = &.{0x0527}, .status2 = .none, },
785 .{ .cp = 0x0527, .status = .valid, .mapping = &.{}, .status2 = .none, },
786 .{ .cp = 0x0528, .status = .mapped, .mapping = &.{0x0529}, .status2 = .none, },
787 .{ .cp = 0x0529, .status = .valid, .mapping = &.{}, .status2 = .none, },
788 .{ .cp = 0x052A, .status = .mapped, .mapping = &.{0x052B}, .status2 = .none, },
789 .{ .cp = 0x052B, .status = .valid, .mapping = &.{}, .status2 = .none, },
790 .{ .cp = 0x052C, .status = .mapped, .mapping = &.{0x052D}, .status2 = .none, },
791 .{ .cp = 0x052D, .status = .valid, .mapping = &.{}, .status2 = .none, },
792 .{ .cp = 0x052E, .status = .mapped, .mapping = &.{0x052F}, .status2 = .none, },
793 .{ .cp = 0x052F, .status = .valid, .mapping = &.{}, .status2 = .none, },
794 .{ .cp = 0x0530, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
795 .{ .cp = 0x0531, .status = .mapped, .mapping = &.{0x0561}, .status2 = .none, },
796 .{ .cp = 0x0532, .status = .mapped, .mapping = &.{0x0562}, .status2 = .none, },
797 .{ .cp = 0x0533, .status = .mapped, .mapping = &.{0x0563}, .status2 = .none, },
798 .{ .cp = 0x0534, .status = .mapped, .mapping = &.{0x0564}, .status2 = .none, },
799 .{ .cp = 0x0535, .status = .mapped, .mapping = &.{0x0565}, .status2 = .none, },
800 .{ .cp = 0x0536, .status = .mapped, .mapping = &.{0x0566}, .status2 = .none, },
801 .{ .cp = 0x0537, .status = .mapped, .mapping = &.{0x0567}, .status2 = .none, },
802 .{ .cp = 0x0538, .status = .mapped, .mapping = &.{0x0568}, .status2 = .none, },
803 .{ .cp = 0x0539, .status = .mapped, .mapping = &.{0x0569}, .status2 = .none, },
804 .{ .cp = 0x053A, .status = .mapped, .mapping = &.{0x056A}, .status2 = .none, },
805 .{ .cp = 0x053B, .status = .mapped, .mapping = &.{0x056B}, .status2 = .none, },
806 .{ .cp = 0x053C, .status = .mapped, .mapping = &.{0x056C}, .status2 = .none, },
807 .{ .cp = 0x053D, .status = .mapped, .mapping = &.{0x056D}, .status2 = .none, },
808 .{ .cp = 0x053E, .status = .mapped, .mapping = &.{0x056E}, .status2 = .none, },
809 .{ .cp = 0x053F, .status = .mapped, .mapping = &.{0x056F}, .status2 = .none, },
810 .{ .cp = 0x0540, .status = .mapped, .mapping = &.{0x0570}, .status2 = .none, },
811 .{ .cp = 0x0541, .status = .mapped, .mapping = &.{0x0571}, .status2 = .none, },
812 .{ .cp = 0x0542, .status = .mapped, .mapping = &.{0x0572}, .status2 = .none, },
813 .{ .cp = 0x0543, .status = .mapped, .mapping = &.{0x0573}, .status2 = .none, },
814 .{ .cp = 0x0544, .status = .mapped, .mapping = &.{0x0574}, .status2 = .none, },
815 .{ .cp = 0x0545, .status = .mapped, .mapping = &.{0x0575}, .status2 = .none, },
816 .{ .cp = 0x0546, .status = .mapped, .mapping = &.{0x0576}, .status2 = .none, },
817 .{ .cp = 0x0547, .status = .mapped, .mapping = &.{0x0577}, .status2 = .none, },
818 .{ .cp = 0x0548, .status = .mapped, .mapping = &.{0x0578}, .status2 = .none, },
819 .{ .cp = 0x0549, .status = .mapped, .mapping = &.{0x0579}, .status2 = .none, },
820 .{ .cp = 0x054A, .status = .mapped, .mapping = &.{0x057A}, .status2 = .none, },
821 .{ .cp = 0x054B, .status = .mapped, .mapping = &.{0x057B}, .status2 = .none, },
822 .{ .cp = 0x054C, .status = .mapped, .mapping = &.{0x057C}, .status2 = .none, },
823 .{ .cp = 0x054D, .status = .mapped, .mapping = &.{0x057D}, .status2 = .none, },
824 .{ .cp = 0x054E, .status = .mapped, .mapping = &.{0x057E}, .status2 = .none, },
825 .{ .cp = 0x054F, .status = .mapped, .mapping = &.{0x057F}, .status2 = .none, },
826 .{ .cp = 0x0550, .status = .mapped, .mapping = &.{0x0580}, .status2 = .none, },
827 .{ .cp = 0x0551, .status = .mapped, .mapping = &.{0x0581}, .status2 = .none, },
828 .{ .cp = 0x0552, .status = .mapped, .mapping = &.{0x0582}, .status2 = .none, },
829 .{ .cp = 0x0553, .status = .mapped, .mapping = &.{0x0583}, .status2 = .none, },
830 .{ .cp = 0x0554, .status = .mapped, .mapping = &.{0x0584}, .status2 = .none, },
831 .{ .cp = 0x0555, .status = .mapped, .mapping = &.{0x0585}, .status2 = .none, },
832 .{ .cp = 0x0556, .status = .mapped, .mapping = &.{0x0586}, .status2 = .none, },
833 .{ .cp = 0x0559, .status = .valid, .mapping = &.{}, .status2 = .none, },
834 .{ .cp = 0x0560, .status = .valid, .mapping = &.{}, .status2 = .none, },
835 .{ .cp = 0x0587, .status = .mapped, .mapping = &.{0x0565,0x0582}, .status2 = .none, },
836 .{ .cp = 0x0588, .status = .valid, .mapping = &.{}, .status2 = .none, },
837 .{ .cp = 0x0589, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
838 .{ .cp = 0x058A, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
839 .{ .cp = 0x058F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
840 .{ .cp = 0x0590, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
841 .{ .cp = 0x05A2, .status = .valid, .mapping = &.{}, .status2 = .none, },
842 .{ .cp = 0x05BA, .status = .valid, .mapping = &.{}, .status2 = .none, },
843 .{ .cp = 0x05BE, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
844 .{ .cp = 0x05BF, .status = .valid, .mapping = &.{}, .status2 = .none, },
845 .{ .cp = 0x05C0, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
846 .{ .cp = 0x05C3, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
847 .{ .cp = 0x05C4, .status = .valid, .mapping = &.{}, .status2 = .none, },
848 .{ .cp = 0x05C5, .status = .valid, .mapping = &.{}, .status2 = .none, },
849 .{ .cp = 0x05C6, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
850 .{ .cp = 0x05C7, .status = .valid, .mapping = &.{}, .status2 = .none, },
851 .{ .cp = 0x05EF, .status = .valid, .mapping = &.{}, .status2 = .none, },
852 .{ .cp = 0x0604, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
853 .{ .cp = 0x0605, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
854 .{ .cp = 0x060B, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
855 .{ .cp = 0x060C, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
856 .{ .cp = 0x061B, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
857 .{ .cp = 0x061C, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
858 .{ .cp = 0x061D, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
859 .{ .cp = 0x061E, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
860 .{ .cp = 0x061F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
861 .{ .cp = 0x0620, .status = .valid, .mapping = &.{}, .status2 = .none, },
862 .{ .cp = 0x0640, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
863 .{ .cp = 0x065F, .status = .valid, .mapping = &.{}, .status2 = .none, },
864 .{ .cp = 0x0675, .status = .mapped, .mapping = &.{0x0627,0x0674}, .status2 = .none, },
865 .{ .cp = 0x0676, .status = .mapped, .mapping = &.{0x0648,0x0674}, .status2 = .none, },
866 .{ .cp = 0x0677, .status = .mapped, .mapping = &.{0x06C7,0x0674}, .status2 = .none, },
867 .{ .cp = 0x0678, .status = .mapped, .mapping = &.{0x064A,0x0674}, .status2 = .none, },
868 .{ .cp = 0x06BF, .status = .valid, .mapping = &.{}, .status2 = .none, },
869 .{ .cp = 0x06CF, .status = .valid, .mapping = &.{}, .status2 = .none, },
870 .{ .cp = 0x06D4, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
871 .{ .cp = 0x06DD, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
872 .{ .cp = 0x06DE, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
873 .{ .cp = 0x06E9, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
874 .{ .cp = 0x06FF, .status = .valid, .mapping = &.{}, .status2 = .none, },
875 .{ .cp = 0x070E, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
876 .{ .cp = 0x070F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
877 .{ .cp = 0x07B1, .status = .valid, .mapping = &.{}, .status2 = .none, },
878 .{ .cp = 0x07FD, .status = .valid, .mapping = &.{}, .status2 = .none, },
879 .{ .cp = 0x083F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
880 .{ .cp = 0x085E, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
881 .{ .cp = 0x085F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
882 .{ .cp = 0x0888, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
883 .{ .cp = 0x088F, .status = .valid, .mapping = &.{}, .status2 = .none, },
884 .{ .cp = 0x0897, .status = .valid, .mapping = &.{}, .status2 = .none, },
885 .{ .cp = 0x08A0, .status = .valid, .mapping = &.{}, .status2 = .none, },
886 .{ .cp = 0x08A1, .status = .valid, .mapping = &.{}, .status2 = .none, },
887 .{ .cp = 0x08B5, .status = .valid, .mapping = &.{}, .status2 = .none, },
888 .{ .cp = 0x08D3, .status = .valid, .mapping = &.{}, .status2 = .none, },
889 .{ .cp = 0x08E2, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
890 .{ .cp = 0x08E3, .status = .valid, .mapping = &.{}, .status2 = .none, },
891 .{ .cp = 0x08FF, .status = .valid, .mapping = &.{}, .status2 = .none, },
892 .{ .cp = 0x0900, .status = .valid, .mapping = &.{}, .status2 = .none, },
893 .{ .cp = 0x0904, .status = .valid, .mapping = &.{}, .status2 = .none, },
894 .{ .cp = 0x094E, .status = .valid, .mapping = &.{}, .status2 = .none, },
895 .{ .cp = 0x094F, .status = .valid, .mapping = &.{}, .status2 = .none, },
896 .{ .cp = 0x0955, .status = .valid, .mapping = &.{}, .status2 = .none, },
897 .{ .cp = 0x0958, .status = .mapped, .mapping = &.{0x0915,0x093C}, .status2 = .none, },
898 .{ .cp = 0x0959, .status = .mapped, .mapping = &.{0x0916,0x093C}, .status2 = .none, },
899 .{ .cp = 0x095A, .status = .mapped, .mapping = &.{0x0917,0x093C}, .status2 = .none, },
900 .{ .cp = 0x095B, .status = .mapped, .mapping = &.{0x091C,0x093C}, .status2 = .none, },
901 .{ .cp = 0x095C, .status = .mapped, .mapping = &.{0x0921,0x093C}, .status2 = .none, },
902 .{ .cp = 0x095D, .status = .mapped, .mapping = &.{0x0922,0x093C}, .status2 = .none, },
903 .{ .cp = 0x095E, .status = .mapped, .mapping = &.{0x092B,0x093C}, .status2 = .none, },
904 .{ .cp = 0x095F, .status = .mapped, .mapping = &.{0x092F,0x093C}, .status2 = .none, },
905 .{ .cp = 0x0970, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
906 .{ .cp = 0x0978, .status = .valid, .mapping = &.{}, .status2 = .none, },
907 .{ .cp = 0x097D, .status = .valid, .mapping = &.{}, .status2 = .none, },
908 .{ .cp = 0x0980, .status = .valid, .mapping = &.{}, .status2 = .none, },
909 .{ .cp = 0x0984, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
910 .{ .cp = 0x09A9, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
911 .{ .cp = 0x09B1, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
912 .{ .cp = 0x09B2, .status = .valid, .mapping = &.{}, .status2 = .none, },
913 .{ .cp = 0x09BC, .status = .valid, .mapping = &.{}, .status2 = .none, },
914 .{ .cp = 0x09BD, .status = .valid, .mapping = &.{}, .status2 = .none, },
915 .{ .cp = 0x09CE, .status = .valid, .mapping = &.{}, .status2 = .none, },
916 .{ .cp = 0x09D7, .status = .valid, .mapping = &.{}, .status2 = .none, },
917 .{ .cp = 0x09DC, .status = .mapped, .mapping = &.{0x09A1,0x09BC}, .status2 = .none, },
918 .{ .cp = 0x09DD, .status = .mapped, .mapping = &.{0x09A2,0x09BC}, .status2 = .none, },
919 .{ .cp = 0x09DE, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
920 .{ .cp = 0x09DF, .status = .mapped, .mapping = &.{0x09AF,0x09BC}, .status2 = .none, },
921 .{ .cp = 0x09FB, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
922 .{ .cp = 0x09FC, .status = .valid, .mapping = &.{}, .status2 = .none, },
923 .{ .cp = 0x09FD, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
924 .{ .cp = 0x09FE, .status = .valid, .mapping = &.{}, .status2 = .none, },
925 .{ .cp = 0x0A01, .status = .valid, .mapping = &.{}, .status2 = .none, },
926 .{ .cp = 0x0A02, .status = .valid, .mapping = &.{}, .status2 = .none, },
927 .{ .cp = 0x0A03, .status = .valid, .mapping = &.{}, .status2 = .none, },
928 .{ .cp = 0x0A04, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
929 .{ .cp = 0x0A29, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
930 .{ .cp = 0x0A31, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
931 .{ .cp = 0x0A32, .status = .valid, .mapping = &.{}, .status2 = .none, },
932 .{ .cp = 0x0A33, .status = .mapped, .mapping = &.{0x0A32,0x0A3C}, .status2 = .none, },
933 .{ .cp = 0x0A34, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
934 .{ .cp = 0x0A35, .status = .valid, .mapping = &.{}, .status2 = .none, },
935 .{ .cp = 0x0A36, .status = .mapped, .mapping = &.{0x0A38,0x0A3C}, .status2 = .none, },
936 .{ .cp = 0x0A37, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
937 .{ .cp = 0x0A3C, .status = .valid, .mapping = &.{}, .status2 = .none, },
938 .{ .cp = 0x0A3D, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
939 .{ .cp = 0x0A51, .status = .valid, .mapping = &.{}, .status2 = .none, },
940 .{ .cp = 0x0A59, .status = .mapped, .mapping = &.{0x0A16,0x0A3C}, .status2 = .none, },
941 .{ .cp = 0x0A5A, .status = .mapped, .mapping = &.{0x0A17,0x0A3C}, .status2 = .none, },
942 .{ .cp = 0x0A5B, .status = .mapped, .mapping = &.{0x0A1C,0x0A3C}, .status2 = .none, },
943 .{ .cp = 0x0A5C, .status = .valid, .mapping = &.{}, .status2 = .none, },
944 .{ .cp = 0x0A5D, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
945 .{ .cp = 0x0A5E, .status = .mapped, .mapping = &.{0x0A2B,0x0A3C}, .status2 = .none, },
946 .{ .cp = 0x0A75, .status = .valid, .mapping = &.{}, .status2 = .none, },
947 .{ .cp = 0x0A76, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
948 .{ .cp = 0x0A84, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
949 .{ .cp = 0x0A8C, .status = .valid, .mapping = &.{}, .status2 = .none, },
950 .{ .cp = 0x0A8D, .status = .valid, .mapping = &.{}, .status2 = .none, },
951 .{ .cp = 0x0A8E, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
952 .{ .cp = 0x0A92, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
953 .{ .cp = 0x0AA9, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
954 .{ .cp = 0x0AB1, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
955 .{ .cp = 0x0AB4, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
956 .{ .cp = 0x0AC6, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
957 .{ .cp = 0x0ACA, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
958 .{ .cp = 0x0AD0, .status = .valid, .mapping = &.{}, .status2 = .none, },
959 .{ .cp = 0x0AE0, .status = .valid, .mapping = &.{}, .status2 = .none, },
960 .{ .cp = 0x0AF0, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
961 .{ .cp = 0x0AF1, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
962 .{ .cp = 0x0AF9, .status = .valid, .mapping = &.{}, .status2 = .none, },
963 .{ .cp = 0x0B00, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
964 .{ .cp = 0x0B04, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
965 .{ .cp = 0x0B29, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
966 .{ .cp = 0x0B31, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
967 .{ .cp = 0x0B34, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
968 .{ .cp = 0x0B35, .status = .valid, .mapping = &.{}, .status2 = .none, },
969 .{ .cp = 0x0B44, .status = .valid, .mapping = &.{}, .status2 = .none, },
970 .{ .cp = 0x0B55, .status = .valid, .mapping = &.{}, .status2 = .none, },
971 .{ .cp = 0x0B5C, .status = .mapped, .mapping = &.{0x0B21,0x0B3C}, .status2 = .none, },
972 .{ .cp = 0x0B5D, .status = .mapped, .mapping = &.{0x0B22,0x0B3C}, .status2 = .none, },
973 .{ .cp = 0x0B5E, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
974 .{ .cp = 0x0B70, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
975 .{ .cp = 0x0B71, .status = .valid, .mapping = &.{}, .status2 = .none, },
976 .{ .cp = 0x0B84, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
977 .{ .cp = 0x0B91, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
978 .{ .cp = 0x0B9B, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
979 .{ .cp = 0x0B9C, .status = .valid, .mapping = &.{}, .status2 = .none, },
980 .{ .cp = 0x0B9D, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
981 .{ .cp = 0x0BB6, .status = .valid, .mapping = &.{}, .status2 = .none, },
982 .{ .cp = 0x0BC9, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
983 .{ .cp = 0x0BD0, .status = .valid, .mapping = &.{}, .status2 = .none, },
984 .{ .cp = 0x0BD7, .status = .valid, .mapping = &.{}, .status2 = .none, },
985 .{ .cp = 0x0BE6, .status = .valid, .mapping = &.{}, .status2 = .none, },
986 .{ .cp = 0x0C00, .status = .valid, .mapping = &.{}, .status2 = .none, },
987 .{ .cp = 0x0C04, .status = .valid, .mapping = &.{}, .status2 = .none, },
988 .{ .cp = 0x0C0D, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
989 .{ .cp = 0x0C11, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
990 .{ .cp = 0x0C29, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
991 .{ .cp = 0x0C34, .status = .valid, .mapping = &.{}, .status2 = .none, },
992 .{ .cp = 0x0C3C, .status = .valid, .mapping = &.{}, .status2 = .none, },
993 .{ .cp = 0x0C3D, .status = .valid, .mapping = &.{}, .status2 = .none, },
994 .{ .cp = 0x0C45, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
995 .{ .cp = 0x0C49, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
996 .{ .cp = 0x0C57, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
997 .{ .cp = 0x0C5A, .status = .valid, .mapping = &.{}, .status2 = .none, },
998 .{ .cp = 0x0C5B, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
999 .{ .cp = 0x0C5C, .status = .valid, .mapping = &.{}, .status2 = .none, },
1000 .{ .cp = 0x0C5D, .status = .valid, .mapping = &.{}, .status2 = .none, },
1001 .{ .cp = 0x0C77, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
1002 .{ .cp = 0x0C80, .status = .valid, .mapping = &.{}, .status2 = .none, },
1003 .{ .cp = 0x0C81, .status = .valid, .mapping = &.{}, .status2 = .none, },
1004 .{ .cp = 0x0C84, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
1005 .{ .cp = 0x0C8D, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
1006 .{ .cp = 0x0C91, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
1007 .{ .cp = 0x0CA9, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
1008 .{ .cp = 0x0CB4, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
1009 .{ .cp = 0x0CC5, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
1010 .{ .cp = 0x0CC9, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
1011 .{ .cp = 0x0CDC, .status = .valid, .mapping = &.{}, .status2 = .none, },
1012 .{ .cp = 0x0CDD, .status = .valid, .mapping = &.{}, .status2 = .none, },
1013 .{ .cp = 0x0CDE, .status = .valid, .mapping = &.{}, .status2 = .none, },
1014 .{ .cp = 0x0CDF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
1015 .{ .cp = 0x0CF0, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
1016 .{ .cp = 0x0CF3, .status = .valid, .mapping = &.{}, .status2 = .none, },
1017 .{ .cp = 0x0D00, .status = .valid, .mapping = &.{}, .status2 = .none, },
1018 .{ .cp = 0x0D01, .status = .valid, .mapping = &.{}, .status2 = .none, },
1019 .{ .cp = 0x0D04, .status = .valid, .mapping = &.{}, .status2 = .none, },
1020 .{ .cp = 0x0D0D, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
1021 .{ .cp = 0x0D11, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
1022 .{ .cp = 0x0D29, .status = .valid, .mapping = &.{}, .status2 = .none, },
1023 .{ .cp = 0x0D3A, .status = .valid, .mapping = &.{}, .status2 = .none, },
1024 .{ .cp = 0x0D3D, .status = .valid, .mapping = &.{}, .status2 = .none, },
1025 .{ .cp = 0x0D44, .status = .valid, .mapping = &.{}, .status2 = .none, },
1026 .{ .cp = 0x0D45, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
1027 .{ .cp = 0x0D49, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
1028 .{ .cp = 0x0D4E, .status = .valid, .mapping = &.{}, .status2 = .none, },
1029 .{ .cp = 0x0D4F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
1030 .{ .cp = 0x0D57, .status = .valid, .mapping = &.{}, .status2 = .none, },
1031 .{ .cp = 0x0D5F, .status = .valid, .mapping = &.{}, .status2 = .none, },
1032 .{ .cp = 0x0D79, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
1033 .{ .cp = 0x0D80, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
1034 .{ .cp = 0x0D81, .status = .valid, .mapping = &.{}, .status2 = .none, },
1035 .{ .cp = 0x0D84, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
1036 .{ .cp = 0x0DB2, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
1037 .{ .cp = 0x0DBC, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
1038 .{ .cp = 0x0DBD, .status = .valid, .mapping = &.{}, .status2 = .none, },
1039 .{ .cp = 0x0DCA, .status = .valid, .mapping = &.{}, .status2 = .none, },
1040 .{ .cp = 0x0DD5, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
1041 .{ .cp = 0x0DD6, .status = .valid, .mapping = &.{}, .status2 = .none, },
1042 .{ .cp = 0x0DD7, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
1043 .{ .cp = 0x0DF4, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
1044 .{ .cp = 0x0E33, .status = .mapped, .mapping = &.{0x0E4D,0x0E32}, .status2 = .none, },
1045 .{ .cp = 0x0E3F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
1046 .{ .cp = 0x0E4F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
1047 .{ .cp = 0x0E83, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
1048 .{ .cp = 0x0E84, .status = .valid, .mapping = &.{}, .status2 = .none, },
1049 .{ .cp = 0x0E85, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
1050 .{ .cp = 0x0E86, .status = .valid, .mapping = &.{}, .status2 = .none, },
1051 .{ .cp = 0x0E89, .status = .valid, .mapping = &.{}, .status2 = .none, },
1052 .{ .cp = 0x0E8A, .status = .valid, .mapping = &.{}, .status2 = .none, },
1053 .{ .cp = 0x0E8B, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
1054 .{ .cp = 0x0E8C, .status = .valid, .mapping = &.{}, .status2 = .none, },
1055 .{ .cp = 0x0E8D, .status = .valid, .mapping = &.{}, .status2 = .none, },
1056 .{ .cp = 0x0E98, .status = .valid, .mapping = &.{}, .status2 = .none, },
1057 .{ .cp = 0x0EA0, .status = .valid, .mapping = &.{}, .status2 = .none, },
1058 .{ .cp = 0x0EA4, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
1059 .{ .cp = 0x0EA5, .status = .valid, .mapping = &.{}, .status2 = .none, },
1060 .{ .cp = 0x0EA6, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
1061 .{ .cp = 0x0EA7, .status = .valid, .mapping = &.{}, .status2 = .none, },
1062 .{ .cp = 0x0EAC, .status = .valid, .mapping = &.{}, .status2 = .none, },
1063 .{ .cp = 0x0EB3, .status = .mapped, .mapping = &.{0x0ECD,0x0EB2}, .status2 = .none, },
1064 .{ .cp = 0x0EBA, .status = .valid, .mapping = &.{}, .status2 = .none, },
1065 .{ .cp = 0x0EC5, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
1066 .{ .cp = 0x0EC6, .status = .valid, .mapping = &.{}, .status2 = .none, },
1067 .{ .cp = 0x0EC7, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
1068 .{ .cp = 0x0ECE, .status = .valid, .mapping = &.{}, .status2 = .none, },
1069 .{ .cp = 0x0ECF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
1070 .{ .cp = 0x0EDC, .status = .mapped, .mapping = &.{0x0EAB,0x0E99}, .status2 = .none, },
1071 .{ .cp = 0x0EDD, .status = .mapped, .mapping = &.{0x0EAB,0x0EA1}, .status2 = .none, },
1072 .{ .cp = 0x0F00, .status = .valid, .mapping = &.{}, .status2 = .none, },
1073 .{ .cp = 0x0F0B, .status = .valid, .mapping = &.{}, .status2 = .none, },
1074 .{ .cp = 0x0F0C, .status = .mapped, .mapping = &.{0x0F0B}, .status2 = .none, },
1075 .{ .cp = 0x0F35, .status = .valid, .mapping = &.{}, .status2 = .none, },
1076 .{ .cp = 0x0F36, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
1077 .{ .cp = 0x0F37, .status = .valid, .mapping = &.{}, .status2 = .none, },
1078 .{ .cp = 0x0F38, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
1079 .{ .cp = 0x0F39, .status = .valid, .mapping = &.{}, .status2 = .none, },
1080 .{ .cp = 0x0F43, .status = .mapped, .mapping = &.{0x0F42,0x0FB7}, .status2 = .none, },
1081 .{ .cp = 0x0F48, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
1082 .{ .cp = 0x0F4D, .status = .mapped, .mapping = &.{0x0F4C,0x0FB7}, .status2 = .none, },
1083 .{ .cp = 0x0F52, .status = .mapped, .mapping = &.{0x0F51,0x0FB7}, .status2 = .none, },
1084 .{ .cp = 0x0F57, .status = .mapped, .mapping = &.{0x0F56,0x0FB7}, .status2 = .none, },
1085 .{ .cp = 0x0F5C, .status = .mapped, .mapping = &.{0x0F5B,0x0FB7}, .status2 = .none, },
1086 .{ .cp = 0x0F69, .status = .mapped, .mapping = &.{0x0F40,0x0FB5}, .status2 = .none, },
1087 .{ .cp = 0x0F6A, .status = .valid, .mapping = &.{}, .status2 = .none, },
1088 .{ .cp = 0x0F73, .status = .mapped, .mapping = &.{0x0F71,0x0F72}, .status2 = .none, },
1089 .{ .cp = 0x0F74, .status = .valid, .mapping = &.{}, .status2 = .none, },
1090 .{ .cp = 0x0F75, .status = .mapped, .mapping = &.{0x0F71,0x0F74}, .status2 = .none, },
1091 .{ .cp = 0x0F76, .status = .mapped, .mapping = &.{0x0FB2,0x0F80}, .status2 = .none, },
1092 .{ .cp = 0x0F77, .status = .mapped, .mapping = &.{0x0FB2,0x0F71,0x0F80}, .status2 = .none, },
1093 .{ .cp = 0x0F78, .status = .mapped, .mapping = &.{0x0FB3,0x0F80}, .status2 = .none, },
1094 .{ .cp = 0x0F79, .status = .mapped, .mapping = &.{0x0FB3,0x0F71,0x0F80}, .status2 = .none, },
1095 .{ .cp = 0x0F81, .status = .mapped, .mapping = &.{0x0F71,0x0F80}, .status2 = .none, },
1096 .{ .cp = 0x0F85, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
1097 .{ .cp = 0x0F93, .status = .mapped, .mapping = &.{0x0F92,0x0FB7}, .status2 = .none, },
1098 .{ .cp = 0x0F96, .status = .valid, .mapping = &.{}, .status2 = .none, },
1099 .{ .cp = 0x0F97, .status = .valid, .mapping = &.{}, .status2 = .none, },
1100 .{ .cp = 0x0F98, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
1101 .{ .cp = 0x0F9D, .status = .mapped, .mapping = &.{0x0F9C,0x0FB7}, .status2 = .none, },
1102 .{ .cp = 0x0FA2, .status = .mapped, .mapping = &.{0x0FA1,0x0FB7}, .status2 = .none, },
1103 .{ .cp = 0x0FA7, .status = .mapped, .mapping = &.{0x0FA6,0x0FB7}, .status2 = .none, },
1104 .{ .cp = 0x0FAC, .status = .mapped, .mapping = &.{0x0FAB,0x0FB7}, .status2 = .none, },
1105 .{ .cp = 0x0FAD, .status = .valid, .mapping = &.{}, .status2 = .none, },
1106 .{ .cp = 0x0FB8, .status = .valid, .mapping = &.{}, .status2 = .none, },
1107 .{ .cp = 0x0FB9, .status = .mapped, .mapping = &.{0x0F90,0x0FB5}, .status2 = .none, },
1108 .{ .cp = 0x0FBD, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
1109 .{ .cp = 0x0FC6, .status = .valid, .mapping = &.{}, .status2 = .none, },
1110 .{ .cp = 0x0FCD, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
1111 .{ .cp = 0x0FCE, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
1112 .{ .cp = 0x0FCF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
1113 .{ .cp = 0x1022, .status = .valid, .mapping = &.{}, .status2 = .none, },
1114 .{ .cp = 0x1028, .status = .valid, .mapping = &.{}, .status2 = .none, },
1115 .{ .cp = 0x102B, .status = .valid, .mapping = &.{}, .status2 = .none, },
1116 .{ .cp = 0x10A0, .status = .mapped, .mapping = &.{0x2D00}, .status2 = .none, },
1117 .{ .cp = 0x10A1, .status = .mapped, .mapping = &.{0x2D01}, .status2 = .none, },
1118 .{ .cp = 0x10A2, .status = .mapped, .mapping = &.{0x2D02}, .status2 = .none, },
1119 .{ .cp = 0x10A3, .status = .mapped, .mapping = &.{0x2D03}, .status2 = .none, },
1120 .{ .cp = 0x10A4, .status = .mapped, .mapping = &.{0x2D04}, .status2 = .none, },
1121 .{ .cp = 0x10A5, .status = .mapped, .mapping = &.{0x2D05}, .status2 = .none, },
1122 .{ .cp = 0x10A6, .status = .mapped, .mapping = &.{0x2D06}, .status2 = .none, },
1123 .{ .cp = 0x10A7, .status = .mapped, .mapping = &.{0x2D07}, .status2 = .none, },
1124 .{ .cp = 0x10A8, .status = .mapped, .mapping = &.{0x2D08}, .status2 = .none, },
1125 .{ .cp = 0x10A9, .status = .mapped, .mapping = &.{0x2D09}, .status2 = .none, },
1126 .{ .cp = 0x10AA, .status = .mapped, .mapping = &.{0x2D0A}, .status2 = .none, },
1127 .{ .cp = 0x10AB, .status = .mapped, .mapping = &.{0x2D0B}, .status2 = .none, },
1128 .{ .cp = 0x10AC, .status = .mapped, .mapping = &.{0x2D0C}, .status2 = .none, },
1129 .{ .cp = 0x10AD, .status = .mapped, .mapping = &.{0x2D0D}, .status2 = .none, },
1130 .{ .cp = 0x10AE, .status = .mapped, .mapping = &.{0x2D0E}, .status2 = .none, },
1131 .{ .cp = 0x10AF, .status = .mapped, .mapping = &.{0x2D0F}, .status2 = .none, },
1132 .{ .cp = 0x10B0, .status = .mapped, .mapping = &.{0x2D10}, .status2 = .none, },
1133 .{ .cp = 0x10B1, .status = .mapped, .mapping = &.{0x2D11}, .status2 = .none, },
1134 .{ .cp = 0x10B2, .status = .mapped, .mapping = &.{0x2D12}, .status2 = .none, },
1135 .{ .cp = 0x10B3, .status = .mapped, .mapping = &.{0x2D13}, .status2 = .none, },
1136 .{ .cp = 0x10B4, .status = .mapped, .mapping = &.{0x2D14}, .status2 = .none, },
1137 .{ .cp = 0x10B5, .status = .mapped, .mapping = &.{0x2D15}, .status2 = .none, },
1138 .{ .cp = 0x10B6, .status = .mapped, .mapping = &.{0x2D16}, .status2 = .none, },
1139 .{ .cp = 0x10B7, .status = .mapped, .mapping = &.{0x2D17}, .status2 = .none, },
1140 .{ .cp = 0x10B8, .status = .mapped, .mapping = &.{0x2D18}, .status2 = .none, },
1141 .{ .cp = 0x10B9, .status = .mapped, .mapping = &.{0x2D19}, .status2 = .none, },
1142 .{ .cp = 0x10BA, .status = .mapped, .mapping = &.{0x2D1A}, .status2 = .none, },
1143 .{ .cp = 0x10BB, .status = .mapped, .mapping = &.{0x2D1B}, .status2 = .none, },
1144 .{ .cp = 0x10BC, .status = .mapped, .mapping = &.{0x2D1C}, .status2 = .none, },
1145 .{ .cp = 0x10BD, .status = .mapped, .mapping = &.{0x2D1D}, .status2 = .none, },
1146 .{ .cp = 0x10BE, .status = .mapped, .mapping = &.{0x2D1E}, .status2 = .none, },
1147 .{ .cp = 0x10BF, .status = .mapped, .mapping = &.{0x2D1F}, .status2 = .none, },
1148 .{ .cp = 0x10C0, .status = .mapped, .mapping = &.{0x2D20}, .status2 = .none, },
1149 .{ .cp = 0x10C1, .status = .mapped, .mapping = &.{0x2D21}, .status2 = .none, },
1150 .{ .cp = 0x10C2, .status = .mapped, .mapping = &.{0x2D22}, .status2 = .none, },
1151 .{ .cp = 0x10C3, .status = .mapped, .mapping = &.{0x2D23}, .status2 = .none, },
1152 .{ .cp = 0x10C4, .status = .mapped, .mapping = &.{0x2D24}, .status2 = .none, },
1153 .{ .cp = 0x10C5, .status = .mapped, .mapping = &.{0x2D25}, .status2 = .none, },
1154 .{ .cp = 0x10C6, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
1155 .{ .cp = 0x10C7, .status = .mapped, .mapping = &.{0x2D27}, .status2 = .none, },
1156 .{ .cp = 0x10CD, .status = .mapped, .mapping = &.{0x2D2D}, .status2 = .none, },
1157 .{ .cp = 0x10FB, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
1158 .{ .cp = 0x10FC, .status = .mapped, .mapping = &.{0x10DC}, .status2 = .none, },
1159 .{ .cp = 0x1207, .status = .valid, .mapping = &.{}, .status2 = .none, },
1160 .{ .cp = 0x1247, .status = .valid, .mapping = &.{}, .status2 = .none, },
1161 .{ .cp = 0x1248, .status = .valid, .mapping = &.{}, .status2 = .none, },
1162 .{ .cp = 0x1249, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
1163 .{ .cp = 0x1257, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
1164 .{ .cp = 0x1258, .status = .valid, .mapping = &.{}, .status2 = .none, },
1165 .{ .cp = 0x1259, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
1166 .{ .cp = 0x1287, .status = .valid, .mapping = &.{}, .status2 = .none, },
1167 .{ .cp = 0x1288, .status = .valid, .mapping = &.{}, .status2 = .none, },
1168 .{ .cp = 0x1289, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
1169 .{ .cp = 0x12AF, .status = .valid, .mapping = &.{}, .status2 = .none, },
1170 .{ .cp = 0x12B0, .status = .valid, .mapping = &.{}, .status2 = .none, },
1171 .{ .cp = 0x12B1, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
1172 .{ .cp = 0x12BF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
1173 .{ .cp = 0x12C0, .status = .valid, .mapping = &.{}, .status2 = .none, },
1174 .{ .cp = 0x12C1, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
1175 .{ .cp = 0x12CF, .status = .valid, .mapping = &.{}, .status2 = .none, },
1176 .{ .cp = 0x12D7, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
1177 .{ .cp = 0x12EF, .status = .valid, .mapping = &.{}, .status2 = .none, },
1178 .{ .cp = 0x130F, .status = .valid, .mapping = &.{}, .status2 = .none, },
1179 .{ .cp = 0x1310, .status = .valid, .mapping = &.{}, .status2 = .none, },
1180 .{ .cp = 0x1311, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
1181 .{ .cp = 0x131F, .status = .valid, .mapping = &.{}, .status2 = .none, },
1182 .{ .cp = 0x1347, .status = .valid, .mapping = &.{}, .status2 = .none, },
1183 .{ .cp = 0x135F, .status = .valid, .mapping = &.{}, .status2 = .none, },
1184 .{ .cp = 0x1360, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
1185 .{ .cp = 0x13F5, .status = .valid, .mapping = &.{}, .status2 = .none, },
1186 .{ .cp = 0x13F8, .status = .mapped, .mapping = &.{0x13F0}, .status2 = .none, },
1187 .{ .cp = 0x13F9, .status = .mapped, .mapping = &.{0x13F1}, .status2 = .none, },
1188 .{ .cp = 0x13FA, .status = .mapped, .mapping = &.{0x13F2}, .status2 = .none, },
1189 .{ .cp = 0x13FB, .status = .mapped, .mapping = &.{0x13F3}, .status2 = .none, },
1190 .{ .cp = 0x13FC, .status = .mapped, .mapping = &.{0x13F4}, .status2 = .none, },
1191 .{ .cp = 0x13FD, .status = .mapped, .mapping = &.{0x13F5}, .status2 = .none, },
1192 .{ .cp = 0x1400, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
1193 .{ .cp = 0x1680, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
1194 .{ .cp = 0x170D, .status = .valid, .mapping = &.{}, .status2 = .none, },
1195 .{ .cp = 0x1715, .status = .valid, .mapping = &.{}, .status2 = .none, },
1196 .{ .cp = 0x171F, .status = .valid, .mapping = &.{}, .status2 = .none, },
1197 .{ .cp = 0x176D, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
1198 .{ .cp = 0x1771, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
1199 .{ .cp = 0x17D7, .status = .valid, .mapping = &.{}, .status2 = .none, },
1200 .{ .cp = 0x17DC, .status = .valid, .mapping = &.{}, .status2 = .none, },
1201 .{ .cp = 0x17DD, .status = .valid, .mapping = &.{}, .status2 = .none, },
1202 .{ .cp = 0x180F, .status = .ignored, .mapping = &.{}, .status2 = .none, },
1203 .{ .cp = 0x1878, .status = .valid, .mapping = &.{}, .status2 = .none, },
1204 .{ .cp = 0x18AA, .status = .valid, .mapping = &.{}, .status2 = .none, },
1205 .{ .cp = 0x191F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
1206 .{ .cp = 0x1940, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
1207 .{ .cp = 0x19DA, .status = .valid, .mapping = &.{}, .status2 = .XV8, },
1208 .{ .cp = 0x1A5F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
1209 .{ .cp = 0x1AA7, .status = .valid, .mapping = &.{}, .status2 = .none, },
1210 .{ .cp = 0x1ABE, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
1211 .{ .cp = 0x1B4C, .status = .valid, .mapping = &.{}, .status2 = .none, },
1212 .{ .cp = 0x1B4D, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
1213 .{ .cp = 0x1B7F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
1214 .{ .cp = 0x1C80, .status = .mapped, .mapping = &.{0x0432}, .status2 = .none, },
1215 .{ .cp = 0x1C81, .status = .mapped, .mapping = &.{0x0434}, .status2 = .none, },
1216 .{ .cp = 0x1C82, .status = .mapped, .mapping = &.{0x043E}, .status2 = .none, },
1217 .{ .cp = 0x1C83, .status = .mapped, .mapping = &.{0x0441}, .status2 = .none, },
1218 .{ .cp = 0x1C86, .status = .mapped, .mapping = &.{0x044A}, .status2 = .none, },
1219 .{ .cp = 0x1C87, .status = .mapped, .mapping = &.{0x0463}, .status2 = .none, },
1220 .{ .cp = 0x1C88, .status = .mapped, .mapping = &.{0xA64B}, .status2 = .none, },
1221 .{ .cp = 0x1C89, .status = .mapped, .mapping = &.{0x1C8A}, .status2 = .none, },
1222 .{ .cp = 0x1C8A, .status = .valid, .mapping = &.{}, .status2 = .none, },
1223 .{ .cp = 0x1C90, .status = .mapped, .mapping = &.{0x10D0}, .status2 = .none, },
1224 .{ .cp = 0x1C91, .status = .mapped, .mapping = &.{0x10D1}, .status2 = .none, },
1225 .{ .cp = 0x1C92, .status = .mapped, .mapping = &.{0x10D2}, .status2 = .none, },
1226 .{ .cp = 0x1C93, .status = .mapped, .mapping = &.{0x10D3}, .status2 = .none, },
1227 .{ .cp = 0x1C94, .status = .mapped, .mapping = &.{0x10D4}, .status2 = .none, },
1228 .{ .cp = 0x1C95, .status = .mapped, .mapping = &.{0x10D5}, .status2 = .none, },
1229 .{ .cp = 0x1C96, .status = .mapped, .mapping = &.{0x10D6}, .status2 = .none, },
1230 .{ .cp = 0x1C97, .status = .mapped, .mapping = &.{0x10D7}, .status2 = .none, },
1231 .{ .cp = 0x1C98, .status = .mapped, .mapping = &.{0x10D8}, .status2 = .none, },
1232 .{ .cp = 0x1C99, .status = .mapped, .mapping = &.{0x10D9}, .status2 = .none, },
1233 .{ .cp = 0x1C9A, .status = .mapped, .mapping = &.{0x10DA}, .status2 = .none, },
1234 .{ .cp = 0x1C9B, .status = .mapped, .mapping = &.{0x10DB}, .status2 = .none, },
1235 .{ .cp = 0x1C9C, .status = .mapped, .mapping = &.{0x10DC}, .status2 = .none, },
1236 .{ .cp = 0x1C9D, .status = .mapped, .mapping = &.{0x10DD}, .status2 = .none, },
1237 .{ .cp = 0x1C9E, .status = .mapped, .mapping = &.{0x10DE}, .status2 = .none, },
1238 .{ .cp = 0x1C9F, .status = .mapped, .mapping = &.{0x10DF}, .status2 = .none, },
1239 .{ .cp = 0x1CA0, .status = .mapped, .mapping = &.{0x10E0}, .status2 = .none, },
1240 .{ .cp = 0x1CA1, .status = .mapped, .mapping = &.{0x10E1}, .status2 = .none, },
1241 .{ .cp = 0x1CA2, .status = .mapped, .mapping = &.{0x10E2}, .status2 = .none, },
1242 .{ .cp = 0x1CA3, .status = .mapped, .mapping = &.{0x10E3}, .status2 = .none, },
1243 .{ .cp = 0x1CA4, .status = .mapped, .mapping = &.{0x10E4}, .status2 = .none, },
1244 .{ .cp = 0x1CA5, .status = .mapped, .mapping = &.{0x10E5}, .status2 = .none, },
1245 .{ .cp = 0x1CA6, .status = .mapped, .mapping = &.{0x10E6}, .status2 = .none, },
1246 .{ .cp = 0x1CA7, .status = .mapped, .mapping = &.{0x10E7}, .status2 = .none, },
1247 .{ .cp = 0x1CA8, .status = .mapped, .mapping = &.{0x10E8}, .status2 = .none, },
1248 .{ .cp = 0x1CA9, .status = .mapped, .mapping = &.{0x10E9}, .status2 = .none, },
1249 .{ .cp = 0x1CAA, .status = .mapped, .mapping = &.{0x10EA}, .status2 = .none, },
1250 .{ .cp = 0x1CAB, .status = .mapped, .mapping = &.{0x10EB}, .status2 = .none, },
1251 .{ .cp = 0x1CAC, .status = .mapped, .mapping = &.{0x10EC}, .status2 = .none, },
1252 .{ .cp = 0x1CAD, .status = .mapped, .mapping = &.{0x10ED}, .status2 = .none, },
1253 .{ .cp = 0x1CAE, .status = .mapped, .mapping = &.{0x10EE}, .status2 = .none, },
1254 .{ .cp = 0x1CAF, .status = .mapped, .mapping = &.{0x10EF}, .status2 = .none, },
1255 .{ .cp = 0x1CB0, .status = .mapped, .mapping = &.{0x10F0}, .status2 = .none, },
1256 .{ .cp = 0x1CB1, .status = .mapped, .mapping = &.{0x10F1}, .status2 = .none, },
1257 .{ .cp = 0x1CB2, .status = .mapped, .mapping = &.{0x10F2}, .status2 = .none, },
1258 .{ .cp = 0x1CB3, .status = .mapped, .mapping = &.{0x10F3}, .status2 = .none, },
1259 .{ .cp = 0x1CB4, .status = .mapped, .mapping = &.{0x10F4}, .status2 = .none, },
1260 .{ .cp = 0x1CB5, .status = .mapped, .mapping = &.{0x10F5}, .status2 = .none, },
1261 .{ .cp = 0x1CB6, .status = .mapped, .mapping = &.{0x10F6}, .status2 = .none, },
1262 .{ .cp = 0x1CB7, .status = .mapped, .mapping = &.{0x10F7}, .status2 = .none, },
1263 .{ .cp = 0x1CB8, .status = .mapped, .mapping = &.{0x10F8}, .status2 = .none, },
1264 .{ .cp = 0x1CB9, .status = .mapped, .mapping = &.{0x10F9}, .status2 = .none, },
1265 .{ .cp = 0x1CBA, .status = .mapped, .mapping = &.{0x10FA}, .status2 = .none, },
1266 .{ .cp = 0x1CBD, .status = .mapped, .mapping = &.{0x10FD}, .status2 = .none, },
1267 .{ .cp = 0x1CBE, .status = .mapped, .mapping = &.{0x10FE}, .status2 = .none, },
1268 .{ .cp = 0x1CBF, .status = .mapped, .mapping = &.{0x10FF}, .status2 = .none, },
1269 .{ .cp = 0x1CD3, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
1270 .{ .cp = 0x1CF7, .status = .valid, .mapping = &.{}, .status2 = .none, },
1271 .{ .cp = 0x1CFA, .status = .valid, .mapping = &.{}, .status2 = .none, },
1272 .{ .cp = 0x1D2C, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, },
1273 .{ .cp = 0x1D2D, .status = .mapped, .mapping = &.{0x00E6}, .status2 = .none, },
1274 .{ .cp = 0x1D2E, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, },
1275 .{ .cp = 0x1D2F, .status = .valid, .mapping = &.{}, .status2 = .none, },
1276 .{ .cp = 0x1D30, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, },
1277 .{ .cp = 0x1D31, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, },
1278 .{ .cp = 0x1D32, .status = .mapped, .mapping = &.{0x01DD}, .status2 = .none, },
1279 .{ .cp = 0x1D33, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, },
1280 .{ .cp = 0x1D34, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, },
1281 .{ .cp = 0x1D35, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, },
1282 .{ .cp = 0x1D36, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, },
1283 .{ .cp = 0x1D37, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, },
1284 .{ .cp = 0x1D38, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, },
1285 .{ .cp = 0x1D39, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, },
1286 .{ .cp = 0x1D3A, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, },
1287 .{ .cp = 0x1D3B, .status = .valid, .mapping = &.{}, .status2 = .none, },
1288 .{ .cp = 0x1D3C, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, },
1289 .{ .cp = 0x1D3D, .status = .mapped, .mapping = &.{0x0223}, .status2 = .none, },
1290 .{ .cp = 0x1D3E, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, },
1291 .{ .cp = 0x1D3F, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, },
1292 .{ .cp = 0x1D40, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, },
1293 .{ .cp = 0x1D41, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, },
1294 .{ .cp = 0x1D42, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, },
1295 .{ .cp = 0x1D43, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, },
1296 .{ .cp = 0x1D44, .status = .mapped, .mapping = &.{0x0250}, .status2 = .none, },
1297 .{ .cp = 0x1D45, .status = .mapped, .mapping = &.{0x0251}, .status2 = .none, },
1298 .{ .cp = 0x1D46, .status = .mapped, .mapping = &.{0x1D02}, .status2 = .none, },
1299 .{ .cp = 0x1D47, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, },
1300 .{ .cp = 0x1D48, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, },
1301 .{ .cp = 0x1D49, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, },
1302 .{ .cp = 0x1D4A, .status = .mapped, .mapping = &.{0x0259}, .status2 = .none, },
1303 .{ .cp = 0x1D4B, .status = .mapped, .mapping = &.{0x025B}, .status2 = .none, },
1304 .{ .cp = 0x1D4C, .status = .mapped, .mapping = &.{0x025C}, .status2 = .none, },
1305 .{ .cp = 0x1D4D, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, },
1306 .{ .cp = 0x1D4E, .status = .valid, .mapping = &.{}, .status2 = .none, },
1307 .{ .cp = 0x1D4F, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, },
1308 .{ .cp = 0x1D50, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, },
1309 .{ .cp = 0x1D51, .status = .mapped, .mapping = &.{0x014B}, .status2 = .none, },
1310 .{ .cp = 0x1D52, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, },
1311 .{ .cp = 0x1D53, .status = .mapped, .mapping = &.{0x0254}, .status2 = .none, },
1312 .{ .cp = 0x1D54, .status = .mapped, .mapping = &.{0x1D16}, .status2 = .none, },
1313 .{ .cp = 0x1D55, .status = .mapped, .mapping = &.{0x1D17}, .status2 = .none, },
1314 .{ .cp = 0x1D56, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, },
1315 .{ .cp = 0x1D57, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, },
1316 .{ .cp = 0x1D58, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, },
1317 .{ .cp = 0x1D59, .status = .mapped, .mapping = &.{0x1D1D}, .status2 = .none, },
1318 .{ .cp = 0x1D5A, .status = .mapped, .mapping = &.{0x026F}, .status2 = .none, },
1319 .{ .cp = 0x1D5B, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, },
1320 .{ .cp = 0x1D5C, .status = .mapped, .mapping = &.{0x1D25}, .status2 = .none, },
1321 .{ .cp = 0x1D5D, .status = .mapped, .mapping = &.{0x03B2}, .status2 = .none, },
1322 .{ .cp = 0x1D5E, .status = .mapped, .mapping = &.{0x03B3}, .status2 = .none, },
1323 .{ .cp = 0x1D5F, .status = .mapped, .mapping = &.{0x03B4}, .status2 = .none, },
1324 .{ .cp = 0x1D60, .status = .mapped, .mapping = &.{0x03C6}, .status2 = .none, },
1325 .{ .cp = 0x1D61, .status = .mapped, .mapping = &.{0x03C7}, .status2 = .none, },
1326 .{ .cp = 0x1D62, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, },
1327 .{ .cp = 0x1D63, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, },
1328 .{ .cp = 0x1D64, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, },
1329 .{ .cp = 0x1D65, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, },
1330 .{ .cp = 0x1D66, .status = .mapped, .mapping = &.{0x03B2}, .status2 = .none, },
1331 .{ .cp = 0x1D67, .status = .mapped, .mapping = &.{0x03B3}, .status2 = .none, },
1332 .{ .cp = 0x1D68, .status = .mapped, .mapping = &.{0x03C1}, .status2 = .none, },
1333 .{ .cp = 0x1D69, .status = .mapped, .mapping = &.{0x03C6}, .status2 = .none, },
1334 .{ .cp = 0x1D6A, .status = .mapped, .mapping = &.{0x03C7}, .status2 = .none, },
1335 .{ .cp = 0x1D6B, .status = .valid, .mapping = &.{}, .status2 = .none, },
1336 .{ .cp = 0x1D78, .status = .mapped, .mapping = &.{0x043D}, .status2 = .none, },
1337 .{ .cp = 0x1D9B, .status = .mapped, .mapping = &.{0x0252}, .status2 = .none, },
1338 .{ .cp = 0x1D9C, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, },
1339 .{ .cp = 0x1D9D, .status = .mapped, .mapping = &.{0x0255}, .status2 = .none, },
1340 .{ .cp = 0x1D9E, .status = .mapped, .mapping = &.{0x00F0}, .status2 = .none, },
1341 .{ .cp = 0x1D9F, .status = .mapped, .mapping = &.{0x025C}, .status2 = .none, },
1342 .{ .cp = 0x1DA0, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, },
1343 .{ .cp = 0x1DA1, .status = .mapped, .mapping = &.{0x025F}, .status2 = .none, },
1344 .{ .cp = 0x1DA2, .status = .mapped, .mapping = &.{0x0261}, .status2 = .none, },
1345 .{ .cp = 0x1DA3, .status = .mapped, .mapping = &.{0x0265}, .status2 = .none, },
1346 .{ .cp = 0x1DA4, .status = .mapped, .mapping = &.{0x0268}, .status2 = .none, },
1347 .{ .cp = 0x1DA5, .status = .mapped, .mapping = &.{0x0269}, .status2 = .none, },
1348 .{ .cp = 0x1DA6, .status = .mapped, .mapping = &.{0x026A}, .status2 = .none, },
1349 .{ .cp = 0x1DA7, .status = .mapped, .mapping = &.{0x1D7B}, .status2 = .none, },
1350 .{ .cp = 0x1DA8, .status = .mapped, .mapping = &.{0x029D}, .status2 = .none, },
1351 .{ .cp = 0x1DA9, .status = .mapped, .mapping = &.{0x026D}, .status2 = .none, },
1352 .{ .cp = 0x1DAA, .status = .mapped, .mapping = &.{0x1D85}, .status2 = .none, },
1353 .{ .cp = 0x1DAB, .status = .mapped, .mapping = &.{0x029F}, .status2 = .none, },
1354 .{ .cp = 0x1DAC, .status = .mapped, .mapping = &.{0x0271}, .status2 = .none, },
1355 .{ .cp = 0x1DAD, .status = .mapped, .mapping = &.{0x0270}, .status2 = .none, },
1356 .{ .cp = 0x1DAE, .status = .mapped, .mapping = &.{0x0272}, .status2 = .none, },
1357 .{ .cp = 0x1DAF, .status = .mapped, .mapping = &.{0x0273}, .status2 = .none, },
1358 .{ .cp = 0x1DB0, .status = .mapped, .mapping = &.{0x0274}, .status2 = .none, },
1359 .{ .cp = 0x1DB1, .status = .mapped, .mapping = &.{0x0275}, .status2 = .none, },
1360 .{ .cp = 0x1DB2, .status = .mapped, .mapping = &.{0x0278}, .status2 = .none, },
1361 .{ .cp = 0x1DB3, .status = .mapped, .mapping = &.{0x0282}, .status2 = .none, },
1362 .{ .cp = 0x1DB4, .status = .mapped, .mapping = &.{0x0283}, .status2 = .none, },
1363 .{ .cp = 0x1DB5, .status = .mapped, .mapping = &.{0x01AB}, .status2 = .none, },
1364 .{ .cp = 0x1DB6, .status = .mapped, .mapping = &.{0x0289}, .status2 = .none, },
1365 .{ .cp = 0x1DB7, .status = .mapped, .mapping = &.{0x028A}, .status2 = .none, },
1366 .{ .cp = 0x1DB8, .status = .mapped, .mapping = &.{0x1D1C}, .status2 = .none, },
1367 .{ .cp = 0x1DB9, .status = .mapped, .mapping = &.{0x028B}, .status2 = .none, },
1368 .{ .cp = 0x1DBA, .status = .mapped, .mapping = &.{0x028C}, .status2 = .none, },
1369 .{ .cp = 0x1DBB, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, },
1370 .{ .cp = 0x1DBC, .status = .mapped, .mapping = &.{0x0290}, .status2 = .none, },
1371 .{ .cp = 0x1DBD, .status = .mapped, .mapping = &.{0x0291}, .status2 = .none, },
1372 .{ .cp = 0x1DBE, .status = .mapped, .mapping = &.{0x0292}, .status2 = .none, },
1373 .{ .cp = 0x1DBF, .status = .mapped, .mapping = &.{0x03B8}, .status2 = .none, },
1374 .{ .cp = 0x1DFA, .status = .valid, .mapping = &.{}, .status2 = .none, },
1375 .{ .cp = 0x1DFB, .status = .valid, .mapping = &.{}, .status2 = .none, },
1376 .{ .cp = 0x1DFC, .status = .valid, .mapping = &.{}, .status2 = .none, },
1377 .{ .cp = 0x1DFD, .status = .valid, .mapping = &.{}, .status2 = .none, },
1378 .{ .cp = 0x1E00, .status = .mapped, .mapping = &.{0x1E01}, .status2 = .none, },
1379 .{ .cp = 0x1E01, .status = .valid, .mapping = &.{}, .status2 = .none, },
1380 .{ .cp = 0x1E02, .status = .mapped, .mapping = &.{0x1E03}, .status2 = .none, },
1381 .{ .cp = 0x1E03, .status = .valid, .mapping = &.{}, .status2 = .none, },
1382 .{ .cp = 0x1E04, .status = .mapped, .mapping = &.{0x1E05}, .status2 = .none, },
1383 .{ .cp = 0x1E05, .status = .valid, .mapping = &.{}, .status2 = .none, },
1384 .{ .cp = 0x1E06, .status = .mapped, .mapping = &.{0x1E07}, .status2 = .none, },
1385 .{ .cp = 0x1E07, .status = .valid, .mapping = &.{}, .status2 = .none, },
1386 .{ .cp = 0x1E08, .status = .mapped, .mapping = &.{0x1E09}, .status2 = .none, },
1387 .{ .cp = 0x1E09, .status = .valid, .mapping = &.{}, .status2 = .none, },
1388 .{ .cp = 0x1E0A, .status = .mapped, .mapping = &.{0x1E0B}, .status2 = .none, },
1389 .{ .cp = 0x1E0B, .status = .valid, .mapping = &.{}, .status2 = .none, },
1390 .{ .cp = 0x1E0C, .status = .mapped, .mapping = &.{0x1E0D}, .status2 = .none, },
1391 .{ .cp = 0x1E0D, .status = .valid, .mapping = &.{}, .status2 = .none, },
1392 .{ .cp = 0x1E0E, .status = .mapped, .mapping = &.{0x1E0F}, .status2 = .none, },
1393 .{ .cp = 0x1E0F, .status = .valid, .mapping = &.{}, .status2 = .none, },
1394 .{ .cp = 0x1E10, .status = .mapped, .mapping = &.{0x1E11}, .status2 = .none, },
1395 .{ .cp = 0x1E11, .status = .valid, .mapping = &.{}, .status2 = .none, },
1396 .{ .cp = 0x1E12, .status = .mapped, .mapping = &.{0x1E13}, .status2 = .none, },
1397 .{ .cp = 0x1E13, .status = .valid, .mapping = &.{}, .status2 = .none, },
1398 .{ .cp = 0x1E14, .status = .mapped, .mapping = &.{0x1E15}, .status2 = .none, },
1399 .{ .cp = 0x1E15, .status = .valid, .mapping = &.{}, .status2 = .none, },
1400 .{ .cp = 0x1E16, .status = .mapped, .mapping = &.{0x1E17}, .status2 = .none, },
1401 .{ .cp = 0x1E17, .status = .valid, .mapping = &.{}, .status2 = .none, },
1402 .{ .cp = 0x1E18, .status = .mapped, .mapping = &.{0x1E19}, .status2 = .none, },
1403 .{ .cp = 0x1E19, .status = .valid, .mapping = &.{}, .status2 = .none, },
1404 .{ .cp = 0x1E1A, .status = .mapped, .mapping = &.{0x1E1B}, .status2 = .none, },
1405 .{ .cp = 0x1E1B, .status = .valid, .mapping = &.{}, .status2 = .none, },
1406 .{ .cp = 0x1E1C, .status = .mapped, .mapping = &.{0x1E1D}, .status2 = .none, },
1407 .{ .cp = 0x1E1D, .status = .valid, .mapping = &.{}, .status2 = .none, },
1408 .{ .cp = 0x1E1E, .status = .mapped, .mapping = &.{0x1E1F}, .status2 = .none, },
1409 .{ .cp = 0x1E1F, .status = .valid, .mapping = &.{}, .status2 = .none, },
1410 .{ .cp = 0x1E20, .status = .mapped, .mapping = &.{0x1E21}, .status2 = .none, },
1411 .{ .cp = 0x1E21, .status = .valid, .mapping = &.{}, .status2 = .none, },
1412 .{ .cp = 0x1E22, .status = .mapped, .mapping = &.{0x1E23}, .status2 = .none, },
1413 .{ .cp = 0x1E23, .status = .valid, .mapping = &.{}, .status2 = .none, },
1414 .{ .cp = 0x1E24, .status = .mapped, .mapping = &.{0x1E25}, .status2 = .none, },
1415 .{ .cp = 0x1E25, .status = .valid, .mapping = &.{}, .status2 = .none, },
1416 .{ .cp = 0x1E26, .status = .mapped, .mapping = &.{0x1E27}, .status2 = .none, },
1417 .{ .cp = 0x1E27, .status = .valid, .mapping = &.{}, .status2 = .none, },
1418 .{ .cp = 0x1E28, .status = .mapped, .mapping = &.{0x1E29}, .status2 = .none, },
1419 .{ .cp = 0x1E29, .status = .valid, .mapping = &.{}, .status2 = .none, },
1420 .{ .cp = 0x1E2A, .status = .mapped, .mapping = &.{0x1E2B}, .status2 = .none, },
1421 .{ .cp = 0x1E2B, .status = .valid, .mapping = &.{}, .status2 = .none, },
1422 .{ .cp = 0x1E2C, .status = .mapped, .mapping = &.{0x1E2D}, .status2 = .none, },
1423 .{ .cp = 0x1E2D, .status = .valid, .mapping = &.{}, .status2 = .none, },
1424 .{ .cp = 0x1E2E, .status = .mapped, .mapping = &.{0x1E2F}, .status2 = .none, },
1425 .{ .cp = 0x1E2F, .status = .valid, .mapping = &.{}, .status2 = .none, },
1426 .{ .cp = 0x1E30, .status = .mapped, .mapping = &.{0x1E31}, .status2 = .none, },
1427 .{ .cp = 0x1E31, .status = .valid, .mapping = &.{}, .status2 = .none, },
1428 .{ .cp = 0x1E32, .status = .mapped, .mapping = &.{0x1E33}, .status2 = .none, },
1429 .{ .cp = 0x1E33, .status = .valid, .mapping = &.{}, .status2 = .none, },
1430 .{ .cp = 0x1E34, .status = .mapped, .mapping = &.{0x1E35}, .status2 = .none, },
1431 .{ .cp = 0x1E35, .status = .valid, .mapping = &.{}, .status2 = .none, },
1432 .{ .cp = 0x1E36, .status = .mapped, .mapping = &.{0x1E37}, .status2 = .none, },
1433 .{ .cp = 0x1E37, .status = .valid, .mapping = &.{}, .status2 = .none, },
1434 .{ .cp = 0x1E38, .status = .mapped, .mapping = &.{0x1E39}, .status2 = .none, },
1435 .{ .cp = 0x1E39, .status = .valid, .mapping = &.{}, .status2 = .none, },
1436 .{ .cp = 0x1E3A, .status = .mapped, .mapping = &.{0x1E3B}, .status2 = .none, },
1437 .{ .cp = 0x1E3B, .status = .valid, .mapping = &.{}, .status2 = .none, },
1438 .{ .cp = 0x1E3C, .status = .mapped, .mapping = &.{0x1E3D}, .status2 = .none, },
1439 .{ .cp = 0x1E3D, .status = .valid, .mapping = &.{}, .status2 = .none, },
1440 .{ .cp = 0x1E3E, .status = .mapped, .mapping = &.{0x1E3F}, .status2 = .none, },
1441 .{ .cp = 0x1E3F, .status = .valid, .mapping = &.{}, .status2 = .none, },
1442 .{ .cp = 0x1E40, .status = .mapped, .mapping = &.{0x1E41}, .status2 = .none, },
1443 .{ .cp = 0x1E41, .status = .valid, .mapping = &.{}, .status2 = .none, },
1444 .{ .cp = 0x1E42, .status = .mapped, .mapping = &.{0x1E43}, .status2 = .none, },
1445 .{ .cp = 0x1E43, .status = .valid, .mapping = &.{}, .status2 = .none, },
1446 .{ .cp = 0x1E44, .status = .mapped, .mapping = &.{0x1E45}, .status2 = .none, },
1447 .{ .cp = 0x1E45, .status = .valid, .mapping = &.{}, .status2 = .none, },
1448 .{ .cp = 0x1E46, .status = .mapped, .mapping = &.{0x1E47}, .status2 = .none, },
1449 .{ .cp = 0x1E47, .status = .valid, .mapping = &.{}, .status2 = .none, },
1450 .{ .cp = 0x1E48, .status = .mapped, .mapping = &.{0x1E49}, .status2 = .none, },
1451 .{ .cp = 0x1E49, .status = .valid, .mapping = &.{}, .status2 = .none, },
1452 .{ .cp = 0x1E4A, .status = .mapped, .mapping = &.{0x1E4B}, .status2 = .none, },
1453 .{ .cp = 0x1E4B, .status = .valid, .mapping = &.{}, .status2 = .none, },
1454 .{ .cp = 0x1E4C, .status = .mapped, .mapping = &.{0x1E4D}, .status2 = .none, },
1455 .{ .cp = 0x1E4D, .status = .valid, .mapping = &.{}, .status2 = .none, },
1456 .{ .cp = 0x1E4E, .status = .mapped, .mapping = &.{0x1E4F}, .status2 = .none, },
1457 .{ .cp = 0x1E4F, .status = .valid, .mapping = &.{}, .status2 = .none, },
1458 .{ .cp = 0x1E50, .status = .mapped, .mapping = &.{0x1E51}, .status2 = .none, },
1459 .{ .cp = 0x1E51, .status = .valid, .mapping = &.{}, .status2 = .none, },
1460 .{ .cp = 0x1E52, .status = .mapped, .mapping = &.{0x1E53}, .status2 = .none, },
1461 .{ .cp = 0x1E53, .status = .valid, .mapping = &.{}, .status2 = .none, },
1462 .{ .cp = 0x1E54, .status = .mapped, .mapping = &.{0x1E55}, .status2 = .none, },
1463 .{ .cp = 0x1E55, .status = .valid, .mapping = &.{}, .status2 = .none, },
1464 .{ .cp = 0x1E56, .status = .mapped, .mapping = &.{0x1E57}, .status2 = .none, },
1465 .{ .cp = 0x1E57, .status = .valid, .mapping = &.{}, .status2 = .none, },
1466 .{ .cp = 0x1E58, .status = .mapped, .mapping = &.{0x1E59}, .status2 = .none, },
1467 .{ .cp = 0x1E59, .status = .valid, .mapping = &.{}, .status2 = .none, },
1468 .{ .cp = 0x1E5A, .status = .mapped, .mapping = &.{0x1E5B}, .status2 = .none, },
1469 .{ .cp = 0x1E5B, .status = .valid, .mapping = &.{}, .status2 = .none, },
1470 .{ .cp = 0x1E5C, .status = .mapped, .mapping = &.{0x1E5D}, .status2 = .none, },
1471 .{ .cp = 0x1E5D, .status = .valid, .mapping = &.{}, .status2 = .none, },
1472 .{ .cp = 0x1E5E, .status = .mapped, .mapping = &.{0x1E5F}, .status2 = .none, },
1473 .{ .cp = 0x1E5F, .status = .valid, .mapping = &.{}, .status2 = .none, },
1474 .{ .cp = 0x1E60, .status = .mapped, .mapping = &.{0x1E61}, .status2 = .none, },
1475 .{ .cp = 0x1E61, .status = .valid, .mapping = &.{}, .status2 = .none, },
1476 .{ .cp = 0x1E62, .status = .mapped, .mapping = &.{0x1E63}, .status2 = .none, },
1477 .{ .cp = 0x1E63, .status = .valid, .mapping = &.{}, .status2 = .none, },
1478 .{ .cp = 0x1E64, .status = .mapped, .mapping = &.{0x1E65}, .status2 = .none, },
1479 .{ .cp = 0x1E65, .status = .valid, .mapping = &.{}, .status2 = .none, },
1480 .{ .cp = 0x1E66, .status = .mapped, .mapping = &.{0x1E67}, .status2 = .none, },
1481 .{ .cp = 0x1E67, .status = .valid, .mapping = &.{}, .status2 = .none, },
1482 .{ .cp = 0x1E68, .status = .mapped, .mapping = &.{0x1E69}, .status2 = .none, },
1483 .{ .cp = 0x1E69, .status = .valid, .mapping = &.{}, .status2 = .none, },
1484 .{ .cp = 0x1E6A, .status = .mapped, .mapping = &.{0x1E6B}, .status2 = .none, },
1485 .{ .cp = 0x1E6B, .status = .valid, .mapping = &.{}, .status2 = .none, },
1486 .{ .cp = 0x1E6C, .status = .mapped, .mapping = &.{0x1E6D}, .status2 = .none, },
1487 .{ .cp = 0x1E6D, .status = .valid, .mapping = &.{}, .status2 = .none, },
1488 .{ .cp = 0x1E6E, .status = .mapped, .mapping = &.{0x1E6F}, .status2 = .none, },
1489 .{ .cp = 0x1E6F, .status = .valid, .mapping = &.{}, .status2 = .none, },
1490 .{ .cp = 0x1E70, .status = .mapped, .mapping = &.{0x1E71}, .status2 = .none, },
1491 .{ .cp = 0x1E71, .status = .valid, .mapping = &.{}, .status2 = .none, },
1492 .{ .cp = 0x1E72, .status = .mapped, .mapping = &.{0x1E73}, .status2 = .none, },
1493 .{ .cp = 0x1E73, .status = .valid, .mapping = &.{}, .status2 = .none, },
1494 .{ .cp = 0x1E74, .status = .mapped, .mapping = &.{0x1E75}, .status2 = .none, },
1495 .{ .cp = 0x1E75, .status = .valid, .mapping = &.{}, .status2 = .none, },
1496 .{ .cp = 0x1E76, .status = .mapped, .mapping = &.{0x1E77}, .status2 = .none, },
1497 .{ .cp = 0x1E77, .status = .valid, .mapping = &.{}, .status2 = .none, },
1498 .{ .cp = 0x1E78, .status = .mapped, .mapping = &.{0x1E79}, .status2 = .none, },
1499 .{ .cp = 0x1E79, .status = .valid, .mapping = &.{}, .status2 = .none, },
1500 .{ .cp = 0x1E7A, .status = .mapped, .mapping = &.{0x1E7B}, .status2 = .none, },
1501 .{ .cp = 0x1E7B, .status = .valid, .mapping = &.{}, .status2 = .none, },
1502 .{ .cp = 0x1E7C, .status = .mapped, .mapping = &.{0x1E7D}, .status2 = .none, },
1503 .{ .cp = 0x1E7D, .status = .valid, .mapping = &.{}, .status2 = .none, },
1504 .{ .cp = 0x1E7E, .status = .mapped, .mapping = &.{0x1E7F}, .status2 = .none, },
1505 .{ .cp = 0x1E7F, .status = .valid, .mapping = &.{}, .status2 = .none, },
1506 .{ .cp = 0x1E80, .status = .mapped, .mapping = &.{0x1E81}, .status2 = .none, },
1507 .{ .cp = 0x1E81, .status = .valid, .mapping = &.{}, .status2 = .none, },
1508 .{ .cp = 0x1E82, .status = .mapped, .mapping = &.{0x1E83}, .status2 = .none, },
1509 .{ .cp = 0x1E83, .status = .valid, .mapping = &.{}, .status2 = .none, },
1510 .{ .cp = 0x1E84, .status = .mapped, .mapping = &.{0x1E85}, .status2 = .none, },
1511 .{ .cp = 0x1E85, .status = .valid, .mapping = &.{}, .status2 = .none, },
1512 .{ .cp = 0x1E86, .status = .mapped, .mapping = &.{0x1E87}, .status2 = .none, },
1513 .{ .cp = 0x1E87, .status = .valid, .mapping = &.{}, .status2 = .none, },
1514 .{ .cp = 0x1E88, .status = .mapped, .mapping = &.{0x1E89}, .status2 = .none, },
1515 .{ .cp = 0x1E89, .status = .valid, .mapping = &.{}, .status2 = .none, },
1516 .{ .cp = 0x1E8A, .status = .mapped, .mapping = &.{0x1E8B}, .status2 = .none, },
1517 .{ .cp = 0x1E8B, .status = .valid, .mapping = &.{}, .status2 = .none, },
1518 .{ .cp = 0x1E8C, .status = .mapped, .mapping = &.{0x1E8D}, .status2 = .none, },
1519 .{ .cp = 0x1E8D, .status = .valid, .mapping = &.{}, .status2 = .none, },
1520 .{ .cp = 0x1E8E, .status = .mapped, .mapping = &.{0x1E8F}, .status2 = .none, },
1521 .{ .cp = 0x1E8F, .status = .valid, .mapping = &.{}, .status2 = .none, },
1522 .{ .cp = 0x1E90, .status = .mapped, .mapping = &.{0x1E91}, .status2 = .none, },
1523 .{ .cp = 0x1E91, .status = .valid, .mapping = &.{}, .status2 = .none, },
1524 .{ .cp = 0x1E92, .status = .mapped, .mapping = &.{0x1E93}, .status2 = .none, },
1525 .{ .cp = 0x1E93, .status = .valid, .mapping = &.{}, .status2 = .none, },
1526 .{ .cp = 0x1E94, .status = .mapped, .mapping = &.{0x1E95}, .status2 = .none, },
1527 .{ .cp = 0x1E9A, .status = .mapped, .mapping = &.{0x0061,0x02BE}, .status2 = .none, },
1528 .{ .cp = 0x1E9B, .status = .mapped, .mapping = &.{0x1E61}, .status2 = .none, },
1529 .{ .cp = 0x1E9E, .status = .mapped, .mapping = &.{0x00DF}, .status2 = .none, },
1530 .{ .cp = 0x1E9F, .status = .valid, .mapping = &.{}, .status2 = .none, },
1531 .{ .cp = 0x1EA0, .status = .mapped, .mapping = &.{0x1EA1}, .status2 = .none, },
1532 .{ .cp = 0x1EA1, .status = .valid, .mapping = &.{}, .status2 = .none, },
1533 .{ .cp = 0x1EA2, .status = .mapped, .mapping = &.{0x1EA3}, .status2 = .none, },
1534 .{ .cp = 0x1EA3, .status = .valid, .mapping = &.{}, .status2 = .none, },
1535 .{ .cp = 0x1EA4, .status = .mapped, .mapping = &.{0x1EA5}, .status2 = .none, },
1536 .{ .cp = 0x1EA5, .status = .valid, .mapping = &.{}, .status2 = .none, },
1537 .{ .cp = 0x1EA6, .status = .mapped, .mapping = &.{0x1EA7}, .status2 = .none, },
1538 .{ .cp = 0x1EA7, .status = .valid, .mapping = &.{}, .status2 = .none, },
1539 .{ .cp = 0x1EA8, .status = .mapped, .mapping = &.{0x1EA9}, .status2 = .none, },
1540 .{ .cp = 0x1EA9, .status = .valid, .mapping = &.{}, .status2 = .none, },
1541 .{ .cp = 0x1EAA, .status = .mapped, .mapping = &.{0x1EAB}, .status2 = .none, },
1542 .{ .cp = 0x1EAB, .status = .valid, .mapping = &.{}, .status2 = .none, },
1543 .{ .cp = 0x1EAC, .status = .mapped, .mapping = &.{0x1EAD}, .status2 = .none, },
1544 .{ .cp = 0x1EAD, .status = .valid, .mapping = &.{}, .status2 = .none, },
1545 .{ .cp = 0x1EAE, .status = .mapped, .mapping = &.{0x1EAF}, .status2 = .none, },
1546 .{ .cp = 0x1EAF, .status = .valid, .mapping = &.{}, .status2 = .none, },
1547 .{ .cp = 0x1EB0, .status = .mapped, .mapping = &.{0x1EB1}, .status2 = .none, },
1548 .{ .cp = 0x1EB1, .status = .valid, .mapping = &.{}, .status2 = .none, },
1549 .{ .cp = 0x1EB2, .status = .mapped, .mapping = &.{0x1EB3}, .status2 = .none, },
1550 .{ .cp = 0x1EB3, .status = .valid, .mapping = &.{}, .status2 = .none, },
1551 .{ .cp = 0x1EB4, .status = .mapped, .mapping = &.{0x1EB5}, .status2 = .none, },
1552 .{ .cp = 0x1EB5, .status = .valid, .mapping = &.{}, .status2 = .none, },
1553 .{ .cp = 0x1EB6, .status = .mapped, .mapping = &.{0x1EB7}, .status2 = .none, },
1554 .{ .cp = 0x1EB7, .status = .valid, .mapping = &.{}, .status2 = .none, },
1555 .{ .cp = 0x1EB8, .status = .mapped, .mapping = &.{0x1EB9}, .status2 = .none, },
1556 .{ .cp = 0x1EB9, .status = .valid, .mapping = &.{}, .status2 = .none, },
1557 .{ .cp = 0x1EBA, .status = .mapped, .mapping = &.{0x1EBB}, .status2 = .none, },
1558 .{ .cp = 0x1EBB, .status = .valid, .mapping = &.{}, .status2 = .none, },
1559 .{ .cp = 0x1EBC, .status = .mapped, .mapping = &.{0x1EBD}, .status2 = .none, },
1560 .{ .cp = 0x1EBD, .status = .valid, .mapping = &.{}, .status2 = .none, },
1561 .{ .cp = 0x1EBE, .status = .mapped, .mapping = &.{0x1EBF}, .status2 = .none, },
1562 .{ .cp = 0x1EBF, .status = .valid, .mapping = &.{}, .status2 = .none, },
1563 .{ .cp = 0x1EC0, .status = .mapped, .mapping = &.{0x1EC1}, .status2 = .none, },
1564 .{ .cp = 0x1EC1, .status = .valid, .mapping = &.{}, .status2 = .none, },
1565 .{ .cp = 0x1EC2, .status = .mapped, .mapping = &.{0x1EC3}, .status2 = .none, },
1566 .{ .cp = 0x1EC3, .status = .valid, .mapping = &.{}, .status2 = .none, },
1567 .{ .cp = 0x1EC4, .status = .mapped, .mapping = &.{0x1EC5}, .status2 = .none, },
1568 .{ .cp = 0x1EC5, .status = .valid, .mapping = &.{}, .status2 = .none, },
1569 .{ .cp = 0x1EC6, .status = .mapped, .mapping = &.{0x1EC7}, .status2 = .none, },
1570 .{ .cp = 0x1EC7, .status = .valid, .mapping = &.{}, .status2 = .none, },
1571 .{ .cp = 0x1EC8, .status = .mapped, .mapping = &.{0x1EC9}, .status2 = .none, },
1572 .{ .cp = 0x1EC9, .status = .valid, .mapping = &.{}, .status2 = .none, },
1573 .{ .cp = 0x1ECA, .status = .mapped, .mapping = &.{0x1ECB}, .status2 = .none, },
1574 .{ .cp = 0x1ECB, .status = .valid, .mapping = &.{}, .status2 = .none, },
1575 .{ .cp = 0x1ECC, .status = .mapped, .mapping = &.{0x1ECD}, .status2 = .none, },
1576 .{ .cp = 0x1ECD, .status = .valid, .mapping = &.{}, .status2 = .none, },
1577 .{ .cp = 0x1ECE, .status = .mapped, .mapping = &.{0x1ECF}, .status2 = .none, },
1578 .{ .cp = 0x1ECF, .status = .valid, .mapping = &.{}, .status2 = .none, },
1579 .{ .cp = 0x1ED0, .status = .mapped, .mapping = &.{0x1ED1}, .status2 = .none, },
1580 .{ .cp = 0x1ED1, .status = .valid, .mapping = &.{}, .status2 = .none, },
1581 .{ .cp = 0x1ED2, .status = .mapped, .mapping = &.{0x1ED3}, .status2 = .none, },
1582 .{ .cp = 0x1ED3, .status = .valid, .mapping = &.{}, .status2 = .none, },
1583 .{ .cp = 0x1ED4, .status = .mapped, .mapping = &.{0x1ED5}, .status2 = .none, },
1584 .{ .cp = 0x1ED5, .status = .valid, .mapping = &.{}, .status2 = .none, },
1585 .{ .cp = 0x1ED6, .status = .mapped, .mapping = &.{0x1ED7}, .status2 = .none, },
1586 .{ .cp = 0x1ED7, .status = .valid, .mapping = &.{}, .status2 = .none, },
1587 .{ .cp = 0x1ED8, .status = .mapped, .mapping = &.{0x1ED9}, .status2 = .none, },
1588 .{ .cp = 0x1ED9, .status = .valid, .mapping = &.{}, .status2 = .none, },
1589 .{ .cp = 0x1EDA, .status = .mapped, .mapping = &.{0x1EDB}, .status2 = .none, },
1590 .{ .cp = 0x1EDB, .status = .valid, .mapping = &.{}, .status2 = .none, },
1591 .{ .cp = 0x1EDC, .status = .mapped, .mapping = &.{0x1EDD}, .status2 = .none, },
1592 .{ .cp = 0x1EDD, .status = .valid, .mapping = &.{}, .status2 = .none, },
1593 .{ .cp = 0x1EDE, .status = .mapped, .mapping = &.{0x1EDF}, .status2 = .none, },
1594 .{ .cp = 0x1EDF, .status = .valid, .mapping = &.{}, .status2 = .none, },
1595 .{ .cp = 0x1EE0, .status = .mapped, .mapping = &.{0x1EE1}, .status2 = .none, },
1596 .{ .cp = 0x1EE1, .status = .valid, .mapping = &.{}, .status2 = .none, },
1597 .{ .cp = 0x1EE2, .status = .mapped, .mapping = &.{0x1EE3}, .status2 = .none, },
1598 .{ .cp = 0x1EE3, .status = .valid, .mapping = &.{}, .status2 = .none, },
1599 .{ .cp = 0x1EE4, .status = .mapped, .mapping = &.{0x1EE5}, .status2 = .none, },
1600 .{ .cp = 0x1EE5, .status = .valid, .mapping = &.{}, .status2 = .none, },
1601 .{ .cp = 0x1EE6, .status = .mapped, .mapping = &.{0x1EE7}, .status2 = .none, },
1602 .{ .cp = 0x1EE7, .status = .valid, .mapping = &.{}, .status2 = .none, },
1603 .{ .cp = 0x1EE8, .status = .mapped, .mapping = &.{0x1EE9}, .status2 = .none, },
1604 .{ .cp = 0x1EE9, .status = .valid, .mapping = &.{}, .status2 = .none, },
1605 .{ .cp = 0x1EEA, .status = .mapped, .mapping = &.{0x1EEB}, .status2 = .none, },
1606 .{ .cp = 0x1EEB, .status = .valid, .mapping = &.{}, .status2 = .none, },
1607 .{ .cp = 0x1EEC, .status = .mapped, .mapping = &.{0x1EED}, .status2 = .none, },
1608 .{ .cp = 0x1EED, .status = .valid, .mapping = &.{}, .status2 = .none, },
1609 .{ .cp = 0x1EEE, .status = .mapped, .mapping = &.{0x1EEF}, .status2 = .none, },
1610 .{ .cp = 0x1EEF, .status = .valid, .mapping = &.{}, .status2 = .none, },
1611 .{ .cp = 0x1EF0, .status = .mapped, .mapping = &.{0x1EF1}, .status2 = .none, },
1612 .{ .cp = 0x1EF1, .status = .valid, .mapping = &.{}, .status2 = .none, },
1613 .{ .cp = 0x1EF2, .status = .mapped, .mapping = &.{0x1EF3}, .status2 = .none, },
1614 .{ .cp = 0x1EF3, .status = .valid, .mapping = &.{}, .status2 = .none, },
1615 .{ .cp = 0x1EF4, .status = .mapped, .mapping = &.{0x1EF5}, .status2 = .none, },
1616 .{ .cp = 0x1EF5, .status = .valid, .mapping = &.{}, .status2 = .none, },
1617 .{ .cp = 0x1EF6, .status = .mapped, .mapping = &.{0x1EF7}, .status2 = .none, },
1618 .{ .cp = 0x1EF7, .status = .valid, .mapping = &.{}, .status2 = .none, },
1619 .{ .cp = 0x1EF8, .status = .mapped, .mapping = &.{0x1EF9}, .status2 = .none, },
1620 .{ .cp = 0x1EF9, .status = .valid, .mapping = &.{}, .status2 = .none, },
1621 .{ .cp = 0x1EFA, .status = .mapped, .mapping = &.{0x1EFB}, .status2 = .none, },
1622 .{ .cp = 0x1EFB, .status = .valid, .mapping = &.{}, .status2 = .none, },
1623 .{ .cp = 0x1EFC, .status = .mapped, .mapping = &.{0x1EFD}, .status2 = .none, },
1624 .{ .cp = 0x1EFD, .status = .valid, .mapping = &.{}, .status2 = .none, },
1625 .{ .cp = 0x1EFE, .status = .mapped, .mapping = &.{0x1EFF}, .status2 = .none, },
1626 .{ .cp = 0x1EFF, .status = .valid, .mapping = &.{}, .status2 = .none, },
1627 .{ .cp = 0x1F08, .status = .mapped, .mapping = &.{0x1F00}, .status2 = .none, },
1628 .{ .cp = 0x1F09, .status = .mapped, .mapping = &.{0x1F01}, .status2 = .none, },
1629 .{ .cp = 0x1F0A, .status = .mapped, .mapping = &.{0x1F02}, .status2 = .none, },
1630 .{ .cp = 0x1F0B, .status = .mapped, .mapping = &.{0x1F03}, .status2 = .none, },
1631 .{ .cp = 0x1F0C, .status = .mapped, .mapping = &.{0x1F04}, .status2 = .none, },
1632 .{ .cp = 0x1F0D, .status = .mapped, .mapping = &.{0x1F05}, .status2 = .none, },
1633 .{ .cp = 0x1F0E, .status = .mapped, .mapping = &.{0x1F06}, .status2 = .none, },
1634 .{ .cp = 0x1F0F, .status = .mapped, .mapping = &.{0x1F07}, .status2 = .none, },
1635 .{ .cp = 0x1F18, .status = .mapped, .mapping = &.{0x1F10}, .status2 = .none, },
1636 .{ .cp = 0x1F19, .status = .mapped, .mapping = &.{0x1F11}, .status2 = .none, },
1637 .{ .cp = 0x1F1A, .status = .mapped, .mapping = &.{0x1F12}, .status2 = .none, },
1638 .{ .cp = 0x1F1B, .status = .mapped, .mapping = &.{0x1F13}, .status2 = .none, },
1639 .{ .cp = 0x1F1C, .status = .mapped, .mapping = &.{0x1F14}, .status2 = .none, },
1640 .{ .cp = 0x1F1D, .status = .mapped, .mapping = &.{0x1F15}, .status2 = .none, },
1641 .{ .cp = 0x1F28, .status = .mapped, .mapping = &.{0x1F20}, .status2 = .none, },
1642 .{ .cp = 0x1F29, .status = .mapped, .mapping = &.{0x1F21}, .status2 = .none, },
1643 .{ .cp = 0x1F2A, .status = .mapped, .mapping = &.{0x1F22}, .status2 = .none, },
1644 .{ .cp = 0x1F2B, .status = .mapped, .mapping = &.{0x1F23}, .status2 = .none, },
1645 .{ .cp = 0x1F2C, .status = .mapped, .mapping = &.{0x1F24}, .status2 = .none, },
1646 .{ .cp = 0x1F2D, .status = .mapped, .mapping = &.{0x1F25}, .status2 = .none, },
1647 .{ .cp = 0x1F2E, .status = .mapped, .mapping = &.{0x1F26}, .status2 = .none, },
1648 .{ .cp = 0x1F2F, .status = .mapped, .mapping = &.{0x1F27}, .status2 = .none, },
1649 .{ .cp = 0x1F38, .status = .mapped, .mapping = &.{0x1F30}, .status2 = .none, },
1650 .{ .cp = 0x1F39, .status = .mapped, .mapping = &.{0x1F31}, .status2 = .none, },
1651 .{ .cp = 0x1F3A, .status = .mapped, .mapping = &.{0x1F32}, .status2 = .none, },
1652 .{ .cp = 0x1F3B, .status = .mapped, .mapping = &.{0x1F33}, .status2 = .none, },
1653 .{ .cp = 0x1F3C, .status = .mapped, .mapping = &.{0x1F34}, .status2 = .none, },
1654 .{ .cp = 0x1F3D, .status = .mapped, .mapping = &.{0x1F35}, .status2 = .none, },
1655 .{ .cp = 0x1F3E, .status = .mapped, .mapping = &.{0x1F36}, .status2 = .none, },
1656 .{ .cp = 0x1F3F, .status = .mapped, .mapping = &.{0x1F37}, .status2 = .none, },
1657 .{ .cp = 0x1F48, .status = .mapped, .mapping = &.{0x1F40}, .status2 = .none, },
1658 .{ .cp = 0x1F49, .status = .mapped, .mapping = &.{0x1F41}, .status2 = .none, },
1659 .{ .cp = 0x1F4A, .status = .mapped, .mapping = &.{0x1F42}, .status2 = .none, },
1660 .{ .cp = 0x1F4B, .status = .mapped, .mapping = &.{0x1F43}, .status2 = .none, },
1661 .{ .cp = 0x1F4C, .status = .mapped, .mapping = &.{0x1F44}, .status2 = .none, },
1662 .{ .cp = 0x1F4D, .status = .mapped, .mapping = &.{0x1F45}, .status2 = .none, },
1663 .{ .cp = 0x1F58, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
1664 .{ .cp = 0x1F59, .status = .mapped, .mapping = &.{0x1F51}, .status2 = .none, },
1665 .{ .cp = 0x1F5A, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
1666 .{ .cp = 0x1F5B, .status = .mapped, .mapping = &.{0x1F53}, .status2 = .none, },
1667 .{ .cp = 0x1F5C, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
1668 .{ .cp = 0x1F5D, .status = .mapped, .mapping = &.{0x1F55}, .status2 = .none, },
1669 .{ .cp = 0x1F5E, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
1670 .{ .cp = 0x1F5F, .status = .mapped, .mapping = &.{0x1F57}, .status2 = .none, },
1671 .{ .cp = 0x1F68, .status = .mapped, .mapping = &.{0x1F60}, .status2 = .none, },
1672 .{ .cp = 0x1F69, .status = .mapped, .mapping = &.{0x1F61}, .status2 = .none, },
1673 .{ .cp = 0x1F6A, .status = .mapped, .mapping = &.{0x1F62}, .status2 = .none, },
1674 .{ .cp = 0x1F6B, .status = .mapped, .mapping = &.{0x1F63}, .status2 = .none, },
1675 .{ .cp = 0x1F6C, .status = .mapped, .mapping = &.{0x1F64}, .status2 = .none, },
1676 .{ .cp = 0x1F6D, .status = .mapped, .mapping = &.{0x1F65}, .status2 = .none, },
1677 .{ .cp = 0x1F6E, .status = .mapped, .mapping = &.{0x1F66}, .status2 = .none, },
1678 .{ .cp = 0x1F6F, .status = .mapped, .mapping = &.{0x1F67}, .status2 = .none, },
1679 .{ .cp = 0x1F70, .status = .valid, .mapping = &.{}, .status2 = .none, },
1680 .{ .cp = 0x1F71, .status = .mapped, .mapping = &.{0x03AC}, .status2 = .none, },
1681 .{ .cp = 0x1F72, .status = .valid, .mapping = &.{}, .status2 = .none, },
1682 .{ .cp = 0x1F73, .status = .mapped, .mapping = &.{0x03AD}, .status2 = .none, },
1683 .{ .cp = 0x1F74, .status = .valid, .mapping = &.{}, .status2 = .none, },
1684 .{ .cp = 0x1F75, .status = .mapped, .mapping = &.{0x03AE}, .status2 = .none, },
1685 .{ .cp = 0x1F76, .status = .valid, .mapping = &.{}, .status2 = .none, },
1686 .{ .cp = 0x1F77, .status = .mapped, .mapping = &.{0x03AF}, .status2 = .none, },
1687 .{ .cp = 0x1F78, .status = .valid, .mapping = &.{}, .status2 = .none, },
1688 .{ .cp = 0x1F79, .status = .mapped, .mapping = &.{0x03CC}, .status2 = .none, },
1689 .{ .cp = 0x1F7A, .status = .valid, .mapping = &.{}, .status2 = .none, },
1690 .{ .cp = 0x1F7B, .status = .mapped, .mapping = &.{0x03CD}, .status2 = .none, },
1691 .{ .cp = 0x1F7C, .status = .valid, .mapping = &.{}, .status2 = .none, },
1692 .{ .cp = 0x1F7D, .status = .mapped, .mapping = &.{0x03CE}, .status2 = .none, },
1693 .{ .cp = 0x1F80, .status = .mapped, .mapping = &.{0x1F00,0x03B9}, .status2 = .none, },
1694 .{ .cp = 0x1F81, .status = .mapped, .mapping = &.{0x1F01,0x03B9}, .status2 = .none, },
1695 .{ .cp = 0x1F82, .status = .mapped, .mapping = &.{0x1F02,0x03B9}, .status2 = .none, },
1696 .{ .cp = 0x1F83, .status = .mapped, .mapping = &.{0x1F03,0x03B9}, .status2 = .none, },
1697 .{ .cp = 0x1F84, .status = .mapped, .mapping = &.{0x1F04,0x03B9}, .status2 = .none, },
1698 .{ .cp = 0x1F85, .status = .mapped, .mapping = &.{0x1F05,0x03B9}, .status2 = .none, },
1699 .{ .cp = 0x1F86, .status = .mapped, .mapping = &.{0x1F06,0x03B9}, .status2 = .none, },
1700 .{ .cp = 0x1F87, .status = .mapped, .mapping = &.{0x1F07,0x03B9}, .status2 = .none, },
1701 .{ .cp = 0x1F88, .status = .mapped, .mapping = &.{0x1F00,0x03B9}, .status2 = .none, },
1702 .{ .cp = 0x1F89, .status = .mapped, .mapping = &.{0x1F01,0x03B9}, .status2 = .none, },
1703 .{ .cp = 0x1F8A, .status = .mapped, .mapping = &.{0x1F02,0x03B9}, .status2 = .none, },
1704 .{ .cp = 0x1F8B, .status = .mapped, .mapping = &.{0x1F03,0x03B9}, .status2 = .none, },
1705 .{ .cp = 0x1F8C, .status = .mapped, .mapping = &.{0x1F04,0x03B9}, .status2 = .none, },
1706 .{ .cp = 0x1F8D, .status = .mapped, .mapping = &.{0x1F05,0x03B9}, .status2 = .none, },
1707 .{ .cp = 0x1F8E, .status = .mapped, .mapping = &.{0x1F06,0x03B9}, .status2 = .none, },
1708 .{ .cp = 0x1F8F, .status = .mapped, .mapping = &.{0x1F07,0x03B9}, .status2 = .none, },
1709 .{ .cp = 0x1F90, .status = .mapped, .mapping = &.{0x1F20,0x03B9}, .status2 = .none, },
1710 .{ .cp = 0x1F91, .status = .mapped, .mapping = &.{0x1F21,0x03B9}, .status2 = .none, },
1711 .{ .cp = 0x1F92, .status = .mapped, .mapping = &.{0x1F22,0x03B9}, .status2 = .none, },
1712 .{ .cp = 0x1F93, .status = .mapped, .mapping = &.{0x1F23,0x03B9}, .status2 = .none, },
1713 .{ .cp = 0x1F94, .status = .mapped, .mapping = &.{0x1F24,0x03B9}, .status2 = .none, },
1714 .{ .cp = 0x1F95, .status = .mapped, .mapping = &.{0x1F25,0x03B9}, .status2 = .none, },
1715 .{ .cp = 0x1F96, .status = .mapped, .mapping = &.{0x1F26,0x03B9}, .status2 = .none, },
1716 .{ .cp = 0x1F97, .status = .mapped, .mapping = &.{0x1F27,0x03B9}, .status2 = .none, },
1717 .{ .cp = 0x1F98, .status = .mapped, .mapping = &.{0x1F20,0x03B9}, .status2 = .none, },
1718 .{ .cp = 0x1F99, .status = .mapped, .mapping = &.{0x1F21,0x03B9}, .status2 = .none, },
1719 .{ .cp = 0x1F9A, .status = .mapped, .mapping = &.{0x1F22,0x03B9}, .status2 = .none, },
1720 .{ .cp = 0x1F9B, .status = .mapped, .mapping = &.{0x1F23,0x03B9}, .status2 = .none, },
1721 .{ .cp = 0x1F9C, .status = .mapped, .mapping = &.{0x1F24,0x03B9}, .status2 = .none, },
1722 .{ .cp = 0x1F9D, .status = .mapped, .mapping = &.{0x1F25,0x03B9}, .status2 = .none, },
1723 .{ .cp = 0x1F9E, .status = .mapped, .mapping = &.{0x1F26,0x03B9}, .status2 = .none, },
1724 .{ .cp = 0x1F9F, .status = .mapped, .mapping = &.{0x1F27,0x03B9}, .status2 = .none, },
1725 .{ .cp = 0x1FA0, .status = .mapped, .mapping = &.{0x1F60,0x03B9}, .status2 = .none, },
1726 .{ .cp = 0x1FA1, .status = .mapped, .mapping = &.{0x1F61,0x03B9}, .status2 = .none, },
1727 .{ .cp = 0x1FA2, .status = .mapped, .mapping = &.{0x1F62,0x03B9}, .status2 = .none, },
1728 .{ .cp = 0x1FA3, .status = .mapped, .mapping = &.{0x1F63,0x03B9}, .status2 = .none, },
1729 .{ .cp = 0x1FA4, .status = .mapped, .mapping = &.{0x1F64,0x03B9}, .status2 = .none, },
1730 .{ .cp = 0x1FA5, .status = .mapped, .mapping = &.{0x1F65,0x03B9}, .status2 = .none, },
1731 .{ .cp = 0x1FA6, .status = .mapped, .mapping = &.{0x1F66,0x03B9}, .status2 = .none, },
1732 .{ .cp = 0x1FA7, .status = .mapped, .mapping = &.{0x1F67,0x03B9}, .status2 = .none, },
1733 .{ .cp = 0x1FA8, .status = .mapped, .mapping = &.{0x1F60,0x03B9}, .status2 = .none, },
1734 .{ .cp = 0x1FA9, .status = .mapped, .mapping = &.{0x1F61,0x03B9}, .status2 = .none, },
1735 .{ .cp = 0x1FAA, .status = .mapped, .mapping = &.{0x1F62,0x03B9}, .status2 = .none, },
1736 .{ .cp = 0x1FAB, .status = .mapped, .mapping = &.{0x1F63,0x03B9}, .status2 = .none, },
1737 .{ .cp = 0x1FAC, .status = .mapped, .mapping = &.{0x1F64,0x03B9}, .status2 = .none, },
1738 .{ .cp = 0x1FAD, .status = .mapped, .mapping = &.{0x1F65,0x03B9}, .status2 = .none, },
1739 .{ .cp = 0x1FAE, .status = .mapped, .mapping = &.{0x1F66,0x03B9}, .status2 = .none, },
1740 .{ .cp = 0x1FAF, .status = .mapped, .mapping = &.{0x1F67,0x03B9}, .status2 = .none, },
1741 .{ .cp = 0x1FB2, .status = .mapped, .mapping = &.{0x1F70,0x03B9}, .status2 = .none, },
1742 .{ .cp = 0x1FB3, .status = .mapped, .mapping = &.{0x03B1,0x03B9}, .status2 = .none, },
1743 .{ .cp = 0x1FB4, .status = .mapped, .mapping = &.{0x03AC,0x03B9}, .status2 = .none, },
1744 .{ .cp = 0x1FB5, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
1745 .{ .cp = 0x1FB6, .status = .valid, .mapping = &.{}, .status2 = .none, },
1746 .{ .cp = 0x1FB7, .status = .mapped, .mapping = &.{0x1FB6,0x03B9}, .status2 = .none, },
1747 .{ .cp = 0x1FB8, .status = .mapped, .mapping = &.{0x1FB0}, .status2 = .none, },
1748 .{ .cp = 0x1FB9, .status = .mapped, .mapping = &.{0x1FB1}, .status2 = .none, },
1749 .{ .cp = 0x1FBA, .status = .mapped, .mapping = &.{0x1F70}, .status2 = .none, },
1750 .{ .cp = 0x1FBB, .status = .mapped, .mapping = &.{0x03AC}, .status2 = .none, },
1751 .{ .cp = 0x1FBC, .status = .mapped, .mapping = &.{0x03B1,0x03B9}, .status2 = .none, },
1752 .{ .cp = 0x1FBD, .status = .mapped, .mapping = &.{0x0020,0x0313}, .status2 = .none, },
1753 .{ .cp = 0x1FBE, .status = .mapped, .mapping = &.{0x03B9}, .status2 = .none, },
1754 .{ .cp = 0x1FBF, .status = .mapped, .mapping = &.{0x0020,0x0313}, .status2 = .none, },
1755 .{ .cp = 0x1FC0, .status = .mapped, .mapping = &.{0x0020,0x0342}, .status2 = .none, },
1756 .{ .cp = 0x1FC1, .status = .mapped, .mapping = &.{0x0020,0x0308,0x0342}, .status2 = .none, },
1757 .{ .cp = 0x1FC2, .status = .mapped, .mapping = &.{0x1F74,0x03B9}, .status2 = .none, },
1758 .{ .cp = 0x1FC3, .status = .mapped, .mapping = &.{0x03B7,0x03B9}, .status2 = .none, },
1759 .{ .cp = 0x1FC4, .status = .mapped, .mapping = &.{0x03AE,0x03B9}, .status2 = .none, },
1760 .{ .cp = 0x1FC5, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
1761 .{ .cp = 0x1FC6, .status = .valid, .mapping = &.{}, .status2 = .none, },
1762 .{ .cp = 0x1FC7, .status = .mapped, .mapping = &.{0x1FC6,0x03B9}, .status2 = .none, },
1763 .{ .cp = 0x1FC8, .status = .mapped, .mapping = &.{0x1F72}, .status2 = .none, },
1764 .{ .cp = 0x1FC9, .status = .mapped, .mapping = &.{0x03AD}, .status2 = .none, },
1765 .{ .cp = 0x1FCA, .status = .mapped, .mapping = &.{0x1F74}, .status2 = .none, },
1766 .{ .cp = 0x1FCB, .status = .mapped, .mapping = &.{0x03AE}, .status2 = .none, },
1767 .{ .cp = 0x1FCC, .status = .mapped, .mapping = &.{0x03B7,0x03B9}, .status2 = .none, },
1768 .{ .cp = 0x1FCD, .status = .mapped, .mapping = &.{0x0020,0x0313,0x0300}, .status2 = .none, },
1769 .{ .cp = 0x1FCE, .status = .mapped, .mapping = &.{0x0020,0x0313,0x0301}, .status2 = .none, },
1770 .{ .cp = 0x1FCF, .status = .mapped, .mapping = &.{0x0020,0x0313,0x0342}, .status2 = .none, },
1771 .{ .cp = 0x1FD3, .status = .mapped, .mapping = &.{0x0390}, .status2 = .none, },
1772 .{ .cp = 0x1FD8, .status = .mapped, .mapping = &.{0x1FD0}, .status2 = .none, },
1773 .{ .cp = 0x1FD9, .status = .mapped, .mapping = &.{0x1FD1}, .status2 = .none, },
1774 .{ .cp = 0x1FDA, .status = .mapped, .mapping = &.{0x1F76}, .status2 = .none, },
1775 .{ .cp = 0x1FDB, .status = .mapped, .mapping = &.{0x03AF}, .status2 = .none, },
1776 .{ .cp = 0x1FDC, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
1777 .{ .cp = 0x1FDD, .status = .mapped, .mapping = &.{0x0020,0x0314,0x0300}, .status2 = .none, },
1778 .{ .cp = 0x1FDE, .status = .mapped, .mapping = &.{0x0020,0x0314,0x0301}, .status2 = .none, },
1779 .{ .cp = 0x1FDF, .status = .mapped, .mapping = &.{0x0020,0x0314,0x0342}, .status2 = .none, },
1780 .{ .cp = 0x1FE3, .status = .mapped, .mapping = &.{0x03B0}, .status2 = .none, },
1781 .{ .cp = 0x1FE8, .status = .mapped, .mapping = &.{0x1FE0}, .status2 = .none, },
1782 .{ .cp = 0x1FE9, .status = .mapped, .mapping = &.{0x1FE1}, .status2 = .none, },
1783 .{ .cp = 0x1FEA, .status = .mapped, .mapping = &.{0x1F7A}, .status2 = .none, },
1784 .{ .cp = 0x1FEB, .status = .mapped, .mapping = &.{0x03CD}, .status2 = .none, },
1785 .{ .cp = 0x1FEC, .status = .mapped, .mapping = &.{0x1FE5}, .status2 = .none, },
1786 .{ .cp = 0x1FED, .status = .mapped, .mapping = &.{0x0020,0x0308,0x0300}, .status2 = .none, },
1787 .{ .cp = 0x1FEE, .status = .mapped, .mapping = &.{0x0020,0x0308,0x0301}, .status2 = .none, },
1788 .{ .cp = 0x1FEF, .status = .mapped, .mapping = &.{0x0060}, .status2 = .none, },
1789 .{ .cp = 0x1FF2, .status = .mapped, .mapping = &.{0x1F7C,0x03B9}, .status2 = .none, },
1790 .{ .cp = 0x1FF3, .status = .mapped, .mapping = &.{0x03C9,0x03B9}, .status2 = .none, },
1791 .{ .cp = 0x1FF4, .status = .mapped, .mapping = &.{0x03CE,0x03B9}, .status2 = .none, },
1792 .{ .cp = 0x1FF5, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
1793 .{ .cp = 0x1FF6, .status = .valid, .mapping = &.{}, .status2 = .none, },
1794 .{ .cp = 0x1FF7, .status = .mapped, .mapping = &.{0x1FF6,0x03B9}, .status2 = .none, },
1795 .{ .cp = 0x1FF8, .status = .mapped, .mapping = &.{0x1F78}, .status2 = .none, },
1796 .{ .cp = 0x1FF9, .status = .mapped, .mapping = &.{0x03CC}, .status2 = .none, },
1797 .{ .cp = 0x1FFA, .status = .mapped, .mapping = &.{0x1F7C}, .status2 = .none, },
1798 .{ .cp = 0x1FFB, .status = .mapped, .mapping = &.{0x03CE}, .status2 = .none, },
1799 .{ .cp = 0x1FFC, .status = .mapped, .mapping = &.{0x03C9,0x03B9}, .status2 = .none, },
1800 .{ .cp = 0x1FFD, .status = .mapped, .mapping = &.{0x0020,0x0301}, .status2 = .none, },
1801 .{ .cp = 0x1FFE, .status = .mapped, .mapping = &.{0x0020,0x0314}, .status2 = .none, },
1802 .{ .cp = 0x1FFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
1803 .{ .cp = 0x200B, .status = .ignored, .mapping = &.{}, .status2 = .none, },
1804 .{ .cp = 0x2010, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
1805 .{ .cp = 0x2011, .status = .mapped, .mapping = &.{0x2010}, .status2 = .none, },
1806 .{ .cp = 0x2017, .status = .mapped, .mapping = &.{0x0020,0x0333}, .status2 = .none, },
1807 .{ .cp = 0x2027, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
1808 .{ .cp = 0x202F, .status = .mapped, .mapping = &.{0x0020}, .status2 = .none, },
1809 .{ .cp = 0x2033, .status = .mapped, .mapping = &.{0x2032,0x2032}, .status2 = .none, },
1810 .{ .cp = 0x2034, .status = .mapped, .mapping = &.{0x2032,0x2032,0x2032}, .status2 = .none, },
1811 .{ .cp = 0x2035, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
1812 .{ .cp = 0x2036, .status = .mapped, .mapping = &.{0x2035,0x2035}, .status2 = .none, },
1813 .{ .cp = 0x2037, .status = .mapped, .mapping = &.{0x2035,0x2035,0x2035}, .status2 = .none, },
1814 .{ .cp = 0x203C, .status = .mapped, .mapping = &.{0x0021,0x0021}, .status2 = .none, },
1815 .{ .cp = 0x203D, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
1816 .{ .cp = 0x203E, .status = .mapped, .mapping = &.{0x0020,0x0305}, .status2 = .none, },
1817 .{ .cp = 0x2047, .status = .mapped, .mapping = &.{0x003F,0x003F}, .status2 = .none, },
1818 .{ .cp = 0x2048, .status = .mapped, .mapping = &.{0x003F,0x0021}, .status2 = .none, },
1819 .{ .cp = 0x2049, .status = .mapped, .mapping = &.{0x0021,0x003F}, .status2 = .none, },
1820 .{ .cp = 0x2057, .status = .mapped, .mapping = &.{0x2032,0x2032,0x2032,0x2032}, .status2 = .none, },
1821 .{ .cp = 0x205F, .status = .mapped, .mapping = &.{0x0020}, .status2 = .none, },
1822 .{ .cp = 0x2064, .status = .ignored, .mapping = &.{}, .status2 = .none, },
1823 .{ .cp = 0x2065, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
1824 .{ .cp = 0x2070, .status = .mapped, .mapping = &.{0x0030}, .status2 = .none, },
1825 .{ .cp = 0x2071, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, },
1826 .{ .cp = 0x2074, .status = .mapped, .mapping = &.{0x0034}, .status2 = .none, },
1827 .{ .cp = 0x2075, .status = .mapped, .mapping = &.{0x0035}, .status2 = .none, },
1828 .{ .cp = 0x2076, .status = .mapped, .mapping = &.{0x0036}, .status2 = .none, },
1829 .{ .cp = 0x2077, .status = .mapped, .mapping = &.{0x0037}, .status2 = .none, },
1830 .{ .cp = 0x2078, .status = .mapped, .mapping = &.{0x0038}, .status2 = .none, },
1831 .{ .cp = 0x2079, .status = .mapped, .mapping = &.{0x0039}, .status2 = .none, },
1832 .{ .cp = 0x207A, .status = .mapped, .mapping = &.{0x002B}, .status2 = .none, },
1833 .{ .cp = 0x207B, .status = .mapped, .mapping = &.{0x2212}, .status2 = .none, },
1834 .{ .cp = 0x207C, .status = .mapped, .mapping = &.{0x003D}, .status2 = .none, },
1835 .{ .cp = 0x207D, .status = .mapped, .mapping = &.{0x0028}, .status2 = .none, },
1836 .{ .cp = 0x207E, .status = .mapped, .mapping = &.{0x0029}, .status2 = .none, },
1837 .{ .cp = 0x207F, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, },
1838 .{ .cp = 0x2080, .status = .mapped, .mapping = &.{0x0030}, .status2 = .none, },
1839 .{ .cp = 0x2081, .status = .mapped, .mapping = &.{0x0031}, .status2 = .none, },
1840 .{ .cp = 0x2082, .status = .mapped, .mapping = &.{0x0032}, .status2 = .none, },
1841 .{ .cp = 0x2083, .status = .mapped, .mapping = &.{0x0033}, .status2 = .none, },
1842 .{ .cp = 0x2084, .status = .mapped, .mapping = &.{0x0034}, .status2 = .none, },
1843 .{ .cp = 0x2085, .status = .mapped, .mapping = &.{0x0035}, .status2 = .none, },
1844 .{ .cp = 0x2086, .status = .mapped, .mapping = &.{0x0036}, .status2 = .none, },
1845 .{ .cp = 0x2087, .status = .mapped, .mapping = &.{0x0037}, .status2 = .none, },
1846 .{ .cp = 0x2088, .status = .mapped, .mapping = &.{0x0038}, .status2 = .none, },
1847 .{ .cp = 0x2089, .status = .mapped, .mapping = &.{0x0039}, .status2 = .none, },
1848 .{ .cp = 0x208A, .status = .mapped, .mapping = &.{0x002B}, .status2 = .none, },
1849 .{ .cp = 0x208B, .status = .mapped, .mapping = &.{0x2212}, .status2 = .none, },
1850 .{ .cp = 0x208C, .status = .mapped, .mapping = &.{0x003D}, .status2 = .none, },
1851 .{ .cp = 0x208D, .status = .mapped, .mapping = &.{0x0028}, .status2 = .none, },
1852 .{ .cp = 0x208E, .status = .mapped, .mapping = &.{0x0029}, .status2 = .none, },
1853 .{ .cp = 0x208F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
1854 .{ .cp = 0x2090, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, },
1855 .{ .cp = 0x2091, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, },
1856 .{ .cp = 0x2092, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, },
1857 .{ .cp = 0x2093, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, },
1858 .{ .cp = 0x2094, .status = .mapped, .mapping = &.{0x0259}, .status2 = .none, },
1859 .{ .cp = 0x2095, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, },
1860 .{ .cp = 0x2096, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, },
1861 .{ .cp = 0x2097, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, },
1862 .{ .cp = 0x2098, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, },
1863 .{ .cp = 0x2099, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, },
1864 .{ .cp = 0x209A, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, },
1865 .{ .cp = 0x209B, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, },
1866 .{ .cp = 0x209C, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, },
1867 .{ .cp = 0x20A8, .status = .mapped, .mapping = &.{0x0072,0x0073}, .status2 = .none, },
1868 .{ .cp = 0x20AB, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
1869 .{ .cp = 0x20AC, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
1870 .{ .cp = 0x20B9, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
1871 .{ .cp = 0x20BA, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
1872 .{ .cp = 0x20BE, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
1873 .{ .cp = 0x20BF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
1874 .{ .cp = 0x20C0, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
1875 .{ .cp = 0x20C1, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
1876 .{ .cp = 0x20EB, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
1877 .{ .cp = 0x20F0, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
1878 .{ .cp = 0x2100, .status = .mapped, .mapping = &.{0x0061,0x002F,0x0063}, .status2 = .none, },
1879 .{ .cp = 0x2101, .status = .mapped, .mapping = &.{0x0061,0x002F,0x0073}, .status2 = .none, },
1880 .{ .cp = 0x2102, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, },
1881 .{ .cp = 0x2103, .status = .mapped, .mapping = &.{0x00B0,0x0063}, .status2 = .none, },
1882 .{ .cp = 0x2104, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
1883 .{ .cp = 0x2105, .status = .mapped, .mapping = &.{0x0063,0x002F,0x006F}, .status2 = .none, },
1884 .{ .cp = 0x2106, .status = .mapped, .mapping = &.{0x0063,0x002F,0x0075}, .status2 = .none, },
1885 .{ .cp = 0x2107, .status = .mapped, .mapping = &.{0x025B}, .status2 = .none, },
1886 .{ .cp = 0x2108, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
1887 .{ .cp = 0x2109, .status = .mapped, .mapping = &.{0x00B0,0x0066}, .status2 = .none, },
1888 .{ .cp = 0x210A, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, },
1889 .{ .cp = 0x210F, .status = .mapped, .mapping = &.{0x0127}, .status2 = .none, },
1890 .{ .cp = 0x2114, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
1891 .{ .cp = 0x2115, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, },
1892 .{ .cp = 0x2116, .status = .mapped, .mapping = &.{0x006E,0x006F}, .status2 = .none, },
1893 .{ .cp = 0x2119, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, },
1894 .{ .cp = 0x211A, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, },
1895 .{ .cp = 0x2120, .status = .mapped, .mapping = &.{0x0073,0x006D}, .status2 = .none, },
1896 .{ .cp = 0x2121, .status = .mapped, .mapping = &.{0x0074,0x0065,0x006C}, .status2 = .none, },
1897 .{ .cp = 0x2122, .status = .mapped, .mapping = &.{0x0074,0x006D}, .status2 = .none, },
1898 .{ .cp = 0x2123, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
1899 .{ .cp = 0x2124, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, },
1900 .{ .cp = 0x2125, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
1901 .{ .cp = 0x2126, .status = .mapped, .mapping = &.{0x03C9}, .status2 = .none, },
1902 .{ .cp = 0x2127, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
1903 .{ .cp = 0x2128, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, },
1904 .{ .cp = 0x2129, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
1905 .{ .cp = 0x212A, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, },
1906 .{ .cp = 0x212B, .status = .mapped, .mapping = &.{0x00E5}, .status2 = .none, },
1907 .{ .cp = 0x212C, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, },
1908 .{ .cp = 0x212D, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, },
1909 .{ .cp = 0x212E, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
1910 .{ .cp = 0x2131, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, },
1911 .{ .cp = 0x2132, .status = .mapped, .mapping = &.{0x214E}, .status2 = .none, },
1912 .{ .cp = 0x2133, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, },
1913 .{ .cp = 0x2134, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, },
1914 .{ .cp = 0x2135, .status = .mapped, .mapping = &.{0x05D0}, .status2 = .none, },
1915 .{ .cp = 0x2136, .status = .mapped, .mapping = &.{0x05D1}, .status2 = .none, },
1916 .{ .cp = 0x2137, .status = .mapped, .mapping = &.{0x05D2}, .status2 = .none, },
1917 .{ .cp = 0x2138, .status = .mapped, .mapping = &.{0x05D3}, .status2 = .none, },
1918 .{ .cp = 0x2139, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, },
1919 .{ .cp = 0x213A, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
1920 .{ .cp = 0x213B, .status = .mapped, .mapping = &.{0x0066,0x0061,0x0078}, .status2 = .none, },
1921 .{ .cp = 0x213C, .status = .mapped, .mapping = &.{0x03C0}, .status2 = .none, },
1922 .{ .cp = 0x213F, .status = .mapped, .mapping = &.{0x03C0}, .status2 = .none, },
1923 .{ .cp = 0x2140, .status = .mapped, .mapping = &.{0x2211}, .status2 = .none, },
1924 .{ .cp = 0x2147, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, },
1925 .{ .cp = 0x2148, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, },
1926 .{ .cp = 0x2149, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, },
1927 .{ .cp = 0x214C, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
1928 .{ .cp = 0x214D, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
1929 .{ .cp = 0x214E, .status = .valid, .mapping = &.{}, .status2 = .none, },
1930 .{ .cp = 0x214F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
1931 .{ .cp = 0x2150, .status = .mapped, .mapping = &.{0x0031,0x2044,0x0037}, .status2 = .none, },
1932 .{ .cp = 0x2151, .status = .mapped, .mapping = &.{0x0031,0x2044,0x0039}, .status2 = .none, },
1933 .{ .cp = 0x2152, .status = .mapped, .mapping = &.{0x0031,0x2044,0x0031,0x0030}, .status2 = .none, },
1934 .{ .cp = 0x2153, .status = .mapped, .mapping = &.{0x0031,0x2044,0x0033}, .status2 = .none, },
1935 .{ .cp = 0x2154, .status = .mapped, .mapping = &.{0x0032,0x2044,0x0033}, .status2 = .none, },
1936 .{ .cp = 0x2155, .status = .mapped, .mapping = &.{0x0031,0x2044,0x0035}, .status2 = .none, },
1937 .{ .cp = 0x2156, .status = .mapped, .mapping = &.{0x0032,0x2044,0x0035}, .status2 = .none, },
1938 .{ .cp = 0x2157, .status = .mapped, .mapping = &.{0x0033,0x2044,0x0035}, .status2 = .none, },
1939 .{ .cp = 0x2158, .status = .mapped, .mapping = &.{0x0034,0x2044,0x0035}, .status2 = .none, },
1940 .{ .cp = 0x2159, .status = .mapped, .mapping = &.{0x0031,0x2044,0x0036}, .status2 = .none, },
1941 .{ .cp = 0x215A, .status = .mapped, .mapping = &.{0x0035,0x2044,0x0036}, .status2 = .none, },
1942 .{ .cp = 0x215B, .status = .mapped, .mapping = &.{0x0031,0x2044,0x0038}, .status2 = .none, },
1943 .{ .cp = 0x215C, .status = .mapped, .mapping = &.{0x0033,0x2044,0x0038}, .status2 = .none, },
1944 .{ .cp = 0x215D, .status = .mapped, .mapping = &.{0x0035,0x2044,0x0038}, .status2 = .none, },
1945 .{ .cp = 0x215E, .status = .mapped, .mapping = &.{0x0037,0x2044,0x0038}, .status2 = .none, },
1946 .{ .cp = 0x215F, .status = .mapped, .mapping = &.{0x0031,0x2044}, .status2 = .none, },
1947 .{ .cp = 0x2160, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, },
1948 .{ .cp = 0x2161, .status = .mapped, .mapping = &.{0x0069,0x0069}, .status2 = .none, },
1949 .{ .cp = 0x2162, .status = .mapped, .mapping = &.{0x0069,0x0069,0x0069}, .status2 = .none, },
1950 .{ .cp = 0x2163, .status = .mapped, .mapping = &.{0x0069,0x0076}, .status2 = .none, },
1951 .{ .cp = 0x2164, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, },
1952 .{ .cp = 0x2165, .status = .mapped, .mapping = &.{0x0076,0x0069}, .status2 = .none, },
1953 .{ .cp = 0x2166, .status = .mapped, .mapping = &.{0x0076,0x0069,0x0069}, .status2 = .none, },
1954 .{ .cp = 0x2167, .status = .mapped, .mapping = &.{0x0076,0x0069,0x0069,0x0069}, .status2 = .none, },
1955 .{ .cp = 0x2168, .status = .mapped, .mapping = &.{0x0069,0x0078}, .status2 = .none, },
1956 .{ .cp = 0x2169, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, },
1957 .{ .cp = 0x216A, .status = .mapped, .mapping = &.{0x0078,0x0069}, .status2 = .none, },
1958 .{ .cp = 0x216B, .status = .mapped, .mapping = &.{0x0078,0x0069,0x0069}, .status2 = .none, },
1959 .{ .cp = 0x216C, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, },
1960 .{ .cp = 0x216D, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, },
1961 .{ .cp = 0x216E, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, },
1962 .{ .cp = 0x216F, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, },
1963 .{ .cp = 0x2170, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, },
1964 .{ .cp = 0x2171, .status = .mapped, .mapping = &.{0x0069,0x0069}, .status2 = .none, },
1965 .{ .cp = 0x2172, .status = .mapped, .mapping = &.{0x0069,0x0069,0x0069}, .status2 = .none, },
1966 .{ .cp = 0x2173, .status = .mapped, .mapping = &.{0x0069,0x0076}, .status2 = .none, },
1967 .{ .cp = 0x2174, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, },
1968 .{ .cp = 0x2175, .status = .mapped, .mapping = &.{0x0076,0x0069}, .status2 = .none, },
1969 .{ .cp = 0x2176, .status = .mapped, .mapping = &.{0x0076,0x0069,0x0069}, .status2 = .none, },
1970 .{ .cp = 0x2177, .status = .mapped, .mapping = &.{0x0076,0x0069,0x0069,0x0069}, .status2 = .none, },
1971 .{ .cp = 0x2178, .status = .mapped, .mapping = &.{0x0069,0x0078}, .status2 = .none, },
1972 .{ .cp = 0x2179, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, },
1973 .{ .cp = 0x217A, .status = .mapped, .mapping = &.{0x0078,0x0069}, .status2 = .none, },
1974 .{ .cp = 0x217B, .status = .mapped, .mapping = &.{0x0078,0x0069,0x0069}, .status2 = .none, },
1975 .{ .cp = 0x217C, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, },
1976 .{ .cp = 0x217D, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, },
1977 .{ .cp = 0x217E, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, },
1978 .{ .cp = 0x217F, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, },
1979 .{ .cp = 0x2183, .status = .mapped, .mapping = &.{0x2184}, .status2 = .none, },
1980 .{ .cp = 0x2184, .status = .valid, .mapping = &.{}, .status2 = .none, },
1981 .{ .cp = 0x2189, .status = .mapped, .mapping = &.{0x0030,0x2044,0x0033}, .status2 = .none, },
1982 .{ .cp = 0x222C, .status = .mapped, .mapping = &.{0x222B,0x222B}, .status2 = .none, },
1983 .{ .cp = 0x222D, .status = .mapped, .mapping = &.{0x222B,0x222B,0x222B}, .status2 = .none, },
1984 .{ .cp = 0x222E, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
1985 .{ .cp = 0x222F, .status = .mapped, .mapping = &.{0x222E,0x222E}, .status2 = .none, },
1986 .{ .cp = 0x2230, .status = .mapped, .mapping = &.{0x222E,0x222E,0x222E}, .status2 = .none, },
1987 .{ .cp = 0x2300, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
1988 .{ .cp = 0x2301, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
1989 .{ .cp = 0x2329, .status = .mapped, .mapping = &.{0x3008}, .status2 = .none, },
1990 .{ .cp = 0x232A, .status = .mapped, .mapping = &.{0x3009}, .status2 = .none, },
1991 .{ .cp = 0x237B, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
1992 .{ .cp = 0x237C, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
1993 .{ .cp = 0x23E8, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
1994 .{ .cp = 0x23FF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
1995 .{ .cp = 0x2460, .status = .mapped, .mapping = &.{0x0031}, .status2 = .none, },
1996 .{ .cp = 0x2461, .status = .mapped, .mapping = &.{0x0032}, .status2 = .none, },
1997 .{ .cp = 0x2462, .status = .mapped, .mapping = &.{0x0033}, .status2 = .none, },
1998 .{ .cp = 0x2463, .status = .mapped, .mapping = &.{0x0034}, .status2 = .none, },
1999 .{ .cp = 0x2464, .status = .mapped, .mapping = &.{0x0035}, .status2 = .none, },
2000 .{ .cp = 0x2465, .status = .mapped, .mapping = &.{0x0036}, .status2 = .none, },
2001 .{ .cp = 0x2466, .status = .mapped, .mapping = &.{0x0037}, .status2 = .none, },
2002 .{ .cp = 0x2467, .status = .mapped, .mapping = &.{0x0038}, .status2 = .none, },
2003 .{ .cp = 0x2468, .status = .mapped, .mapping = &.{0x0039}, .status2 = .none, },
2004 .{ .cp = 0x2469, .status = .mapped, .mapping = &.{0x0031,0x0030}, .status2 = .none, },
2005 .{ .cp = 0x246A, .status = .mapped, .mapping = &.{0x0031,0x0031}, .status2 = .none, },
2006 .{ .cp = 0x246B, .status = .mapped, .mapping = &.{0x0031,0x0032}, .status2 = .none, },
2007 .{ .cp = 0x246C, .status = .mapped, .mapping = &.{0x0031,0x0033}, .status2 = .none, },
2008 .{ .cp = 0x246D, .status = .mapped, .mapping = &.{0x0031,0x0034}, .status2 = .none, },
2009 .{ .cp = 0x246E, .status = .mapped, .mapping = &.{0x0031,0x0035}, .status2 = .none, },
2010 .{ .cp = 0x246F, .status = .mapped, .mapping = &.{0x0031,0x0036}, .status2 = .none, },
2011 .{ .cp = 0x2470, .status = .mapped, .mapping = &.{0x0031,0x0037}, .status2 = .none, },
2012 .{ .cp = 0x2471, .status = .mapped, .mapping = &.{0x0031,0x0038}, .status2 = .none, },
2013 .{ .cp = 0x2472, .status = .mapped, .mapping = &.{0x0031,0x0039}, .status2 = .none, },
2014 .{ .cp = 0x2473, .status = .mapped, .mapping = &.{0x0032,0x0030}, .status2 = .none, },
2015 .{ .cp = 0x2474, .status = .mapped, .mapping = &.{0x0028,0x0031,0x0029}, .status2 = .none, },
2016 .{ .cp = 0x2475, .status = .mapped, .mapping = &.{0x0028,0x0032,0x0029}, .status2 = .none, },
2017 .{ .cp = 0x2476, .status = .mapped, .mapping = &.{0x0028,0x0033,0x0029}, .status2 = .none, },
2018 .{ .cp = 0x2477, .status = .mapped, .mapping = &.{0x0028,0x0034,0x0029}, .status2 = .none, },
2019 .{ .cp = 0x2478, .status = .mapped, .mapping = &.{0x0028,0x0035,0x0029}, .status2 = .none, },
2020 .{ .cp = 0x2479, .status = .mapped, .mapping = &.{0x0028,0x0036,0x0029}, .status2 = .none, },
2021 .{ .cp = 0x247A, .status = .mapped, .mapping = &.{0x0028,0x0037,0x0029}, .status2 = .none, },
2022 .{ .cp = 0x247B, .status = .mapped, .mapping = &.{0x0028,0x0038,0x0029}, .status2 = .none, },
2023 .{ .cp = 0x247C, .status = .mapped, .mapping = &.{0x0028,0x0039,0x0029}, .status2 = .none, },
2024 .{ .cp = 0x247D, .status = .mapped, .mapping = &.{0x0028,0x0031,0x0030,0x0029}, .status2 = .none, },
2025 .{ .cp = 0x247E, .status = .mapped, .mapping = &.{0x0028,0x0031,0x0031,0x0029}, .status2 = .none, },
2026 .{ .cp = 0x247F, .status = .mapped, .mapping = &.{0x0028,0x0031,0x0032,0x0029}, .status2 = .none, },
2027 .{ .cp = 0x2480, .status = .mapped, .mapping = &.{0x0028,0x0031,0x0033,0x0029}, .status2 = .none, },
2028 .{ .cp = 0x2481, .status = .mapped, .mapping = &.{0x0028,0x0031,0x0034,0x0029}, .status2 = .none, },
2029 .{ .cp = 0x2482, .status = .mapped, .mapping = &.{0x0028,0x0031,0x0035,0x0029}, .status2 = .none, },
2030 .{ .cp = 0x2483, .status = .mapped, .mapping = &.{0x0028,0x0031,0x0036,0x0029}, .status2 = .none, },
2031 .{ .cp = 0x2484, .status = .mapped, .mapping = &.{0x0028,0x0031,0x0037,0x0029}, .status2 = .none, },
2032 .{ .cp = 0x2485, .status = .mapped, .mapping = &.{0x0028,0x0031,0x0038,0x0029}, .status2 = .none, },
2033 .{ .cp = 0x2486, .status = .mapped, .mapping = &.{0x0028,0x0031,0x0039,0x0029}, .status2 = .none, },
2034 .{ .cp = 0x2487, .status = .mapped, .mapping = &.{0x0028,0x0032,0x0030,0x0029}, .status2 = .none, },
2035 .{ .cp = 0x249C, .status = .mapped, .mapping = &.{0x0028,0x0061,0x0029}, .status2 = .none, },
2036 .{ .cp = 0x249D, .status = .mapped, .mapping = &.{0x0028,0x0062,0x0029}, .status2 = .none, },
2037 .{ .cp = 0x249E, .status = .mapped, .mapping = &.{0x0028,0x0063,0x0029}, .status2 = .none, },
2038 .{ .cp = 0x249F, .status = .mapped, .mapping = &.{0x0028,0x0064,0x0029}, .status2 = .none, },
2039 .{ .cp = 0x24A0, .status = .mapped, .mapping = &.{0x0028,0x0065,0x0029}, .status2 = .none, },
2040 .{ .cp = 0x24A1, .status = .mapped, .mapping = &.{0x0028,0x0066,0x0029}, .status2 = .none, },
2041 .{ .cp = 0x24A2, .status = .mapped, .mapping = &.{0x0028,0x0067,0x0029}, .status2 = .none, },
2042 .{ .cp = 0x24A3, .status = .mapped, .mapping = &.{0x0028,0x0068,0x0029}, .status2 = .none, },
2043 .{ .cp = 0x24A4, .status = .mapped, .mapping = &.{0x0028,0x0069,0x0029}, .status2 = .none, },
2044 .{ .cp = 0x24A5, .status = .mapped, .mapping = &.{0x0028,0x006A,0x0029}, .status2 = .none, },
2045 .{ .cp = 0x24A6, .status = .mapped, .mapping = &.{0x0028,0x006B,0x0029}, .status2 = .none, },
2046 .{ .cp = 0x24A7, .status = .mapped, .mapping = &.{0x0028,0x006C,0x0029}, .status2 = .none, },
2047 .{ .cp = 0x24A8, .status = .mapped, .mapping = &.{0x0028,0x006D,0x0029}, .status2 = .none, },
2048 .{ .cp = 0x24A9, .status = .mapped, .mapping = &.{0x0028,0x006E,0x0029}, .status2 = .none, },
2049 .{ .cp = 0x24AA, .status = .mapped, .mapping = &.{0x0028,0x006F,0x0029}, .status2 = .none, },
2050 .{ .cp = 0x24AB, .status = .mapped, .mapping = &.{0x0028,0x0070,0x0029}, .status2 = .none, },
2051 .{ .cp = 0x24AC, .status = .mapped, .mapping = &.{0x0028,0x0071,0x0029}, .status2 = .none, },
2052 .{ .cp = 0x24AD, .status = .mapped, .mapping = &.{0x0028,0x0072,0x0029}, .status2 = .none, },
2053 .{ .cp = 0x24AE, .status = .mapped, .mapping = &.{0x0028,0x0073,0x0029}, .status2 = .none, },
2054 .{ .cp = 0x24AF, .status = .mapped, .mapping = &.{0x0028,0x0074,0x0029}, .status2 = .none, },
2055 .{ .cp = 0x24B0, .status = .mapped, .mapping = &.{0x0028,0x0075,0x0029}, .status2 = .none, },
2056 .{ .cp = 0x24B1, .status = .mapped, .mapping = &.{0x0028,0x0076,0x0029}, .status2 = .none, },
2057 .{ .cp = 0x24B2, .status = .mapped, .mapping = &.{0x0028,0x0077,0x0029}, .status2 = .none, },
2058 .{ .cp = 0x24B3, .status = .mapped, .mapping = &.{0x0028,0x0078,0x0029}, .status2 = .none, },
2059 .{ .cp = 0x24B4, .status = .mapped, .mapping = &.{0x0028,0x0079,0x0029}, .status2 = .none, },
2060 .{ .cp = 0x24B5, .status = .mapped, .mapping = &.{0x0028,0x007A,0x0029}, .status2 = .none, },
2061 .{ .cp = 0x24B6, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, },
2062 .{ .cp = 0x24B7, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, },
2063 .{ .cp = 0x24B8, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, },
2064 .{ .cp = 0x24B9, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, },
2065 .{ .cp = 0x24BA, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, },
2066 .{ .cp = 0x24BB, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, },
2067 .{ .cp = 0x24BC, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, },
2068 .{ .cp = 0x24BD, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, },
2069 .{ .cp = 0x24BE, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, },
2070 .{ .cp = 0x24BF, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, },
2071 .{ .cp = 0x24C0, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, },
2072 .{ .cp = 0x24C1, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, },
2073 .{ .cp = 0x24C2, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, },
2074 .{ .cp = 0x24C3, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, },
2075 .{ .cp = 0x24C4, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, },
2076 .{ .cp = 0x24C5, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, },
2077 .{ .cp = 0x24C6, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, },
2078 .{ .cp = 0x24C7, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, },
2079 .{ .cp = 0x24C8, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, },
2080 .{ .cp = 0x24C9, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, },
2081 .{ .cp = 0x24CA, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, },
2082 .{ .cp = 0x24CB, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, },
2083 .{ .cp = 0x24CC, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, },
2084 .{ .cp = 0x24CD, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, },
2085 .{ .cp = 0x24CE, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, },
2086 .{ .cp = 0x24CF, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, },
2087 .{ .cp = 0x24D0, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, },
2088 .{ .cp = 0x24D1, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, },
2089 .{ .cp = 0x24D2, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, },
2090 .{ .cp = 0x24D3, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, },
2091 .{ .cp = 0x24D4, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, },
2092 .{ .cp = 0x24D5, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, },
2093 .{ .cp = 0x24D6, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, },
2094 .{ .cp = 0x24D7, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, },
2095 .{ .cp = 0x24D8, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, },
2096 .{ .cp = 0x24D9, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, },
2097 .{ .cp = 0x24DA, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, },
2098 .{ .cp = 0x24DB, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, },
2099 .{ .cp = 0x24DC, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, },
2100 .{ .cp = 0x24DD, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, },
2101 .{ .cp = 0x24DE, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, },
2102 .{ .cp = 0x24DF, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, },
2103 .{ .cp = 0x24E0, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, },
2104 .{ .cp = 0x24E1, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, },
2105 .{ .cp = 0x24E2, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, },
2106 .{ .cp = 0x24E3, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, },
2107 .{ .cp = 0x24E4, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, },
2108 .{ .cp = 0x24E5, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, },
2109 .{ .cp = 0x24E6, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, },
2110 .{ .cp = 0x24E7, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, },
2111 .{ .cp = 0x24E8, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, },
2112 .{ .cp = 0x24E9, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, },
2113 .{ .cp = 0x24EA, .status = .mapped, .mapping = &.{0x0030}, .status2 = .none, },
2114 .{ .cp = 0x24FF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
2115 .{ .cp = 0x2618, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
2116 .{ .cp = 0x2619, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
2117 .{ .cp = 0x269D, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
2118 .{ .cp = 0x26B2, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
2119 .{ .cp = 0x26CE, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
2120 .{ .cp = 0x26E2, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
2121 .{ .cp = 0x26E3, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
2122 .{ .cp = 0x2700, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
2123 .{ .cp = 0x2705, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
2124 .{ .cp = 0x2728, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
2125 .{ .cp = 0x274C, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
2126 .{ .cp = 0x274D, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
2127 .{ .cp = 0x274E, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
2128 .{ .cp = 0x2756, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
2129 .{ .cp = 0x2757, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
2130 .{ .cp = 0x27B0, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
2131 .{ .cp = 0x27BF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
2132 .{ .cp = 0x27CB, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
2133 .{ .cp = 0x27CC, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
2134 .{ .cp = 0x27CD, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
2135 .{ .cp = 0x2A0C, .status = .mapped, .mapping = &.{0x222B,0x222B,0x222B,0x222B}, .status2 = .none, },
2136 .{ .cp = 0x2A74, .status = .mapped, .mapping = &.{0x003A,0x003A,0x003D}, .status2 = .none, },
2137 .{ .cp = 0x2A75, .status = .mapped, .mapping = &.{0x003D,0x003D}, .status2 = .none, },
2138 .{ .cp = 0x2A76, .status = .mapped, .mapping = &.{0x003D,0x003D,0x003D}, .status2 = .none, },
2139 .{ .cp = 0x2ADC, .status = .mapped, .mapping = &.{0x2ADD,0x0338}, .status2 = .none, },
2140 .{ .cp = 0x2B96, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
2141 .{ .cp = 0x2B97, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
2142 .{ .cp = 0x2BC9, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
2143 .{ .cp = 0x2BD2, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
2144 .{ .cp = 0x2BFF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
2145 .{ .cp = 0x2C00, .status = .mapped, .mapping = &.{0x2C30}, .status2 = .none, },
2146 .{ .cp = 0x2C01, .status = .mapped, .mapping = &.{0x2C31}, .status2 = .none, },
2147 .{ .cp = 0x2C02, .status = .mapped, .mapping = &.{0x2C32}, .status2 = .none, },
2148 .{ .cp = 0x2C03, .status = .mapped, .mapping = &.{0x2C33}, .status2 = .none, },
2149 .{ .cp = 0x2C04, .status = .mapped, .mapping = &.{0x2C34}, .status2 = .none, },
2150 .{ .cp = 0x2C05, .status = .mapped, .mapping = &.{0x2C35}, .status2 = .none, },
2151 .{ .cp = 0x2C06, .status = .mapped, .mapping = &.{0x2C36}, .status2 = .none, },
2152 .{ .cp = 0x2C07, .status = .mapped, .mapping = &.{0x2C37}, .status2 = .none, },
2153 .{ .cp = 0x2C08, .status = .mapped, .mapping = &.{0x2C38}, .status2 = .none, },
2154 .{ .cp = 0x2C09, .status = .mapped, .mapping = &.{0x2C39}, .status2 = .none, },
2155 .{ .cp = 0x2C0A, .status = .mapped, .mapping = &.{0x2C3A}, .status2 = .none, },
2156 .{ .cp = 0x2C0B, .status = .mapped, .mapping = &.{0x2C3B}, .status2 = .none, },
2157 .{ .cp = 0x2C0C, .status = .mapped, .mapping = &.{0x2C3C}, .status2 = .none, },
2158 .{ .cp = 0x2C0D, .status = .mapped, .mapping = &.{0x2C3D}, .status2 = .none, },
2159 .{ .cp = 0x2C0E, .status = .mapped, .mapping = &.{0x2C3E}, .status2 = .none, },
2160 .{ .cp = 0x2C0F, .status = .mapped, .mapping = &.{0x2C3F}, .status2 = .none, },
2161 .{ .cp = 0x2C10, .status = .mapped, .mapping = &.{0x2C40}, .status2 = .none, },
2162 .{ .cp = 0x2C11, .status = .mapped, .mapping = &.{0x2C41}, .status2 = .none, },
2163 .{ .cp = 0x2C12, .status = .mapped, .mapping = &.{0x2C42}, .status2 = .none, },
2164 .{ .cp = 0x2C13, .status = .mapped, .mapping = &.{0x2C43}, .status2 = .none, },
2165 .{ .cp = 0x2C14, .status = .mapped, .mapping = &.{0x2C44}, .status2 = .none, },
2166 .{ .cp = 0x2C15, .status = .mapped, .mapping = &.{0x2C45}, .status2 = .none, },
2167 .{ .cp = 0x2C16, .status = .mapped, .mapping = &.{0x2C46}, .status2 = .none, },
2168 .{ .cp = 0x2C17, .status = .mapped, .mapping = &.{0x2C47}, .status2 = .none, },
2169 .{ .cp = 0x2C18, .status = .mapped, .mapping = &.{0x2C48}, .status2 = .none, },
2170 .{ .cp = 0x2C19, .status = .mapped, .mapping = &.{0x2C49}, .status2 = .none, },
2171 .{ .cp = 0x2C1A, .status = .mapped, .mapping = &.{0x2C4A}, .status2 = .none, },
2172 .{ .cp = 0x2C1B, .status = .mapped, .mapping = &.{0x2C4B}, .status2 = .none, },
2173 .{ .cp = 0x2C1C, .status = .mapped, .mapping = &.{0x2C4C}, .status2 = .none, },
2174 .{ .cp = 0x2C1D, .status = .mapped, .mapping = &.{0x2C4D}, .status2 = .none, },
2175 .{ .cp = 0x2C1E, .status = .mapped, .mapping = &.{0x2C4E}, .status2 = .none, },
2176 .{ .cp = 0x2C1F, .status = .mapped, .mapping = &.{0x2C4F}, .status2 = .none, },
2177 .{ .cp = 0x2C20, .status = .mapped, .mapping = &.{0x2C50}, .status2 = .none, },
2178 .{ .cp = 0x2C21, .status = .mapped, .mapping = &.{0x2C51}, .status2 = .none, },
2179 .{ .cp = 0x2C22, .status = .mapped, .mapping = &.{0x2C52}, .status2 = .none, },
2180 .{ .cp = 0x2C23, .status = .mapped, .mapping = &.{0x2C53}, .status2 = .none, },
2181 .{ .cp = 0x2C24, .status = .mapped, .mapping = &.{0x2C54}, .status2 = .none, },
2182 .{ .cp = 0x2C25, .status = .mapped, .mapping = &.{0x2C55}, .status2 = .none, },
2183 .{ .cp = 0x2C26, .status = .mapped, .mapping = &.{0x2C56}, .status2 = .none, },
2184 .{ .cp = 0x2C27, .status = .mapped, .mapping = &.{0x2C57}, .status2 = .none, },
2185 .{ .cp = 0x2C28, .status = .mapped, .mapping = &.{0x2C58}, .status2 = .none, },
2186 .{ .cp = 0x2C29, .status = .mapped, .mapping = &.{0x2C59}, .status2 = .none, },
2187 .{ .cp = 0x2C2A, .status = .mapped, .mapping = &.{0x2C5A}, .status2 = .none, },
2188 .{ .cp = 0x2C2B, .status = .mapped, .mapping = &.{0x2C5B}, .status2 = .none, },
2189 .{ .cp = 0x2C2C, .status = .mapped, .mapping = &.{0x2C5C}, .status2 = .none, },
2190 .{ .cp = 0x2C2D, .status = .mapped, .mapping = &.{0x2C5D}, .status2 = .none, },
2191 .{ .cp = 0x2C2E, .status = .mapped, .mapping = &.{0x2C5E}, .status2 = .none, },
2192 .{ .cp = 0x2C2F, .status = .mapped, .mapping = &.{0x2C5F}, .status2 = .none, },
2193 .{ .cp = 0x2C5F, .status = .valid, .mapping = &.{}, .status2 = .none, },
2194 .{ .cp = 0x2C60, .status = .mapped, .mapping = &.{0x2C61}, .status2 = .none, },
2195 .{ .cp = 0x2C61, .status = .valid, .mapping = &.{}, .status2 = .none, },
2196 .{ .cp = 0x2C62, .status = .mapped, .mapping = &.{0x026B}, .status2 = .none, },
2197 .{ .cp = 0x2C63, .status = .mapped, .mapping = &.{0x1D7D}, .status2 = .none, },
2198 .{ .cp = 0x2C64, .status = .mapped, .mapping = &.{0x027D}, .status2 = .none, },
2199 .{ .cp = 0x2C67, .status = .mapped, .mapping = &.{0x2C68}, .status2 = .none, },
2200 .{ .cp = 0x2C68, .status = .valid, .mapping = &.{}, .status2 = .none, },
2201 .{ .cp = 0x2C69, .status = .mapped, .mapping = &.{0x2C6A}, .status2 = .none, },
2202 .{ .cp = 0x2C6A, .status = .valid, .mapping = &.{}, .status2 = .none, },
2203 .{ .cp = 0x2C6B, .status = .mapped, .mapping = &.{0x2C6C}, .status2 = .none, },
2204 .{ .cp = 0x2C6C, .status = .valid, .mapping = &.{}, .status2 = .none, },
2205 .{ .cp = 0x2C6D, .status = .mapped, .mapping = &.{0x0251}, .status2 = .none, },
2206 .{ .cp = 0x2C6E, .status = .mapped, .mapping = &.{0x0271}, .status2 = .none, },
2207 .{ .cp = 0x2C6F, .status = .mapped, .mapping = &.{0x0250}, .status2 = .none, },
2208 .{ .cp = 0x2C70, .status = .mapped, .mapping = &.{0x0252}, .status2 = .none, },
2209 .{ .cp = 0x2C71, .status = .valid, .mapping = &.{}, .status2 = .none, },
2210 .{ .cp = 0x2C72, .status = .mapped, .mapping = &.{0x2C73}, .status2 = .none, },
2211 .{ .cp = 0x2C73, .status = .valid, .mapping = &.{}, .status2 = .none, },
2212 .{ .cp = 0x2C74, .status = .valid, .mapping = &.{}, .status2 = .none, },
2213 .{ .cp = 0x2C75, .status = .mapped, .mapping = &.{0x2C76}, .status2 = .none, },
2214 .{ .cp = 0x2C7C, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, },
2215 .{ .cp = 0x2C7D, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, },
2216 .{ .cp = 0x2C7E, .status = .mapped, .mapping = &.{0x023F}, .status2 = .none, },
2217 .{ .cp = 0x2C7F, .status = .mapped, .mapping = &.{0x0240}, .status2 = .none, },
2218 .{ .cp = 0x2C80, .status = .mapped, .mapping = &.{0x2C81}, .status2 = .none, },
2219 .{ .cp = 0x2C81, .status = .valid, .mapping = &.{}, .status2 = .none, },
2220 .{ .cp = 0x2C82, .status = .mapped, .mapping = &.{0x2C83}, .status2 = .none, },
2221 .{ .cp = 0x2C83, .status = .valid, .mapping = &.{}, .status2 = .none, },
2222 .{ .cp = 0x2C84, .status = .mapped, .mapping = &.{0x2C85}, .status2 = .none, },
2223 .{ .cp = 0x2C85, .status = .valid, .mapping = &.{}, .status2 = .none, },
2224 .{ .cp = 0x2C86, .status = .mapped, .mapping = &.{0x2C87}, .status2 = .none, },
2225 .{ .cp = 0x2C87, .status = .valid, .mapping = &.{}, .status2 = .none, },
2226 .{ .cp = 0x2C88, .status = .mapped, .mapping = &.{0x2C89}, .status2 = .none, },
2227 .{ .cp = 0x2C89, .status = .valid, .mapping = &.{}, .status2 = .none, },
2228 .{ .cp = 0x2C8A, .status = .mapped, .mapping = &.{0x2C8B}, .status2 = .none, },
2229 .{ .cp = 0x2C8B, .status = .valid, .mapping = &.{}, .status2 = .none, },
2230 .{ .cp = 0x2C8C, .status = .mapped, .mapping = &.{0x2C8D}, .status2 = .none, },
2231 .{ .cp = 0x2C8D, .status = .valid, .mapping = &.{}, .status2 = .none, },
2232 .{ .cp = 0x2C8E, .status = .mapped, .mapping = &.{0x2C8F}, .status2 = .none, },
2233 .{ .cp = 0x2C8F, .status = .valid, .mapping = &.{}, .status2 = .none, },
2234 .{ .cp = 0x2C90, .status = .mapped, .mapping = &.{0x2C91}, .status2 = .none, },
2235 .{ .cp = 0x2C91, .status = .valid, .mapping = &.{}, .status2 = .none, },
2236 .{ .cp = 0x2C92, .status = .mapped, .mapping = &.{0x2C93}, .status2 = .none, },
2237 .{ .cp = 0x2C93, .status = .valid, .mapping = &.{}, .status2 = .none, },
2238 .{ .cp = 0x2C94, .status = .mapped, .mapping = &.{0x2C95}, .status2 = .none, },
2239 .{ .cp = 0x2C95, .status = .valid, .mapping = &.{}, .status2 = .none, },
2240 .{ .cp = 0x2C96, .status = .mapped, .mapping = &.{0x2C97}, .status2 = .none, },
2241 .{ .cp = 0x2C97, .status = .valid, .mapping = &.{}, .status2 = .none, },
2242 .{ .cp = 0x2C98, .status = .mapped, .mapping = &.{0x2C99}, .status2 = .none, },
2243 .{ .cp = 0x2C99, .status = .valid, .mapping = &.{}, .status2 = .none, },
2244 .{ .cp = 0x2C9A, .status = .mapped, .mapping = &.{0x2C9B}, .status2 = .none, },
2245 .{ .cp = 0x2C9B, .status = .valid, .mapping = &.{}, .status2 = .none, },
2246 .{ .cp = 0x2C9C, .status = .mapped, .mapping = &.{0x2C9D}, .status2 = .none, },
2247 .{ .cp = 0x2C9D, .status = .valid, .mapping = &.{}, .status2 = .none, },
2248 .{ .cp = 0x2C9E, .status = .mapped, .mapping = &.{0x2C9F}, .status2 = .none, },
2249 .{ .cp = 0x2C9F, .status = .valid, .mapping = &.{}, .status2 = .none, },
2250 .{ .cp = 0x2CA0, .status = .mapped, .mapping = &.{0x2CA1}, .status2 = .none, },
2251 .{ .cp = 0x2CA1, .status = .valid, .mapping = &.{}, .status2 = .none, },
2252 .{ .cp = 0x2CA2, .status = .mapped, .mapping = &.{0x2CA3}, .status2 = .none, },
2253 .{ .cp = 0x2CA3, .status = .valid, .mapping = &.{}, .status2 = .none, },
2254 .{ .cp = 0x2CA4, .status = .mapped, .mapping = &.{0x2CA5}, .status2 = .none, },
2255 .{ .cp = 0x2CA5, .status = .valid, .mapping = &.{}, .status2 = .none, },
2256 .{ .cp = 0x2CA6, .status = .mapped, .mapping = &.{0x2CA7}, .status2 = .none, },
2257 .{ .cp = 0x2CA7, .status = .valid, .mapping = &.{}, .status2 = .none, },
2258 .{ .cp = 0x2CA8, .status = .mapped, .mapping = &.{0x2CA9}, .status2 = .none, },
2259 .{ .cp = 0x2CA9, .status = .valid, .mapping = &.{}, .status2 = .none, },
2260 .{ .cp = 0x2CAA, .status = .mapped, .mapping = &.{0x2CAB}, .status2 = .none, },
2261 .{ .cp = 0x2CAB, .status = .valid, .mapping = &.{}, .status2 = .none, },
2262 .{ .cp = 0x2CAC, .status = .mapped, .mapping = &.{0x2CAD}, .status2 = .none, },
2263 .{ .cp = 0x2CAD, .status = .valid, .mapping = &.{}, .status2 = .none, },
2264 .{ .cp = 0x2CAE, .status = .mapped, .mapping = &.{0x2CAF}, .status2 = .none, },
2265 .{ .cp = 0x2CAF, .status = .valid, .mapping = &.{}, .status2 = .none, },
2266 .{ .cp = 0x2CB0, .status = .mapped, .mapping = &.{0x2CB1}, .status2 = .none, },
2267 .{ .cp = 0x2CB1, .status = .valid, .mapping = &.{}, .status2 = .none, },
2268 .{ .cp = 0x2CB2, .status = .mapped, .mapping = &.{0x2CB3}, .status2 = .none, },
2269 .{ .cp = 0x2CB3, .status = .valid, .mapping = &.{}, .status2 = .none, },
2270 .{ .cp = 0x2CB4, .status = .mapped, .mapping = &.{0x2CB5}, .status2 = .none, },
2271 .{ .cp = 0x2CB5, .status = .valid, .mapping = &.{}, .status2 = .none, },
2272 .{ .cp = 0x2CB6, .status = .mapped, .mapping = &.{0x2CB7}, .status2 = .none, },
2273 .{ .cp = 0x2CB7, .status = .valid, .mapping = &.{}, .status2 = .none, },
2274 .{ .cp = 0x2CB8, .status = .mapped, .mapping = &.{0x2CB9}, .status2 = .none, },
2275 .{ .cp = 0x2CB9, .status = .valid, .mapping = &.{}, .status2 = .none, },
2276 .{ .cp = 0x2CBA, .status = .mapped, .mapping = &.{0x2CBB}, .status2 = .none, },
2277 .{ .cp = 0x2CBB, .status = .valid, .mapping = &.{}, .status2 = .none, },
2278 .{ .cp = 0x2CBC, .status = .mapped, .mapping = &.{0x2CBD}, .status2 = .none, },
2279 .{ .cp = 0x2CBD, .status = .valid, .mapping = &.{}, .status2 = .none, },
2280 .{ .cp = 0x2CBE, .status = .mapped, .mapping = &.{0x2CBF}, .status2 = .none, },
2281 .{ .cp = 0x2CBF, .status = .valid, .mapping = &.{}, .status2 = .none, },
2282 .{ .cp = 0x2CC0, .status = .mapped, .mapping = &.{0x2CC1}, .status2 = .none, },
2283 .{ .cp = 0x2CC1, .status = .valid, .mapping = &.{}, .status2 = .none, },
2284 .{ .cp = 0x2CC2, .status = .mapped, .mapping = &.{0x2CC3}, .status2 = .none, },
2285 .{ .cp = 0x2CC3, .status = .valid, .mapping = &.{}, .status2 = .none, },
2286 .{ .cp = 0x2CC4, .status = .mapped, .mapping = &.{0x2CC5}, .status2 = .none, },
2287 .{ .cp = 0x2CC5, .status = .valid, .mapping = &.{}, .status2 = .none, },
2288 .{ .cp = 0x2CC6, .status = .mapped, .mapping = &.{0x2CC7}, .status2 = .none, },
2289 .{ .cp = 0x2CC7, .status = .valid, .mapping = &.{}, .status2 = .none, },
2290 .{ .cp = 0x2CC8, .status = .mapped, .mapping = &.{0x2CC9}, .status2 = .none, },
2291 .{ .cp = 0x2CC9, .status = .valid, .mapping = &.{}, .status2 = .none, },
2292 .{ .cp = 0x2CCA, .status = .mapped, .mapping = &.{0x2CCB}, .status2 = .none, },
2293 .{ .cp = 0x2CCB, .status = .valid, .mapping = &.{}, .status2 = .none, },
2294 .{ .cp = 0x2CCC, .status = .mapped, .mapping = &.{0x2CCD}, .status2 = .none, },
2295 .{ .cp = 0x2CCD, .status = .valid, .mapping = &.{}, .status2 = .none, },
2296 .{ .cp = 0x2CCE, .status = .mapped, .mapping = &.{0x2CCF}, .status2 = .none, },
2297 .{ .cp = 0x2CCF, .status = .valid, .mapping = &.{}, .status2 = .none, },
2298 .{ .cp = 0x2CD0, .status = .mapped, .mapping = &.{0x2CD1}, .status2 = .none, },
2299 .{ .cp = 0x2CD1, .status = .valid, .mapping = &.{}, .status2 = .none, },
2300 .{ .cp = 0x2CD2, .status = .mapped, .mapping = &.{0x2CD3}, .status2 = .none, },
2301 .{ .cp = 0x2CD3, .status = .valid, .mapping = &.{}, .status2 = .none, },
2302 .{ .cp = 0x2CD4, .status = .mapped, .mapping = &.{0x2CD5}, .status2 = .none, },
2303 .{ .cp = 0x2CD5, .status = .valid, .mapping = &.{}, .status2 = .none, },
2304 .{ .cp = 0x2CD6, .status = .mapped, .mapping = &.{0x2CD7}, .status2 = .none, },
2305 .{ .cp = 0x2CD7, .status = .valid, .mapping = &.{}, .status2 = .none, },
2306 .{ .cp = 0x2CD8, .status = .mapped, .mapping = &.{0x2CD9}, .status2 = .none, },
2307 .{ .cp = 0x2CD9, .status = .valid, .mapping = &.{}, .status2 = .none, },
2308 .{ .cp = 0x2CDA, .status = .mapped, .mapping = &.{0x2CDB}, .status2 = .none, },
2309 .{ .cp = 0x2CDB, .status = .valid, .mapping = &.{}, .status2 = .none, },
2310 .{ .cp = 0x2CDC, .status = .mapped, .mapping = &.{0x2CDD}, .status2 = .none, },
2311 .{ .cp = 0x2CDD, .status = .valid, .mapping = &.{}, .status2 = .none, },
2312 .{ .cp = 0x2CDE, .status = .mapped, .mapping = &.{0x2CDF}, .status2 = .none, },
2313 .{ .cp = 0x2CDF, .status = .valid, .mapping = &.{}, .status2 = .none, },
2314 .{ .cp = 0x2CE0, .status = .mapped, .mapping = &.{0x2CE1}, .status2 = .none, },
2315 .{ .cp = 0x2CE1, .status = .valid, .mapping = &.{}, .status2 = .none, },
2316 .{ .cp = 0x2CE2, .status = .mapped, .mapping = &.{0x2CE3}, .status2 = .none, },
2317 .{ .cp = 0x2CEB, .status = .mapped, .mapping = &.{0x2CEC}, .status2 = .none, },
2318 .{ .cp = 0x2CEC, .status = .valid, .mapping = &.{}, .status2 = .none, },
2319 .{ .cp = 0x2CED, .status = .mapped, .mapping = &.{0x2CEE}, .status2 = .none, },
2320 .{ .cp = 0x2CF2, .status = .mapped, .mapping = &.{0x2CF3}, .status2 = .none, },
2321 .{ .cp = 0x2CF3, .status = .valid, .mapping = &.{}, .status2 = .none, },
2322 .{ .cp = 0x2D26, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
2323 .{ .cp = 0x2D27, .status = .valid, .mapping = &.{}, .status2 = .none, },
2324 .{ .cp = 0x2D2D, .status = .valid, .mapping = &.{}, .status2 = .none, },
2325 .{ .cp = 0x2D6F, .status = .mapped, .mapping = &.{0x2D61}, .status2 = .none, },
2326 .{ .cp = 0x2D70, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
2327 .{ .cp = 0x2D7F, .status = .valid, .mapping = &.{}, .status2 = .none, },
2328 .{ .cp = 0x2DA7, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
2329 .{ .cp = 0x2DAF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
2330 .{ .cp = 0x2DB7, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
2331 .{ .cp = 0x2DBF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
2332 .{ .cp = 0x2DC7, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
2333 .{ .cp = 0x2DCF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
2334 .{ .cp = 0x2DD7, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
2335 .{ .cp = 0x2DDF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
2336 .{ .cp = 0x2E2F, .status = .valid, .mapping = &.{}, .status2 = .none, },
2337 .{ .cp = 0x2E30, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
2338 .{ .cp = 0x2E31, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
2339 .{ .cp = 0x2E4F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
2340 .{ .cp = 0x2E9A, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
2341 .{ .cp = 0x2E9F, .status = .mapped, .mapping = &.{0x6BCD}, .status2 = .none, },
2342 .{ .cp = 0x2EF3, .status = .mapped, .mapping = &.{0x9F9F}, .status2 = .none, },
2343 .{ .cp = 0x2F00, .status = .mapped, .mapping = &.{0x4E00}, .status2 = .none, },
2344 .{ .cp = 0x2F01, .status = .mapped, .mapping = &.{0x4E28}, .status2 = .none, },
2345 .{ .cp = 0x2F02, .status = .mapped, .mapping = &.{0x4E36}, .status2 = .none, },
2346 .{ .cp = 0x2F03, .status = .mapped, .mapping = &.{0x4E3F}, .status2 = .none, },
2347 .{ .cp = 0x2F04, .status = .mapped, .mapping = &.{0x4E59}, .status2 = .none, },
2348 .{ .cp = 0x2F05, .status = .mapped, .mapping = &.{0x4E85}, .status2 = .none, },
2349 .{ .cp = 0x2F06, .status = .mapped, .mapping = &.{0x4E8C}, .status2 = .none, },
2350 .{ .cp = 0x2F07, .status = .mapped, .mapping = &.{0x4EA0}, .status2 = .none, },
2351 .{ .cp = 0x2F08, .status = .mapped, .mapping = &.{0x4EBA}, .status2 = .none, },
2352 .{ .cp = 0x2F09, .status = .mapped, .mapping = &.{0x513F}, .status2 = .none, },
2353 .{ .cp = 0x2F0A, .status = .mapped, .mapping = &.{0x5165}, .status2 = .none, },
2354 .{ .cp = 0x2F0B, .status = .mapped, .mapping = &.{0x516B}, .status2 = .none, },
2355 .{ .cp = 0x2F0C, .status = .mapped, .mapping = &.{0x5182}, .status2 = .none, },
2356 .{ .cp = 0x2F0D, .status = .mapped, .mapping = &.{0x5196}, .status2 = .none, },
2357 .{ .cp = 0x2F0E, .status = .mapped, .mapping = &.{0x51AB}, .status2 = .none, },
2358 .{ .cp = 0x2F0F, .status = .mapped, .mapping = &.{0x51E0}, .status2 = .none, },
2359 .{ .cp = 0x2F10, .status = .mapped, .mapping = &.{0x51F5}, .status2 = .none, },
2360 .{ .cp = 0x2F11, .status = .mapped, .mapping = &.{0x5200}, .status2 = .none, },
2361 .{ .cp = 0x2F12, .status = .mapped, .mapping = &.{0x529B}, .status2 = .none, },
2362 .{ .cp = 0x2F13, .status = .mapped, .mapping = &.{0x52F9}, .status2 = .none, },
2363 .{ .cp = 0x2F14, .status = .mapped, .mapping = &.{0x5315}, .status2 = .none, },
2364 .{ .cp = 0x2F15, .status = .mapped, .mapping = &.{0x531A}, .status2 = .none, },
2365 .{ .cp = 0x2F16, .status = .mapped, .mapping = &.{0x5338}, .status2 = .none, },
2366 .{ .cp = 0x2F17, .status = .mapped, .mapping = &.{0x5341}, .status2 = .none, },
2367 .{ .cp = 0x2F18, .status = .mapped, .mapping = &.{0x535C}, .status2 = .none, },
2368 .{ .cp = 0x2F19, .status = .mapped, .mapping = &.{0x5369}, .status2 = .none, },
2369 .{ .cp = 0x2F1A, .status = .mapped, .mapping = &.{0x5382}, .status2 = .none, },
2370 .{ .cp = 0x2F1B, .status = .mapped, .mapping = &.{0x53B6}, .status2 = .none, },
2371 .{ .cp = 0x2F1C, .status = .mapped, .mapping = &.{0x53C8}, .status2 = .none, },
2372 .{ .cp = 0x2F1D, .status = .mapped, .mapping = &.{0x53E3}, .status2 = .none, },
2373 .{ .cp = 0x2F1E, .status = .mapped, .mapping = &.{0x56D7}, .status2 = .none, },
2374 .{ .cp = 0x2F1F, .status = .mapped, .mapping = &.{0x571F}, .status2 = .none, },
2375 .{ .cp = 0x2F20, .status = .mapped, .mapping = &.{0x58EB}, .status2 = .none, },
2376 .{ .cp = 0x2F21, .status = .mapped, .mapping = &.{0x5902}, .status2 = .none, },
2377 .{ .cp = 0x2F22, .status = .mapped, .mapping = &.{0x590A}, .status2 = .none, },
2378 .{ .cp = 0x2F23, .status = .mapped, .mapping = &.{0x5915}, .status2 = .none, },
2379 .{ .cp = 0x2F24, .status = .mapped, .mapping = &.{0x5927}, .status2 = .none, },
2380 .{ .cp = 0x2F25, .status = .mapped, .mapping = &.{0x5973}, .status2 = .none, },
2381 .{ .cp = 0x2F26, .status = .mapped, .mapping = &.{0x5B50}, .status2 = .none, },
2382 .{ .cp = 0x2F27, .status = .mapped, .mapping = &.{0x5B80}, .status2 = .none, },
2383 .{ .cp = 0x2F28, .status = .mapped, .mapping = &.{0x5BF8}, .status2 = .none, },
2384 .{ .cp = 0x2F29, .status = .mapped, .mapping = &.{0x5C0F}, .status2 = .none, },
2385 .{ .cp = 0x2F2A, .status = .mapped, .mapping = &.{0x5C22}, .status2 = .none, },
2386 .{ .cp = 0x2F2B, .status = .mapped, .mapping = &.{0x5C38}, .status2 = .none, },
2387 .{ .cp = 0x2F2C, .status = .mapped, .mapping = &.{0x5C6E}, .status2 = .none, },
2388 .{ .cp = 0x2F2D, .status = .mapped, .mapping = &.{0x5C71}, .status2 = .none, },
2389 .{ .cp = 0x2F2E, .status = .mapped, .mapping = &.{0x5DDB}, .status2 = .none, },
2390 .{ .cp = 0x2F2F, .status = .mapped, .mapping = &.{0x5DE5}, .status2 = .none, },
2391 .{ .cp = 0x2F30, .status = .mapped, .mapping = &.{0x5DF1}, .status2 = .none, },
2392 .{ .cp = 0x2F31, .status = .mapped, .mapping = &.{0x5DFE}, .status2 = .none, },
2393 .{ .cp = 0x2F32, .status = .mapped, .mapping = &.{0x5E72}, .status2 = .none, },
2394 .{ .cp = 0x2F33, .status = .mapped, .mapping = &.{0x5E7A}, .status2 = .none, },
2395 .{ .cp = 0x2F34, .status = .mapped, .mapping = &.{0x5E7F}, .status2 = .none, },
2396 .{ .cp = 0x2F35, .status = .mapped, .mapping = &.{0x5EF4}, .status2 = .none, },
2397 .{ .cp = 0x2F36, .status = .mapped, .mapping = &.{0x5EFE}, .status2 = .none, },
2398 .{ .cp = 0x2F37, .status = .mapped, .mapping = &.{0x5F0B}, .status2 = .none, },
2399 .{ .cp = 0x2F38, .status = .mapped, .mapping = &.{0x5F13}, .status2 = .none, },
2400 .{ .cp = 0x2F39, .status = .mapped, .mapping = &.{0x5F50}, .status2 = .none, },
2401 .{ .cp = 0x2F3A, .status = .mapped, .mapping = &.{0x5F61}, .status2 = .none, },
2402 .{ .cp = 0x2F3B, .status = .mapped, .mapping = &.{0x5F73}, .status2 = .none, },
2403 .{ .cp = 0x2F3C, .status = .mapped, .mapping = &.{0x5FC3}, .status2 = .none, },
2404 .{ .cp = 0x2F3D, .status = .mapped, .mapping = &.{0x6208}, .status2 = .none, },
2405 .{ .cp = 0x2F3E, .status = .mapped, .mapping = &.{0x6236}, .status2 = .none, },
2406 .{ .cp = 0x2F3F, .status = .mapped, .mapping = &.{0x624B}, .status2 = .none, },
2407 .{ .cp = 0x2F40, .status = .mapped, .mapping = &.{0x652F}, .status2 = .none, },
2408 .{ .cp = 0x2F41, .status = .mapped, .mapping = &.{0x6534}, .status2 = .none, },
2409 .{ .cp = 0x2F42, .status = .mapped, .mapping = &.{0x6587}, .status2 = .none, },
2410 .{ .cp = 0x2F43, .status = .mapped, .mapping = &.{0x6597}, .status2 = .none, },
2411 .{ .cp = 0x2F44, .status = .mapped, .mapping = &.{0x65A4}, .status2 = .none, },
2412 .{ .cp = 0x2F45, .status = .mapped, .mapping = &.{0x65B9}, .status2 = .none, },
2413 .{ .cp = 0x2F46, .status = .mapped, .mapping = &.{0x65E0}, .status2 = .none, },
2414 .{ .cp = 0x2F47, .status = .mapped, .mapping = &.{0x65E5}, .status2 = .none, },
2415 .{ .cp = 0x2F48, .status = .mapped, .mapping = &.{0x66F0}, .status2 = .none, },
2416 .{ .cp = 0x2F49, .status = .mapped, .mapping = &.{0x6708}, .status2 = .none, },
2417 .{ .cp = 0x2F4A, .status = .mapped, .mapping = &.{0x6728}, .status2 = .none, },
2418 .{ .cp = 0x2F4B, .status = .mapped, .mapping = &.{0x6B20}, .status2 = .none, },
2419 .{ .cp = 0x2F4C, .status = .mapped, .mapping = &.{0x6B62}, .status2 = .none, },
2420 .{ .cp = 0x2F4D, .status = .mapped, .mapping = &.{0x6B79}, .status2 = .none, },
2421 .{ .cp = 0x2F4E, .status = .mapped, .mapping = &.{0x6BB3}, .status2 = .none, },
2422 .{ .cp = 0x2F4F, .status = .mapped, .mapping = &.{0x6BCB}, .status2 = .none, },
2423 .{ .cp = 0x2F50, .status = .mapped, .mapping = &.{0x6BD4}, .status2 = .none, },
2424 .{ .cp = 0x2F51, .status = .mapped, .mapping = &.{0x6BDB}, .status2 = .none, },
2425 .{ .cp = 0x2F52, .status = .mapped, .mapping = &.{0x6C0F}, .status2 = .none, },
2426 .{ .cp = 0x2F53, .status = .mapped, .mapping = &.{0x6C14}, .status2 = .none, },
2427 .{ .cp = 0x2F54, .status = .mapped, .mapping = &.{0x6C34}, .status2 = .none, },
2428 .{ .cp = 0x2F55, .status = .mapped, .mapping = &.{0x706B}, .status2 = .none, },
2429 .{ .cp = 0x2F56, .status = .mapped, .mapping = &.{0x722A}, .status2 = .none, },
2430 .{ .cp = 0x2F57, .status = .mapped, .mapping = &.{0x7236}, .status2 = .none, },
2431 .{ .cp = 0x2F58, .status = .mapped, .mapping = &.{0x723B}, .status2 = .none, },
2432 .{ .cp = 0x2F59, .status = .mapped, .mapping = &.{0x723F}, .status2 = .none, },
2433 .{ .cp = 0x2F5A, .status = .mapped, .mapping = &.{0x7247}, .status2 = .none, },
2434 .{ .cp = 0x2F5B, .status = .mapped, .mapping = &.{0x7259}, .status2 = .none, },
2435 .{ .cp = 0x2F5C, .status = .mapped, .mapping = &.{0x725B}, .status2 = .none, },
2436 .{ .cp = 0x2F5D, .status = .mapped, .mapping = &.{0x72AC}, .status2 = .none, },
2437 .{ .cp = 0x2F5E, .status = .mapped, .mapping = &.{0x7384}, .status2 = .none, },
2438 .{ .cp = 0x2F5F, .status = .mapped, .mapping = &.{0x7389}, .status2 = .none, },
2439 .{ .cp = 0x2F60, .status = .mapped, .mapping = &.{0x74DC}, .status2 = .none, },
2440 .{ .cp = 0x2F61, .status = .mapped, .mapping = &.{0x74E6}, .status2 = .none, },
2441 .{ .cp = 0x2F62, .status = .mapped, .mapping = &.{0x7518}, .status2 = .none, },
2442 .{ .cp = 0x2F63, .status = .mapped, .mapping = &.{0x751F}, .status2 = .none, },
2443 .{ .cp = 0x2F64, .status = .mapped, .mapping = &.{0x7528}, .status2 = .none, },
2444 .{ .cp = 0x2F65, .status = .mapped, .mapping = &.{0x7530}, .status2 = .none, },
2445 .{ .cp = 0x2F66, .status = .mapped, .mapping = &.{0x758B}, .status2 = .none, },
2446 .{ .cp = 0x2F67, .status = .mapped, .mapping = &.{0x7592}, .status2 = .none, },
2447 .{ .cp = 0x2F68, .status = .mapped, .mapping = &.{0x7676}, .status2 = .none, },
2448 .{ .cp = 0x2F69, .status = .mapped, .mapping = &.{0x767D}, .status2 = .none, },
2449 .{ .cp = 0x2F6A, .status = .mapped, .mapping = &.{0x76AE}, .status2 = .none, },
2450 .{ .cp = 0x2F6B, .status = .mapped, .mapping = &.{0x76BF}, .status2 = .none, },
2451 .{ .cp = 0x2F6C, .status = .mapped, .mapping = &.{0x76EE}, .status2 = .none, },
2452 .{ .cp = 0x2F6D, .status = .mapped, .mapping = &.{0x77DB}, .status2 = .none, },
2453 .{ .cp = 0x2F6E, .status = .mapped, .mapping = &.{0x77E2}, .status2 = .none, },
2454 .{ .cp = 0x2F6F, .status = .mapped, .mapping = &.{0x77F3}, .status2 = .none, },
2455 .{ .cp = 0x2F70, .status = .mapped, .mapping = &.{0x793A}, .status2 = .none, },
2456 .{ .cp = 0x2F71, .status = .mapped, .mapping = &.{0x79B8}, .status2 = .none, },
2457 .{ .cp = 0x2F72, .status = .mapped, .mapping = &.{0x79BE}, .status2 = .none, },
2458 .{ .cp = 0x2F73, .status = .mapped, .mapping = &.{0x7A74}, .status2 = .none, },
2459 .{ .cp = 0x2F74, .status = .mapped, .mapping = &.{0x7ACB}, .status2 = .none, },
2460 .{ .cp = 0x2F75, .status = .mapped, .mapping = &.{0x7AF9}, .status2 = .none, },
2461 .{ .cp = 0x2F76, .status = .mapped, .mapping = &.{0x7C73}, .status2 = .none, },
2462 .{ .cp = 0x2F77, .status = .mapped, .mapping = &.{0x7CF8}, .status2 = .none, },
2463 .{ .cp = 0x2F78, .status = .mapped, .mapping = &.{0x7F36}, .status2 = .none, },
2464 .{ .cp = 0x2F79, .status = .mapped, .mapping = &.{0x7F51}, .status2 = .none, },
2465 .{ .cp = 0x2F7A, .status = .mapped, .mapping = &.{0x7F8A}, .status2 = .none, },
2466 .{ .cp = 0x2F7B, .status = .mapped, .mapping = &.{0x7FBD}, .status2 = .none, },
2467 .{ .cp = 0x2F7C, .status = .mapped, .mapping = &.{0x8001}, .status2 = .none, },
2468 .{ .cp = 0x2F7D, .status = .mapped, .mapping = &.{0x800C}, .status2 = .none, },
2469 .{ .cp = 0x2F7E, .status = .mapped, .mapping = &.{0x8012}, .status2 = .none, },
2470 .{ .cp = 0x2F7F, .status = .mapped, .mapping = &.{0x8033}, .status2 = .none, },
2471 .{ .cp = 0x2F80, .status = .mapped, .mapping = &.{0x807F}, .status2 = .none, },
2472 .{ .cp = 0x2F81, .status = .mapped, .mapping = &.{0x8089}, .status2 = .none, },
2473 .{ .cp = 0x2F82, .status = .mapped, .mapping = &.{0x81E3}, .status2 = .none, },
2474 .{ .cp = 0x2F83, .status = .mapped, .mapping = &.{0x81EA}, .status2 = .none, },
2475 .{ .cp = 0x2F84, .status = .mapped, .mapping = &.{0x81F3}, .status2 = .none, },
2476 .{ .cp = 0x2F85, .status = .mapped, .mapping = &.{0x81FC}, .status2 = .none, },
2477 .{ .cp = 0x2F86, .status = .mapped, .mapping = &.{0x820C}, .status2 = .none, },
2478 .{ .cp = 0x2F87, .status = .mapped, .mapping = &.{0x821B}, .status2 = .none, },
2479 .{ .cp = 0x2F88, .status = .mapped, .mapping = &.{0x821F}, .status2 = .none, },
2480 .{ .cp = 0x2F89, .status = .mapped, .mapping = &.{0x826E}, .status2 = .none, },
2481 .{ .cp = 0x2F8A, .status = .mapped, .mapping = &.{0x8272}, .status2 = .none, },
2482 .{ .cp = 0x2F8B, .status = .mapped, .mapping = &.{0x8278}, .status2 = .none, },
2483 .{ .cp = 0x2F8C, .status = .mapped, .mapping = &.{0x864D}, .status2 = .none, },
2484 .{ .cp = 0x2F8D, .status = .mapped, .mapping = &.{0x866B}, .status2 = .none, },
2485 .{ .cp = 0x2F8E, .status = .mapped, .mapping = &.{0x8840}, .status2 = .none, },
2486 .{ .cp = 0x2F8F, .status = .mapped, .mapping = &.{0x884C}, .status2 = .none, },
2487 .{ .cp = 0x2F90, .status = .mapped, .mapping = &.{0x8863}, .status2 = .none, },
2488 .{ .cp = 0x2F91, .status = .mapped, .mapping = &.{0x897E}, .status2 = .none, },
2489 .{ .cp = 0x2F92, .status = .mapped, .mapping = &.{0x898B}, .status2 = .none, },
2490 .{ .cp = 0x2F93, .status = .mapped, .mapping = &.{0x89D2}, .status2 = .none, },
2491 .{ .cp = 0x2F94, .status = .mapped, .mapping = &.{0x8A00}, .status2 = .none, },
2492 .{ .cp = 0x2F95, .status = .mapped, .mapping = &.{0x8C37}, .status2 = .none, },
2493 .{ .cp = 0x2F96, .status = .mapped, .mapping = &.{0x8C46}, .status2 = .none, },
2494 .{ .cp = 0x2F97, .status = .mapped, .mapping = &.{0x8C55}, .status2 = .none, },
2495 .{ .cp = 0x2F98, .status = .mapped, .mapping = &.{0x8C78}, .status2 = .none, },
2496 .{ .cp = 0x2F99, .status = .mapped, .mapping = &.{0x8C9D}, .status2 = .none, },
2497 .{ .cp = 0x2F9A, .status = .mapped, .mapping = &.{0x8D64}, .status2 = .none, },
2498 .{ .cp = 0x2F9B, .status = .mapped, .mapping = &.{0x8D70}, .status2 = .none, },
2499 .{ .cp = 0x2F9C, .status = .mapped, .mapping = &.{0x8DB3}, .status2 = .none, },
2500 .{ .cp = 0x2F9D, .status = .mapped, .mapping = &.{0x8EAB}, .status2 = .none, },
2501 .{ .cp = 0x2F9E, .status = .mapped, .mapping = &.{0x8ECA}, .status2 = .none, },
2502 .{ .cp = 0x2F9F, .status = .mapped, .mapping = &.{0x8F9B}, .status2 = .none, },
2503 .{ .cp = 0x2FA0, .status = .mapped, .mapping = &.{0x8FB0}, .status2 = .none, },
2504 .{ .cp = 0x2FA1, .status = .mapped, .mapping = &.{0x8FB5}, .status2 = .none, },
2505 .{ .cp = 0x2FA2, .status = .mapped, .mapping = &.{0x9091}, .status2 = .none, },
2506 .{ .cp = 0x2FA3, .status = .mapped, .mapping = &.{0x9149}, .status2 = .none, },
2507 .{ .cp = 0x2FA4, .status = .mapped, .mapping = &.{0x91C6}, .status2 = .none, },
2508 .{ .cp = 0x2FA5, .status = .mapped, .mapping = &.{0x91CC}, .status2 = .none, },
2509 .{ .cp = 0x2FA6, .status = .mapped, .mapping = &.{0x91D1}, .status2 = .none, },
2510 .{ .cp = 0x2FA7, .status = .mapped, .mapping = &.{0x9577}, .status2 = .none, },
2511 .{ .cp = 0x2FA8, .status = .mapped, .mapping = &.{0x9580}, .status2 = .none, },
2512 .{ .cp = 0x2FA9, .status = .mapped, .mapping = &.{0x961C}, .status2 = .none, },
2513 .{ .cp = 0x2FAA, .status = .mapped, .mapping = &.{0x96B6}, .status2 = .none, },
2514 .{ .cp = 0x2FAB, .status = .mapped, .mapping = &.{0x96B9}, .status2 = .none, },
2515 .{ .cp = 0x2FAC, .status = .mapped, .mapping = &.{0x96E8}, .status2 = .none, },
2516 .{ .cp = 0x2FAD, .status = .mapped, .mapping = &.{0x9751}, .status2 = .none, },
2517 .{ .cp = 0x2FAE, .status = .mapped, .mapping = &.{0x975E}, .status2 = .none, },
2518 .{ .cp = 0x2FAF, .status = .mapped, .mapping = &.{0x9762}, .status2 = .none, },
2519 .{ .cp = 0x2FB0, .status = .mapped, .mapping = &.{0x9769}, .status2 = .none, },
2520 .{ .cp = 0x2FB1, .status = .mapped, .mapping = &.{0x97CB}, .status2 = .none, },
2521 .{ .cp = 0x2FB2, .status = .mapped, .mapping = &.{0x97ED}, .status2 = .none, },
2522 .{ .cp = 0x2FB3, .status = .mapped, .mapping = &.{0x97F3}, .status2 = .none, },
2523 .{ .cp = 0x2FB4, .status = .mapped, .mapping = &.{0x9801}, .status2 = .none, },
2524 .{ .cp = 0x2FB5, .status = .mapped, .mapping = &.{0x98A8}, .status2 = .none, },
2525 .{ .cp = 0x2FB6, .status = .mapped, .mapping = &.{0x98DB}, .status2 = .none, },
2526 .{ .cp = 0x2FB7, .status = .mapped, .mapping = &.{0x98DF}, .status2 = .none, },
2527 .{ .cp = 0x2FB8, .status = .mapped, .mapping = &.{0x9996}, .status2 = .none, },
2528 .{ .cp = 0x2FB9, .status = .mapped, .mapping = &.{0x9999}, .status2 = .none, },
2529 .{ .cp = 0x2FBA, .status = .mapped, .mapping = &.{0x99AC}, .status2 = .none, },
2530 .{ .cp = 0x2FBB, .status = .mapped, .mapping = &.{0x9AA8}, .status2 = .none, },
2531 .{ .cp = 0x2FBC, .status = .mapped, .mapping = &.{0x9AD8}, .status2 = .none, },
2532 .{ .cp = 0x2FBD, .status = .mapped, .mapping = &.{0x9ADF}, .status2 = .none, },
2533 .{ .cp = 0x2FBE, .status = .mapped, .mapping = &.{0x9B25}, .status2 = .none, },
2534 .{ .cp = 0x2FBF, .status = .mapped, .mapping = &.{0x9B2F}, .status2 = .none, },
2535 .{ .cp = 0x2FC0, .status = .mapped, .mapping = &.{0x9B32}, .status2 = .none, },
2536 .{ .cp = 0x2FC1, .status = .mapped, .mapping = &.{0x9B3C}, .status2 = .none, },
2537 .{ .cp = 0x2FC2, .status = .mapped, .mapping = &.{0x9B5A}, .status2 = .none, },
2538 .{ .cp = 0x2FC3, .status = .mapped, .mapping = &.{0x9CE5}, .status2 = .none, },
2539 .{ .cp = 0x2FC4, .status = .mapped, .mapping = &.{0x9E75}, .status2 = .none, },
2540 .{ .cp = 0x2FC5, .status = .mapped, .mapping = &.{0x9E7F}, .status2 = .none, },
2541 .{ .cp = 0x2FC6, .status = .mapped, .mapping = &.{0x9EA5}, .status2 = .none, },
2542 .{ .cp = 0x2FC7, .status = .mapped, .mapping = &.{0x9EBB}, .status2 = .none, },
2543 .{ .cp = 0x2FC8, .status = .mapped, .mapping = &.{0x9EC3}, .status2 = .none, },
2544 .{ .cp = 0x2FC9, .status = .mapped, .mapping = &.{0x9ECD}, .status2 = .none, },
2545 .{ .cp = 0x2FCA, .status = .mapped, .mapping = &.{0x9ED1}, .status2 = .none, },
2546 .{ .cp = 0x2FCB, .status = .mapped, .mapping = &.{0x9EF9}, .status2 = .none, },
2547 .{ .cp = 0x2FCC, .status = .mapped, .mapping = &.{0x9EFD}, .status2 = .none, },
2548 .{ .cp = 0x2FCD, .status = .mapped, .mapping = &.{0x9F0E}, .status2 = .none, },
2549 .{ .cp = 0x2FCE, .status = .mapped, .mapping = &.{0x9F13}, .status2 = .none, },
2550 .{ .cp = 0x2FCF, .status = .mapped, .mapping = &.{0x9F20}, .status2 = .none, },
2551 .{ .cp = 0x2FD0, .status = .mapped, .mapping = &.{0x9F3B}, .status2 = .none, },
2552 .{ .cp = 0x2FD1, .status = .mapped, .mapping = &.{0x9F4A}, .status2 = .none, },
2553 .{ .cp = 0x2FD2, .status = .mapped, .mapping = &.{0x9F52}, .status2 = .none, },
2554 .{ .cp = 0x2FD3, .status = .mapped, .mapping = &.{0x9F8D}, .status2 = .none, },
2555 .{ .cp = 0x2FD4, .status = .mapped, .mapping = &.{0x9F9C}, .status2 = .none, },
2556 .{ .cp = 0x2FD5, .status = .mapped, .mapping = &.{0x9FA0}, .status2 = .none, },
2557 .{ .cp = 0x3000, .status = .mapped, .mapping = &.{0x0020}, .status2 = .none, },
2558 .{ .cp = 0x3001, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
2559 .{ .cp = 0x3002, .status = .mapped, .mapping = &.{0x002E}, .status2 = .none, },
2560 .{ .cp = 0x3036, .status = .mapped, .mapping = &.{0x3012}, .status2 = .none, },
2561 .{ .cp = 0x3037, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
2562 .{ .cp = 0x3038, .status = .mapped, .mapping = &.{0x5341}, .status2 = .none, },
2563 .{ .cp = 0x3039, .status = .mapped, .mapping = &.{0x5344}, .status2 = .none, },
2564 .{ .cp = 0x303A, .status = .mapped, .mapping = &.{0x5345}, .status2 = .none, },
2565 .{ .cp = 0x303B, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
2566 .{ .cp = 0x303C, .status = .valid, .mapping = &.{}, .status2 = .none, },
2567 .{ .cp = 0x303D, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
2568 .{ .cp = 0x303E, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
2569 .{ .cp = 0x303F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
2570 .{ .cp = 0x3040, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
2571 .{ .cp = 0x309B, .status = .mapped, .mapping = &.{0x0020,0x3099}, .status2 = .none, },
2572 .{ .cp = 0x309C, .status = .mapped, .mapping = &.{0x0020,0x309A}, .status2 = .none, },
2573 .{ .cp = 0x309F, .status = .mapped, .mapping = &.{0x3088,0x308A}, .status2 = .none, },
2574 .{ .cp = 0x30A0, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
2575 .{ .cp = 0x30FF, .status = .mapped, .mapping = &.{0x30B3,0x30C8}, .status2 = .none, },
2576 .{ .cp = 0x312D, .status = .valid, .mapping = &.{}, .status2 = .none, },
2577 .{ .cp = 0x312E, .status = .valid, .mapping = &.{}, .status2 = .none, },
2578 .{ .cp = 0x312F, .status = .valid, .mapping = &.{}, .status2 = .none, },
2579 .{ .cp = 0x3130, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
2580 .{ .cp = 0x3131, .status = .mapped, .mapping = &.{0x1100}, .status2 = .none, },
2581 .{ .cp = 0x3132, .status = .mapped, .mapping = &.{0x1101}, .status2 = .none, },
2582 .{ .cp = 0x3133, .status = .mapped, .mapping = &.{0x11AA}, .status2 = .none, },
2583 .{ .cp = 0x3134, .status = .mapped, .mapping = &.{0x1102}, .status2 = .none, },
2584 .{ .cp = 0x3135, .status = .mapped, .mapping = &.{0x11AC}, .status2 = .none, },
2585 .{ .cp = 0x3136, .status = .mapped, .mapping = &.{0x11AD}, .status2 = .none, },
2586 .{ .cp = 0x3137, .status = .mapped, .mapping = &.{0x1103}, .status2 = .none, },
2587 .{ .cp = 0x3138, .status = .mapped, .mapping = &.{0x1104}, .status2 = .none, },
2588 .{ .cp = 0x3139, .status = .mapped, .mapping = &.{0x1105}, .status2 = .none, },
2589 .{ .cp = 0x313A, .status = .mapped, .mapping = &.{0x11B0}, .status2 = .none, },
2590 .{ .cp = 0x313B, .status = .mapped, .mapping = &.{0x11B1}, .status2 = .none, },
2591 .{ .cp = 0x313C, .status = .mapped, .mapping = &.{0x11B2}, .status2 = .none, },
2592 .{ .cp = 0x313D, .status = .mapped, .mapping = &.{0x11B3}, .status2 = .none, },
2593 .{ .cp = 0x313E, .status = .mapped, .mapping = &.{0x11B4}, .status2 = .none, },
2594 .{ .cp = 0x313F, .status = .mapped, .mapping = &.{0x11B5}, .status2 = .none, },
2595 .{ .cp = 0x3140, .status = .mapped, .mapping = &.{0x111A}, .status2 = .none, },
2596 .{ .cp = 0x3141, .status = .mapped, .mapping = &.{0x1106}, .status2 = .none, },
2597 .{ .cp = 0x3142, .status = .mapped, .mapping = &.{0x1107}, .status2 = .none, },
2598 .{ .cp = 0x3143, .status = .mapped, .mapping = &.{0x1108}, .status2 = .none, },
2599 .{ .cp = 0x3144, .status = .mapped, .mapping = &.{0x1121}, .status2 = .none, },
2600 .{ .cp = 0x3145, .status = .mapped, .mapping = &.{0x1109}, .status2 = .none, },
2601 .{ .cp = 0x3146, .status = .mapped, .mapping = &.{0x110A}, .status2 = .none, },
2602 .{ .cp = 0x3147, .status = .mapped, .mapping = &.{0x110B}, .status2 = .none, },
2603 .{ .cp = 0x3148, .status = .mapped, .mapping = &.{0x110C}, .status2 = .none, },
2604 .{ .cp = 0x3149, .status = .mapped, .mapping = &.{0x110D}, .status2 = .none, },
2605 .{ .cp = 0x314A, .status = .mapped, .mapping = &.{0x110E}, .status2 = .none, },
2606 .{ .cp = 0x314B, .status = .mapped, .mapping = &.{0x110F}, .status2 = .none, },
2607 .{ .cp = 0x314C, .status = .mapped, .mapping = &.{0x1110}, .status2 = .none, },
2608 .{ .cp = 0x314D, .status = .mapped, .mapping = &.{0x1111}, .status2 = .none, },
2609 .{ .cp = 0x314E, .status = .mapped, .mapping = &.{0x1112}, .status2 = .none, },
2610 .{ .cp = 0x314F, .status = .mapped, .mapping = &.{0x1161}, .status2 = .none, },
2611 .{ .cp = 0x3150, .status = .mapped, .mapping = &.{0x1162}, .status2 = .none, },
2612 .{ .cp = 0x3151, .status = .mapped, .mapping = &.{0x1163}, .status2 = .none, },
2613 .{ .cp = 0x3152, .status = .mapped, .mapping = &.{0x1164}, .status2 = .none, },
2614 .{ .cp = 0x3153, .status = .mapped, .mapping = &.{0x1165}, .status2 = .none, },
2615 .{ .cp = 0x3154, .status = .mapped, .mapping = &.{0x1166}, .status2 = .none, },
2616 .{ .cp = 0x3155, .status = .mapped, .mapping = &.{0x1167}, .status2 = .none, },
2617 .{ .cp = 0x3156, .status = .mapped, .mapping = &.{0x1168}, .status2 = .none, },
2618 .{ .cp = 0x3157, .status = .mapped, .mapping = &.{0x1169}, .status2 = .none, },
2619 .{ .cp = 0x3158, .status = .mapped, .mapping = &.{0x116A}, .status2 = .none, },
2620 .{ .cp = 0x3159, .status = .mapped, .mapping = &.{0x116B}, .status2 = .none, },
2621 .{ .cp = 0x315A, .status = .mapped, .mapping = &.{0x116C}, .status2 = .none, },
2622 .{ .cp = 0x315B, .status = .mapped, .mapping = &.{0x116D}, .status2 = .none, },
2623 .{ .cp = 0x315C, .status = .mapped, .mapping = &.{0x116E}, .status2 = .none, },
2624 .{ .cp = 0x315D, .status = .mapped, .mapping = &.{0x116F}, .status2 = .none, },
2625 .{ .cp = 0x315E, .status = .mapped, .mapping = &.{0x1170}, .status2 = .none, },
2626 .{ .cp = 0x315F, .status = .mapped, .mapping = &.{0x1171}, .status2 = .none, },
2627 .{ .cp = 0x3160, .status = .mapped, .mapping = &.{0x1172}, .status2 = .none, },
2628 .{ .cp = 0x3161, .status = .mapped, .mapping = &.{0x1173}, .status2 = .none, },
2629 .{ .cp = 0x3162, .status = .mapped, .mapping = &.{0x1174}, .status2 = .none, },
2630 .{ .cp = 0x3163, .status = .mapped, .mapping = &.{0x1175}, .status2 = .none, },
2631 .{ .cp = 0x3164, .status = .ignored, .mapping = &.{}, .status2 = .none, },
2632 .{ .cp = 0x3165, .status = .mapped, .mapping = &.{0x1114}, .status2 = .none, },
2633 .{ .cp = 0x3166, .status = .mapped, .mapping = &.{0x1115}, .status2 = .none, },
2634 .{ .cp = 0x3167, .status = .mapped, .mapping = &.{0x11C7}, .status2 = .none, },
2635 .{ .cp = 0x3168, .status = .mapped, .mapping = &.{0x11C8}, .status2 = .none, },
2636 .{ .cp = 0x3169, .status = .mapped, .mapping = &.{0x11CC}, .status2 = .none, },
2637 .{ .cp = 0x316A, .status = .mapped, .mapping = &.{0x11CE}, .status2 = .none, },
2638 .{ .cp = 0x316B, .status = .mapped, .mapping = &.{0x11D3}, .status2 = .none, },
2639 .{ .cp = 0x316C, .status = .mapped, .mapping = &.{0x11D7}, .status2 = .none, },
2640 .{ .cp = 0x316D, .status = .mapped, .mapping = &.{0x11D9}, .status2 = .none, },
2641 .{ .cp = 0x316E, .status = .mapped, .mapping = &.{0x111C}, .status2 = .none, },
2642 .{ .cp = 0x316F, .status = .mapped, .mapping = &.{0x11DD}, .status2 = .none, },
2643 .{ .cp = 0x3170, .status = .mapped, .mapping = &.{0x11DF}, .status2 = .none, },
2644 .{ .cp = 0x3171, .status = .mapped, .mapping = &.{0x111D}, .status2 = .none, },
2645 .{ .cp = 0x3172, .status = .mapped, .mapping = &.{0x111E}, .status2 = .none, },
2646 .{ .cp = 0x3173, .status = .mapped, .mapping = &.{0x1120}, .status2 = .none, },
2647 .{ .cp = 0x3174, .status = .mapped, .mapping = &.{0x1122}, .status2 = .none, },
2648 .{ .cp = 0x3175, .status = .mapped, .mapping = &.{0x1123}, .status2 = .none, },
2649 .{ .cp = 0x3176, .status = .mapped, .mapping = &.{0x1127}, .status2 = .none, },
2650 .{ .cp = 0x3177, .status = .mapped, .mapping = &.{0x1129}, .status2 = .none, },
2651 .{ .cp = 0x3178, .status = .mapped, .mapping = &.{0x112B}, .status2 = .none, },
2652 .{ .cp = 0x3179, .status = .mapped, .mapping = &.{0x112C}, .status2 = .none, },
2653 .{ .cp = 0x317A, .status = .mapped, .mapping = &.{0x112D}, .status2 = .none, },
2654 .{ .cp = 0x317B, .status = .mapped, .mapping = &.{0x112E}, .status2 = .none, },
2655 .{ .cp = 0x317C, .status = .mapped, .mapping = &.{0x112F}, .status2 = .none, },
2656 .{ .cp = 0x317D, .status = .mapped, .mapping = &.{0x1132}, .status2 = .none, },
2657 .{ .cp = 0x317E, .status = .mapped, .mapping = &.{0x1136}, .status2 = .none, },
2658 .{ .cp = 0x317F, .status = .mapped, .mapping = &.{0x1140}, .status2 = .none, },
2659 .{ .cp = 0x3180, .status = .mapped, .mapping = &.{0x1147}, .status2 = .none, },
2660 .{ .cp = 0x3181, .status = .mapped, .mapping = &.{0x114C}, .status2 = .none, },
2661 .{ .cp = 0x3182, .status = .mapped, .mapping = &.{0x11F1}, .status2 = .none, },
2662 .{ .cp = 0x3183, .status = .mapped, .mapping = &.{0x11F2}, .status2 = .none, },
2663 .{ .cp = 0x3184, .status = .mapped, .mapping = &.{0x1157}, .status2 = .none, },
2664 .{ .cp = 0x3185, .status = .mapped, .mapping = &.{0x1158}, .status2 = .none, },
2665 .{ .cp = 0x3186, .status = .mapped, .mapping = &.{0x1159}, .status2 = .none, },
2666 .{ .cp = 0x3187, .status = .mapped, .mapping = &.{0x1184}, .status2 = .none, },
2667 .{ .cp = 0x3188, .status = .mapped, .mapping = &.{0x1185}, .status2 = .none, },
2668 .{ .cp = 0x3189, .status = .mapped, .mapping = &.{0x1188}, .status2 = .none, },
2669 .{ .cp = 0x318A, .status = .mapped, .mapping = &.{0x1191}, .status2 = .none, },
2670 .{ .cp = 0x318B, .status = .mapped, .mapping = &.{0x1192}, .status2 = .none, },
2671 .{ .cp = 0x318C, .status = .mapped, .mapping = &.{0x1194}, .status2 = .none, },
2672 .{ .cp = 0x318D, .status = .mapped, .mapping = &.{0x119E}, .status2 = .none, },
2673 .{ .cp = 0x318E, .status = .mapped, .mapping = &.{0x11A1}, .status2 = .none, },
2674 .{ .cp = 0x318F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
2675 .{ .cp = 0x3192, .status = .mapped, .mapping = &.{0x4E00}, .status2 = .none, },
2676 .{ .cp = 0x3193, .status = .mapped, .mapping = &.{0x4E8C}, .status2 = .none, },
2677 .{ .cp = 0x3194, .status = .mapped, .mapping = &.{0x4E09}, .status2 = .none, },
2678 .{ .cp = 0x3195, .status = .mapped, .mapping = &.{0x56DB}, .status2 = .none, },
2679 .{ .cp = 0x3196, .status = .mapped, .mapping = &.{0x4E0A}, .status2 = .none, },
2680 .{ .cp = 0x3197, .status = .mapped, .mapping = &.{0x4E2D}, .status2 = .none, },
2681 .{ .cp = 0x3198, .status = .mapped, .mapping = &.{0x4E0B}, .status2 = .none, },
2682 .{ .cp = 0x3199, .status = .mapped, .mapping = &.{0x7532}, .status2 = .none, },
2683 .{ .cp = 0x319A, .status = .mapped, .mapping = &.{0x4E59}, .status2 = .none, },
2684 .{ .cp = 0x319B, .status = .mapped, .mapping = &.{0x4E19}, .status2 = .none, },
2685 .{ .cp = 0x319C, .status = .mapped, .mapping = &.{0x4E01}, .status2 = .none, },
2686 .{ .cp = 0x319D, .status = .mapped, .mapping = &.{0x5929}, .status2 = .none, },
2687 .{ .cp = 0x319E, .status = .mapped, .mapping = &.{0x5730}, .status2 = .none, },
2688 .{ .cp = 0x319F, .status = .mapped, .mapping = &.{0x4EBA}, .status2 = .none, },
2689 .{ .cp = 0x31EF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
2690 .{ .cp = 0x3200, .status = .mapped, .mapping = &.{0x0028,0x1100,0x0029}, .status2 = .none, },
2691 .{ .cp = 0x3201, .status = .mapped, .mapping = &.{0x0028,0x1102,0x0029}, .status2 = .none, },
2692 .{ .cp = 0x3202, .status = .mapped, .mapping = &.{0x0028,0x1103,0x0029}, .status2 = .none, },
2693 .{ .cp = 0x3203, .status = .mapped, .mapping = &.{0x0028,0x1105,0x0029}, .status2 = .none, },
2694 .{ .cp = 0x3204, .status = .mapped, .mapping = &.{0x0028,0x1106,0x0029}, .status2 = .none, },
2695 .{ .cp = 0x3205, .status = .mapped, .mapping = &.{0x0028,0x1107,0x0029}, .status2 = .none, },
2696 .{ .cp = 0x3206, .status = .mapped, .mapping = &.{0x0028,0x1109,0x0029}, .status2 = .none, },
2697 .{ .cp = 0x3207, .status = .mapped, .mapping = &.{0x0028,0x110B,0x0029}, .status2 = .none, },
2698 .{ .cp = 0x3208, .status = .mapped, .mapping = &.{0x0028,0x110C,0x0029}, .status2 = .none, },
2699 .{ .cp = 0x3209, .status = .mapped, .mapping = &.{0x0028,0x110E,0x0029}, .status2 = .none, },
2700 .{ .cp = 0x320A, .status = .mapped, .mapping = &.{0x0028,0x110F,0x0029}, .status2 = .none, },
2701 .{ .cp = 0x320B, .status = .mapped, .mapping = &.{0x0028,0x1110,0x0029}, .status2 = .none, },
2702 .{ .cp = 0x320C, .status = .mapped, .mapping = &.{0x0028,0x1111,0x0029}, .status2 = .none, },
2703 .{ .cp = 0x320D, .status = .mapped, .mapping = &.{0x0028,0x1112,0x0029}, .status2 = .none, },
2704 .{ .cp = 0x320E, .status = .mapped, .mapping = &.{0x0028,0xAC00,0x0029}, .status2 = .none, },
2705 .{ .cp = 0x320F, .status = .mapped, .mapping = &.{0x0028,0xB098,0x0029}, .status2 = .none, },
2706 .{ .cp = 0x3210, .status = .mapped, .mapping = &.{0x0028,0xB2E4,0x0029}, .status2 = .none, },
2707 .{ .cp = 0x3211, .status = .mapped, .mapping = &.{0x0028,0xB77C,0x0029}, .status2 = .none, },
2708 .{ .cp = 0x3212, .status = .mapped, .mapping = &.{0x0028,0xB9C8,0x0029}, .status2 = .none, },
2709 .{ .cp = 0x3213, .status = .mapped, .mapping = &.{0x0028,0xBC14,0x0029}, .status2 = .none, },
2710 .{ .cp = 0x3214, .status = .mapped, .mapping = &.{0x0028,0xC0AC,0x0029}, .status2 = .none, },
2711 .{ .cp = 0x3215, .status = .mapped, .mapping = &.{0x0028,0xC544,0x0029}, .status2 = .none, },
2712 .{ .cp = 0x3216, .status = .mapped, .mapping = &.{0x0028,0xC790,0x0029}, .status2 = .none, },
2713 .{ .cp = 0x3217, .status = .mapped, .mapping = &.{0x0028,0xCC28,0x0029}, .status2 = .none, },
2714 .{ .cp = 0x3218, .status = .mapped, .mapping = &.{0x0028,0xCE74,0x0029}, .status2 = .none, },
2715 .{ .cp = 0x3219, .status = .mapped, .mapping = &.{0x0028,0xD0C0,0x0029}, .status2 = .none, },
2716 .{ .cp = 0x321A, .status = .mapped, .mapping = &.{0x0028,0xD30C,0x0029}, .status2 = .none, },
2717 .{ .cp = 0x321B, .status = .mapped, .mapping = &.{0x0028,0xD558,0x0029}, .status2 = .none, },
2718 .{ .cp = 0x321C, .status = .mapped, .mapping = &.{0x0028,0xC8FC,0x0029}, .status2 = .none, },
2719 .{ .cp = 0x321D, .status = .mapped, .mapping = &.{0x0028,0xC624,0xC804,0x0029}, .status2 = .none, },
2720 .{ .cp = 0x321E, .status = .mapped, .mapping = &.{0x0028,0xC624,0xD6C4,0x0029}, .status2 = .none, },
2721 .{ .cp = 0x321F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
2722 .{ .cp = 0x3220, .status = .mapped, .mapping = &.{0x0028,0x4E00,0x0029}, .status2 = .none, },
2723 .{ .cp = 0x3221, .status = .mapped, .mapping = &.{0x0028,0x4E8C,0x0029}, .status2 = .none, },
2724 .{ .cp = 0x3222, .status = .mapped, .mapping = &.{0x0028,0x4E09,0x0029}, .status2 = .none, },
2725 .{ .cp = 0x3223, .status = .mapped, .mapping = &.{0x0028,0x56DB,0x0029}, .status2 = .none, },
2726 .{ .cp = 0x3224, .status = .mapped, .mapping = &.{0x0028,0x4E94,0x0029}, .status2 = .none, },
2727 .{ .cp = 0x3225, .status = .mapped, .mapping = &.{0x0028,0x516D,0x0029}, .status2 = .none, },
2728 .{ .cp = 0x3226, .status = .mapped, .mapping = &.{0x0028,0x4E03,0x0029}, .status2 = .none, },
2729 .{ .cp = 0x3227, .status = .mapped, .mapping = &.{0x0028,0x516B,0x0029}, .status2 = .none, },
2730 .{ .cp = 0x3228, .status = .mapped, .mapping = &.{0x0028,0x4E5D,0x0029}, .status2 = .none, },
2731 .{ .cp = 0x3229, .status = .mapped, .mapping = &.{0x0028,0x5341,0x0029}, .status2 = .none, },
2732 .{ .cp = 0x322A, .status = .mapped, .mapping = &.{0x0028,0x6708,0x0029}, .status2 = .none, },
2733 .{ .cp = 0x322B, .status = .mapped, .mapping = &.{0x0028,0x706B,0x0029}, .status2 = .none, },
2734 .{ .cp = 0x322C, .status = .mapped, .mapping = &.{0x0028,0x6C34,0x0029}, .status2 = .none, },
2735 .{ .cp = 0x322D, .status = .mapped, .mapping = &.{0x0028,0x6728,0x0029}, .status2 = .none, },
2736 .{ .cp = 0x322E, .status = .mapped, .mapping = &.{0x0028,0x91D1,0x0029}, .status2 = .none, },
2737 .{ .cp = 0x322F, .status = .mapped, .mapping = &.{0x0028,0x571F,0x0029}, .status2 = .none, },
2738 .{ .cp = 0x3230, .status = .mapped, .mapping = &.{0x0028,0x65E5,0x0029}, .status2 = .none, },
2739 .{ .cp = 0x3231, .status = .mapped, .mapping = &.{0x0028,0x682A,0x0029}, .status2 = .none, },
2740 .{ .cp = 0x3232, .status = .mapped, .mapping = &.{0x0028,0x6709,0x0029}, .status2 = .none, },
2741 .{ .cp = 0x3233, .status = .mapped, .mapping = &.{0x0028,0x793E,0x0029}, .status2 = .none, },
2742 .{ .cp = 0x3234, .status = .mapped, .mapping = &.{0x0028,0x540D,0x0029}, .status2 = .none, },
2743 .{ .cp = 0x3235, .status = .mapped, .mapping = &.{0x0028,0x7279,0x0029}, .status2 = .none, },
2744 .{ .cp = 0x3236, .status = .mapped, .mapping = &.{0x0028,0x8CA1,0x0029}, .status2 = .none, },
2745 .{ .cp = 0x3237, .status = .mapped, .mapping = &.{0x0028,0x795D,0x0029}, .status2 = .none, },
2746 .{ .cp = 0x3238, .status = .mapped, .mapping = &.{0x0028,0x52B4,0x0029}, .status2 = .none, },
2747 .{ .cp = 0x3239, .status = .mapped, .mapping = &.{0x0028,0x4EE3,0x0029}, .status2 = .none, },
2748 .{ .cp = 0x323A, .status = .mapped, .mapping = &.{0x0028,0x547C,0x0029}, .status2 = .none, },
2749 .{ .cp = 0x323B, .status = .mapped, .mapping = &.{0x0028,0x5B66,0x0029}, .status2 = .none, },
2750 .{ .cp = 0x323C, .status = .mapped, .mapping = &.{0x0028,0x76E3,0x0029}, .status2 = .none, },
2751 .{ .cp = 0x323D, .status = .mapped, .mapping = &.{0x0028,0x4F01,0x0029}, .status2 = .none, },
2752 .{ .cp = 0x323E, .status = .mapped, .mapping = &.{0x0028,0x8CC7,0x0029}, .status2 = .none, },
2753 .{ .cp = 0x323F, .status = .mapped, .mapping = &.{0x0028,0x5354,0x0029}, .status2 = .none, },
2754 .{ .cp = 0x3240, .status = .mapped, .mapping = &.{0x0028,0x796D,0x0029}, .status2 = .none, },
2755 .{ .cp = 0x3241, .status = .mapped, .mapping = &.{0x0028,0x4F11,0x0029}, .status2 = .none, },
2756 .{ .cp = 0x3242, .status = .mapped, .mapping = &.{0x0028,0x81EA,0x0029}, .status2 = .none, },
2757 .{ .cp = 0x3243, .status = .mapped, .mapping = &.{0x0028,0x81F3,0x0029}, .status2 = .none, },
2758 .{ .cp = 0x3244, .status = .mapped, .mapping = &.{0x554F}, .status2 = .none, },
2759 .{ .cp = 0x3245, .status = .mapped, .mapping = &.{0x5E7C}, .status2 = .none, },
2760 .{ .cp = 0x3246, .status = .mapped, .mapping = &.{0x6587}, .status2 = .none, },
2761 .{ .cp = 0x3247, .status = .mapped, .mapping = &.{0x7B8F}, .status2 = .none, },
2762 .{ .cp = 0x3250, .status = .mapped, .mapping = &.{0x0070,0x0074,0x0065}, .status2 = .none, },
2763 .{ .cp = 0x3251, .status = .mapped, .mapping = &.{0x0032,0x0031}, .status2 = .none, },
2764 .{ .cp = 0x3252, .status = .mapped, .mapping = &.{0x0032,0x0032}, .status2 = .none, },
2765 .{ .cp = 0x3253, .status = .mapped, .mapping = &.{0x0032,0x0033}, .status2 = .none, },
2766 .{ .cp = 0x3254, .status = .mapped, .mapping = &.{0x0032,0x0034}, .status2 = .none, },
2767 .{ .cp = 0x3255, .status = .mapped, .mapping = &.{0x0032,0x0035}, .status2 = .none, },
2768 .{ .cp = 0x3256, .status = .mapped, .mapping = &.{0x0032,0x0036}, .status2 = .none, },
2769 .{ .cp = 0x3257, .status = .mapped, .mapping = &.{0x0032,0x0037}, .status2 = .none, },
2770 .{ .cp = 0x3258, .status = .mapped, .mapping = &.{0x0032,0x0038}, .status2 = .none, },
2771 .{ .cp = 0x3259, .status = .mapped, .mapping = &.{0x0032,0x0039}, .status2 = .none, },
2772 .{ .cp = 0x325A, .status = .mapped, .mapping = &.{0x0033,0x0030}, .status2 = .none, },
2773 .{ .cp = 0x325B, .status = .mapped, .mapping = &.{0x0033,0x0031}, .status2 = .none, },
2774 .{ .cp = 0x325C, .status = .mapped, .mapping = &.{0x0033,0x0032}, .status2 = .none, },
2775 .{ .cp = 0x325D, .status = .mapped, .mapping = &.{0x0033,0x0033}, .status2 = .none, },
2776 .{ .cp = 0x325E, .status = .mapped, .mapping = &.{0x0033,0x0034}, .status2 = .none, },
2777 .{ .cp = 0x325F, .status = .mapped, .mapping = &.{0x0033,0x0035}, .status2 = .none, },
2778 .{ .cp = 0x3260, .status = .mapped, .mapping = &.{0x1100}, .status2 = .none, },
2779 .{ .cp = 0x3261, .status = .mapped, .mapping = &.{0x1102}, .status2 = .none, },
2780 .{ .cp = 0x3262, .status = .mapped, .mapping = &.{0x1103}, .status2 = .none, },
2781 .{ .cp = 0x3263, .status = .mapped, .mapping = &.{0x1105}, .status2 = .none, },
2782 .{ .cp = 0x3264, .status = .mapped, .mapping = &.{0x1106}, .status2 = .none, },
2783 .{ .cp = 0x3265, .status = .mapped, .mapping = &.{0x1107}, .status2 = .none, },
2784 .{ .cp = 0x3266, .status = .mapped, .mapping = &.{0x1109}, .status2 = .none, },
2785 .{ .cp = 0x3267, .status = .mapped, .mapping = &.{0x110B}, .status2 = .none, },
2786 .{ .cp = 0x3268, .status = .mapped, .mapping = &.{0x110C}, .status2 = .none, },
2787 .{ .cp = 0x3269, .status = .mapped, .mapping = &.{0x110E}, .status2 = .none, },
2788 .{ .cp = 0x326A, .status = .mapped, .mapping = &.{0x110F}, .status2 = .none, },
2789 .{ .cp = 0x326B, .status = .mapped, .mapping = &.{0x1110}, .status2 = .none, },
2790 .{ .cp = 0x326C, .status = .mapped, .mapping = &.{0x1111}, .status2 = .none, },
2791 .{ .cp = 0x326D, .status = .mapped, .mapping = &.{0x1112}, .status2 = .none, },
2792 .{ .cp = 0x326E, .status = .mapped, .mapping = &.{0xAC00}, .status2 = .none, },
2793 .{ .cp = 0x326F, .status = .mapped, .mapping = &.{0xB098}, .status2 = .none, },
2794 .{ .cp = 0x3270, .status = .mapped, .mapping = &.{0xB2E4}, .status2 = .none, },
2795 .{ .cp = 0x3271, .status = .mapped, .mapping = &.{0xB77C}, .status2 = .none, },
2796 .{ .cp = 0x3272, .status = .mapped, .mapping = &.{0xB9C8}, .status2 = .none, },
2797 .{ .cp = 0x3273, .status = .mapped, .mapping = &.{0xBC14}, .status2 = .none, },
2798 .{ .cp = 0x3274, .status = .mapped, .mapping = &.{0xC0AC}, .status2 = .none, },
2799 .{ .cp = 0x3275, .status = .mapped, .mapping = &.{0xC544}, .status2 = .none, },
2800 .{ .cp = 0x3276, .status = .mapped, .mapping = &.{0xC790}, .status2 = .none, },
2801 .{ .cp = 0x3277, .status = .mapped, .mapping = &.{0xCC28}, .status2 = .none, },
2802 .{ .cp = 0x3278, .status = .mapped, .mapping = &.{0xCE74}, .status2 = .none, },
2803 .{ .cp = 0x3279, .status = .mapped, .mapping = &.{0xD0C0}, .status2 = .none, },
2804 .{ .cp = 0x327A, .status = .mapped, .mapping = &.{0xD30C}, .status2 = .none, },
2805 .{ .cp = 0x327B, .status = .mapped, .mapping = &.{0xD558}, .status2 = .none, },
2806 .{ .cp = 0x327C, .status = .mapped, .mapping = &.{0xCC38,0xACE0}, .status2 = .none, },
2807 .{ .cp = 0x327D, .status = .mapped, .mapping = &.{0xC8FC,0xC758}, .status2 = .none, },
2808 .{ .cp = 0x327E, .status = .mapped, .mapping = &.{0xC6B0}, .status2 = .none, },
2809 .{ .cp = 0x327F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
2810 .{ .cp = 0x3280, .status = .mapped, .mapping = &.{0x4E00}, .status2 = .none, },
2811 .{ .cp = 0x3281, .status = .mapped, .mapping = &.{0x4E8C}, .status2 = .none, },
2812 .{ .cp = 0x3282, .status = .mapped, .mapping = &.{0x4E09}, .status2 = .none, },
2813 .{ .cp = 0x3283, .status = .mapped, .mapping = &.{0x56DB}, .status2 = .none, },
2814 .{ .cp = 0x3284, .status = .mapped, .mapping = &.{0x4E94}, .status2 = .none, },
2815 .{ .cp = 0x3285, .status = .mapped, .mapping = &.{0x516D}, .status2 = .none, },
2816 .{ .cp = 0x3286, .status = .mapped, .mapping = &.{0x4E03}, .status2 = .none, },
2817 .{ .cp = 0x3287, .status = .mapped, .mapping = &.{0x516B}, .status2 = .none, },
2818 .{ .cp = 0x3288, .status = .mapped, .mapping = &.{0x4E5D}, .status2 = .none, },
2819 .{ .cp = 0x3289, .status = .mapped, .mapping = &.{0x5341}, .status2 = .none, },
2820 .{ .cp = 0x328A, .status = .mapped, .mapping = &.{0x6708}, .status2 = .none, },
2821 .{ .cp = 0x328B, .status = .mapped, .mapping = &.{0x706B}, .status2 = .none, },
2822 .{ .cp = 0x328C, .status = .mapped, .mapping = &.{0x6C34}, .status2 = .none, },
2823 .{ .cp = 0x328D, .status = .mapped, .mapping = &.{0x6728}, .status2 = .none, },
2824 .{ .cp = 0x328E, .status = .mapped, .mapping = &.{0x91D1}, .status2 = .none, },
2825 .{ .cp = 0x328F, .status = .mapped, .mapping = &.{0x571F}, .status2 = .none, },
2826 .{ .cp = 0x3290, .status = .mapped, .mapping = &.{0x65E5}, .status2 = .none, },
2827 .{ .cp = 0x3291, .status = .mapped, .mapping = &.{0x682A}, .status2 = .none, },
2828 .{ .cp = 0x3292, .status = .mapped, .mapping = &.{0x6709}, .status2 = .none, },
2829 .{ .cp = 0x3293, .status = .mapped, .mapping = &.{0x793E}, .status2 = .none, },
2830 .{ .cp = 0x3294, .status = .mapped, .mapping = &.{0x540D}, .status2 = .none, },
2831 .{ .cp = 0x3295, .status = .mapped, .mapping = &.{0x7279}, .status2 = .none, },
2832 .{ .cp = 0x3296, .status = .mapped, .mapping = &.{0x8CA1}, .status2 = .none, },
2833 .{ .cp = 0x3297, .status = .mapped, .mapping = &.{0x795D}, .status2 = .none, },
2834 .{ .cp = 0x3298, .status = .mapped, .mapping = &.{0x52B4}, .status2 = .none, },
2835 .{ .cp = 0x3299, .status = .mapped, .mapping = &.{0x79D8}, .status2 = .none, },
2836 .{ .cp = 0x329A, .status = .mapped, .mapping = &.{0x7537}, .status2 = .none, },
2837 .{ .cp = 0x329B, .status = .mapped, .mapping = &.{0x5973}, .status2 = .none, },
2838 .{ .cp = 0x329C, .status = .mapped, .mapping = &.{0x9069}, .status2 = .none, },
2839 .{ .cp = 0x329D, .status = .mapped, .mapping = &.{0x512A}, .status2 = .none, },
2840 .{ .cp = 0x329E, .status = .mapped, .mapping = &.{0x5370}, .status2 = .none, },
2841 .{ .cp = 0x329F, .status = .mapped, .mapping = &.{0x6CE8}, .status2 = .none, },
2842 .{ .cp = 0x32A0, .status = .mapped, .mapping = &.{0x9805}, .status2 = .none, },
2843 .{ .cp = 0x32A1, .status = .mapped, .mapping = &.{0x4F11}, .status2 = .none, },
2844 .{ .cp = 0x32A2, .status = .mapped, .mapping = &.{0x5199}, .status2 = .none, },
2845 .{ .cp = 0x32A3, .status = .mapped, .mapping = &.{0x6B63}, .status2 = .none, },
2846 .{ .cp = 0x32A4, .status = .mapped, .mapping = &.{0x4E0A}, .status2 = .none, },
2847 .{ .cp = 0x32A5, .status = .mapped, .mapping = &.{0x4E2D}, .status2 = .none, },
2848 .{ .cp = 0x32A6, .status = .mapped, .mapping = &.{0x4E0B}, .status2 = .none, },
2849 .{ .cp = 0x32A7, .status = .mapped, .mapping = &.{0x5DE6}, .status2 = .none, },
2850 .{ .cp = 0x32A8, .status = .mapped, .mapping = &.{0x53F3}, .status2 = .none, },
2851 .{ .cp = 0x32A9, .status = .mapped, .mapping = &.{0x533B}, .status2 = .none, },
2852 .{ .cp = 0x32AA, .status = .mapped, .mapping = &.{0x5B97}, .status2 = .none, },
2853 .{ .cp = 0x32AB, .status = .mapped, .mapping = &.{0x5B66}, .status2 = .none, },
2854 .{ .cp = 0x32AC, .status = .mapped, .mapping = &.{0x76E3}, .status2 = .none, },
2855 .{ .cp = 0x32AD, .status = .mapped, .mapping = &.{0x4F01}, .status2 = .none, },
2856 .{ .cp = 0x32AE, .status = .mapped, .mapping = &.{0x8CC7}, .status2 = .none, },
2857 .{ .cp = 0x32AF, .status = .mapped, .mapping = &.{0x5354}, .status2 = .none, },
2858 .{ .cp = 0x32B0, .status = .mapped, .mapping = &.{0x591C}, .status2 = .none, },
2859 .{ .cp = 0x32B1, .status = .mapped, .mapping = &.{0x0033,0x0036}, .status2 = .none, },
2860 .{ .cp = 0x32B2, .status = .mapped, .mapping = &.{0x0033,0x0037}, .status2 = .none, },
2861 .{ .cp = 0x32B3, .status = .mapped, .mapping = &.{0x0033,0x0038}, .status2 = .none, },
2862 .{ .cp = 0x32B4, .status = .mapped, .mapping = &.{0x0033,0x0039}, .status2 = .none, },
2863 .{ .cp = 0x32B5, .status = .mapped, .mapping = &.{0x0034,0x0030}, .status2 = .none, },
2864 .{ .cp = 0x32B6, .status = .mapped, .mapping = &.{0x0034,0x0031}, .status2 = .none, },
2865 .{ .cp = 0x32B7, .status = .mapped, .mapping = &.{0x0034,0x0032}, .status2 = .none, },
2866 .{ .cp = 0x32B8, .status = .mapped, .mapping = &.{0x0034,0x0033}, .status2 = .none, },
2867 .{ .cp = 0x32B9, .status = .mapped, .mapping = &.{0x0034,0x0034}, .status2 = .none, },
2868 .{ .cp = 0x32BA, .status = .mapped, .mapping = &.{0x0034,0x0035}, .status2 = .none, },
2869 .{ .cp = 0x32BB, .status = .mapped, .mapping = &.{0x0034,0x0036}, .status2 = .none, },
2870 .{ .cp = 0x32BC, .status = .mapped, .mapping = &.{0x0034,0x0037}, .status2 = .none, },
2871 .{ .cp = 0x32BD, .status = .mapped, .mapping = &.{0x0034,0x0038}, .status2 = .none, },
2872 .{ .cp = 0x32BE, .status = .mapped, .mapping = &.{0x0034,0x0039}, .status2 = .none, },
2873 .{ .cp = 0x32BF, .status = .mapped, .mapping = &.{0x0035,0x0030}, .status2 = .none, },
2874 .{ .cp = 0x32C0, .status = .mapped, .mapping = &.{0x0031,0x6708}, .status2 = .none, },
2875 .{ .cp = 0x32C1, .status = .mapped, .mapping = &.{0x0032,0x6708}, .status2 = .none, },
2876 .{ .cp = 0x32C2, .status = .mapped, .mapping = &.{0x0033,0x6708}, .status2 = .none, },
2877 .{ .cp = 0x32C3, .status = .mapped, .mapping = &.{0x0034,0x6708}, .status2 = .none, },
2878 .{ .cp = 0x32C4, .status = .mapped, .mapping = &.{0x0035,0x6708}, .status2 = .none, },
2879 .{ .cp = 0x32C5, .status = .mapped, .mapping = &.{0x0036,0x6708}, .status2 = .none, },
2880 .{ .cp = 0x32C6, .status = .mapped, .mapping = &.{0x0037,0x6708}, .status2 = .none, },
2881 .{ .cp = 0x32C7, .status = .mapped, .mapping = &.{0x0038,0x6708}, .status2 = .none, },
2882 .{ .cp = 0x32C8, .status = .mapped, .mapping = &.{0x0039,0x6708}, .status2 = .none, },
2883 .{ .cp = 0x32C9, .status = .mapped, .mapping = &.{0x0031,0x0030,0x6708}, .status2 = .none, },
2884 .{ .cp = 0x32CA, .status = .mapped, .mapping = &.{0x0031,0x0031,0x6708}, .status2 = .none, },
2885 .{ .cp = 0x32CB, .status = .mapped, .mapping = &.{0x0031,0x0032,0x6708}, .status2 = .none, },
2886 .{ .cp = 0x32CC, .status = .mapped, .mapping = &.{0x0068,0x0067}, .status2 = .none, },
2887 .{ .cp = 0x32CD, .status = .mapped, .mapping = &.{0x0065,0x0072,0x0067}, .status2 = .none, },
2888 .{ .cp = 0x32CE, .status = .mapped, .mapping = &.{0x0065,0x0076}, .status2 = .none, },
2889 .{ .cp = 0x32CF, .status = .mapped, .mapping = &.{0x006C,0x0074,0x0064}, .status2 = .none, },
2890 .{ .cp = 0x32D0, .status = .mapped, .mapping = &.{0x30A2}, .status2 = .none, },
2891 .{ .cp = 0x32D1, .status = .mapped, .mapping = &.{0x30A4}, .status2 = .none, },
2892 .{ .cp = 0x32D2, .status = .mapped, .mapping = &.{0x30A6}, .status2 = .none, },
2893 .{ .cp = 0x32D3, .status = .mapped, .mapping = &.{0x30A8}, .status2 = .none, },
2894 .{ .cp = 0x32D4, .status = .mapped, .mapping = &.{0x30AA}, .status2 = .none, },
2895 .{ .cp = 0x32D5, .status = .mapped, .mapping = &.{0x30AB}, .status2 = .none, },
2896 .{ .cp = 0x32D6, .status = .mapped, .mapping = &.{0x30AD}, .status2 = .none, },
2897 .{ .cp = 0x32D7, .status = .mapped, .mapping = &.{0x30AF}, .status2 = .none, },
2898 .{ .cp = 0x32D8, .status = .mapped, .mapping = &.{0x30B1}, .status2 = .none, },
2899 .{ .cp = 0x32D9, .status = .mapped, .mapping = &.{0x30B3}, .status2 = .none, },
2900 .{ .cp = 0x32DA, .status = .mapped, .mapping = &.{0x30B5}, .status2 = .none, },
2901 .{ .cp = 0x32DB, .status = .mapped, .mapping = &.{0x30B7}, .status2 = .none, },
2902 .{ .cp = 0x32DC, .status = .mapped, .mapping = &.{0x30B9}, .status2 = .none, },
2903 .{ .cp = 0x32DD, .status = .mapped, .mapping = &.{0x30BB}, .status2 = .none, },
2904 .{ .cp = 0x32DE, .status = .mapped, .mapping = &.{0x30BD}, .status2 = .none, },
2905 .{ .cp = 0x32DF, .status = .mapped, .mapping = &.{0x30BF}, .status2 = .none, },
2906 .{ .cp = 0x32E0, .status = .mapped, .mapping = &.{0x30C1}, .status2 = .none, },
2907 .{ .cp = 0x32E1, .status = .mapped, .mapping = &.{0x30C4}, .status2 = .none, },
2908 .{ .cp = 0x32E2, .status = .mapped, .mapping = &.{0x30C6}, .status2 = .none, },
2909 .{ .cp = 0x32E3, .status = .mapped, .mapping = &.{0x30C8}, .status2 = .none, },
2910 .{ .cp = 0x32E4, .status = .mapped, .mapping = &.{0x30CA}, .status2 = .none, },
2911 .{ .cp = 0x32E5, .status = .mapped, .mapping = &.{0x30CB}, .status2 = .none, },
2912 .{ .cp = 0x32E6, .status = .mapped, .mapping = &.{0x30CC}, .status2 = .none, },
2913 .{ .cp = 0x32E7, .status = .mapped, .mapping = &.{0x30CD}, .status2 = .none, },
2914 .{ .cp = 0x32E8, .status = .mapped, .mapping = &.{0x30CE}, .status2 = .none, },
2915 .{ .cp = 0x32E9, .status = .mapped, .mapping = &.{0x30CF}, .status2 = .none, },
2916 .{ .cp = 0x32EA, .status = .mapped, .mapping = &.{0x30D2}, .status2 = .none, },
2917 .{ .cp = 0x32EB, .status = .mapped, .mapping = &.{0x30D5}, .status2 = .none, },
2918 .{ .cp = 0x32EC, .status = .mapped, .mapping = &.{0x30D8}, .status2 = .none, },
2919 .{ .cp = 0x32ED, .status = .mapped, .mapping = &.{0x30DB}, .status2 = .none, },
2920 .{ .cp = 0x32EE, .status = .mapped, .mapping = &.{0x30DE}, .status2 = .none, },
2921 .{ .cp = 0x32EF, .status = .mapped, .mapping = &.{0x30DF}, .status2 = .none, },
2922 .{ .cp = 0x32F0, .status = .mapped, .mapping = &.{0x30E0}, .status2 = .none, },
2923 .{ .cp = 0x32F1, .status = .mapped, .mapping = &.{0x30E1}, .status2 = .none, },
2924 .{ .cp = 0x32F2, .status = .mapped, .mapping = &.{0x30E2}, .status2 = .none, },
2925 .{ .cp = 0x32F3, .status = .mapped, .mapping = &.{0x30E4}, .status2 = .none, },
2926 .{ .cp = 0x32F4, .status = .mapped, .mapping = &.{0x30E6}, .status2 = .none, },
2927 .{ .cp = 0x32F5, .status = .mapped, .mapping = &.{0x30E8}, .status2 = .none, },
2928 .{ .cp = 0x32F6, .status = .mapped, .mapping = &.{0x30E9}, .status2 = .none, },
2929 .{ .cp = 0x32F7, .status = .mapped, .mapping = &.{0x30EA}, .status2 = .none, },
2930 .{ .cp = 0x32F8, .status = .mapped, .mapping = &.{0x30EB}, .status2 = .none, },
2931 .{ .cp = 0x32F9, .status = .mapped, .mapping = &.{0x30EC}, .status2 = .none, },
2932 .{ .cp = 0x32FA, .status = .mapped, .mapping = &.{0x30ED}, .status2 = .none, },
2933 .{ .cp = 0x32FB, .status = .mapped, .mapping = &.{0x30EF}, .status2 = .none, },
2934 .{ .cp = 0x32FC, .status = .mapped, .mapping = &.{0x30F0}, .status2 = .none, },
2935 .{ .cp = 0x32FD, .status = .mapped, .mapping = &.{0x30F1}, .status2 = .none, },
2936 .{ .cp = 0x32FE, .status = .mapped, .mapping = &.{0x30F2}, .status2 = .none, },
2937 .{ .cp = 0x32FF, .status = .mapped, .mapping = &.{0x4EE4,0x548C}, .status2 = .none, },
2938 .{ .cp = 0x3300, .status = .mapped, .mapping = &.{0x30A2,0x30D1,0x30FC,0x30C8}, .status2 = .none, },
2939 .{ .cp = 0x3301, .status = .mapped, .mapping = &.{0x30A2,0x30EB,0x30D5,0x30A1}, .status2 = .none, },
2940 .{ .cp = 0x3302, .status = .mapped, .mapping = &.{0x30A2,0x30F3,0x30DA,0x30A2}, .status2 = .none, },
2941 .{ .cp = 0x3303, .status = .mapped, .mapping = &.{0x30A2,0x30FC,0x30EB}, .status2 = .none, },
2942 .{ .cp = 0x3304, .status = .mapped, .mapping = &.{0x30A4,0x30CB,0x30F3,0x30B0}, .status2 = .none, },
2943 .{ .cp = 0x3305, .status = .mapped, .mapping = &.{0x30A4,0x30F3,0x30C1}, .status2 = .none, },
2944 .{ .cp = 0x3306, .status = .mapped, .mapping = &.{0x30A6,0x30A9,0x30F3}, .status2 = .none, },
2945 .{ .cp = 0x3307, .status = .mapped, .mapping = &.{0x30A8,0x30B9,0x30AF,0x30FC,0x30C9}, .status2 = .none, },
2946 .{ .cp = 0x3308, .status = .mapped, .mapping = &.{0x30A8,0x30FC,0x30AB,0x30FC}, .status2 = .none, },
2947 .{ .cp = 0x3309, .status = .mapped, .mapping = &.{0x30AA,0x30F3,0x30B9}, .status2 = .none, },
2948 .{ .cp = 0x330A, .status = .mapped, .mapping = &.{0x30AA,0x30FC,0x30E0}, .status2 = .none, },
2949 .{ .cp = 0x330B, .status = .mapped, .mapping = &.{0x30AB,0x30A4,0x30EA}, .status2 = .none, },
2950 .{ .cp = 0x330C, .status = .mapped, .mapping = &.{0x30AB,0x30E9,0x30C3,0x30C8}, .status2 = .none, },
2951 .{ .cp = 0x330D, .status = .mapped, .mapping = &.{0x30AB,0x30ED,0x30EA,0x30FC}, .status2 = .none, },
2952 .{ .cp = 0x330E, .status = .mapped, .mapping = &.{0x30AC,0x30ED,0x30F3}, .status2 = .none, },
2953 .{ .cp = 0x330F, .status = .mapped, .mapping = &.{0x30AC,0x30F3,0x30DE}, .status2 = .none, },
2954 .{ .cp = 0x3310, .status = .mapped, .mapping = &.{0x30AE,0x30AC}, .status2 = .none, },
2955 .{ .cp = 0x3311, .status = .mapped, .mapping = &.{0x30AE,0x30CB,0x30FC}, .status2 = .none, },
2956 .{ .cp = 0x3312, .status = .mapped, .mapping = &.{0x30AD,0x30E5,0x30EA,0x30FC}, .status2 = .none, },
2957 .{ .cp = 0x3313, .status = .mapped, .mapping = &.{0x30AE,0x30EB,0x30C0,0x30FC}, .status2 = .none, },
2958 .{ .cp = 0x3314, .status = .mapped, .mapping = &.{0x30AD,0x30ED}, .status2 = .none, },
2959 .{ .cp = 0x3315, .status = .mapped, .mapping = &.{0x30AD,0x30ED,0x30B0,0x30E9,0x30E0}, .status2 = .none, },
2960 .{ .cp = 0x3316, .status = .mapped, .mapping = &.{0x30AD,0x30ED,0x30E1,0x30FC,0x30C8,0x30EB}, .status2 = .none, },
2961 .{ .cp = 0x3317, .status = .mapped, .mapping = &.{0x30AD,0x30ED,0x30EF,0x30C3,0x30C8}, .status2 = .none, },
2962 .{ .cp = 0x3318, .status = .mapped, .mapping = &.{0x30B0,0x30E9,0x30E0}, .status2 = .none, },
2963 .{ .cp = 0x3319, .status = .mapped, .mapping = &.{0x30B0,0x30E9,0x30E0,0x30C8,0x30F3}, .status2 = .none, },
2964 .{ .cp = 0x331A, .status = .mapped, .mapping = &.{0x30AF,0x30EB,0x30BC,0x30A4,0x30ED}, .status2 = .none, },
2965 .{ .cp = 0x331B, .status = .mapped, .mapping = &.{0x30AF,0x30ED,0x30FC,0x30CD}, .status2 = .none, },
2966 .{ .cp = 0x331C, .status = .mapped, .mapping = &.{0x30B1,0x30FC,0x30B9}, .status2 = .none, },
2967 .{ .cp = 0x331D, .status = .mapped, .mapping = &.{0x30B3,0x30EB,0x30CA}, .status2 = .none, },
2968 .{ .cp = 0x331E, .status = .mapped, .mapping = &.{0x30B3,0x30FC,0x30DD}, .status2 = .none, },
2969 .{ .cp = 0x331F, .status = .mapped, .mapping = &.{0x30B5,0x30A4,0x30AF,0x30EB}, .status2 = .none, },
2970 .{ .cp = 0x3320, .status = .mapped, .mapping = &.{0x30B5,0x30F3,0x30C1,0x30FC,0x30E0}, .status2 = .none, },
2971 .{ .cp = 0x3321, .status = .mapped, .mapping = &.{0x30B7,0x30EA,0x30F3,0x30B0}, .status2 = .none, },
2972 .{ .cp = 0x3322, .status = .mapped, .mapping = &.{0x30BB,0x30F3,0x30C1}, .status2 = .none, },
2973 .{ .cp = 0x3323, .status = .mapped, .mapping = &.{0x30BB,0x30F3,0x30C8}, .status2 = .none, },
2974 .{ .cp = 0x3324, .status = .mapped, .mapping = &.{0x30C0,0x30FC,0x30B9}, .status2 = .none, },
2975 .{ .cp = 0x3325, .status = .mapped, .mapping = &.{0x30C7,0x30B7}, .status2 = .none, },
2976 .{ .cp = 0x3326, .status = .mapped, .mapping = &.{0x30C9,0x30EB}, .status2 = .none, },
2977 .{ .cp = 0x3327, .status = .mapped, .mapping = &.{0x30C8,0x30F3}, .status2 = .none, },
2978 .{ .cp = 0x3328, .status = .mapped, .mapping = &.{0x30CA,0x30CE}, .status2 = .none, },
2979 .{ .cp = 0x3329, .status = .mapped, .mapping = &.{0x30CE,0x30C3,0x30C8}, .status2 = .none, },
2980 .{ .cp = 0x332A, .status = .mapped, .mapping = &.{0x30CF,0x30A4,0x30C4}, .status2 = .none, },
2981 .{ .cp = 0x332B, .status = .mapped, .mapping = &.{0x30D1,0x30FC,0x30BB,0x30F3,0x30C8}, .status2 = .none, },
2982 .{ .cp = 0x332C, .status = .mapped, .mapping = &.{0x30D1,0x30FC,0x30C4}, .status2 = .none, },
2983 .{ .cp = 0x332D, .status = .mapped, .mapping = &.{0x30D0,0x30FC,0x30EC,0x30EB}, .status2 = .none, },
2984 .{ .cp = 0x332E, .status = .mapped, .mapping = &.{0x30D4,0x30A2,0x30B9,0x30C8,0x30EB}, .status2 = .none, },
2985 .{ .cp = 0x332F, .status = .mapped, .mapping = &.{0x30D4,0x30AF,0x30EB}, .status2 = .none, },
2986 .{ .cp = 0x3330, .status = .mapped, .mapping = &.{0x30D4,0x30B3}, .status2 = .none, },
2987 .{ .cp = 0x3331, .status = .mapped, .mapping = &.{0x30D3,0x30EB}, .status2 = .none, },
2988 .{ .cp = 0x3332, .status = .mapped, .mapping = &.{0x30D5,0x30A1,0x30E9,0x30C3,0x30C9}, .status2 = .none, },
2989 .{ .cp = 0x3333, .status = .mapped, .mapping = &.{0x30D5,0x30A3,0x30FC,0x30C8}, .status2 = .none, },
2990 .{ .cp = 0x3334, .status = .mapped, .mapping = &.{0x30D6,0x30C3,0x30B7,0x30A7,0x30EB}, .status2 = .none, },
2991 .{ .cp = 0x3335, .status = .mapped, .mapping = &.{0x30D5,0x30E9,0x30F3}, .status2 = .none, },
2992 .{ .cp = 0x3336, .status = .mapped, .mapping = &.{0x30D8,0x30AF,0x30BF,0x30FC,0x30EB}, .status2 = .none, },
2993 .{ .cp = 0x3337, .status = .mapped, .mapping = &.{0x30DA,0x30BD}, .status2 = .none, },
2994 .{ .cp = 0x3338, .status = .mapped, .mapping = &.{0x30DA,0x30CB,0x30D2}, .status2 = .none, },
2995 .{ .cp = 0x3339, .status = .mapped, .mapping = &.{0x30D8,0x30EB,0x30C4}, .status2 = .none, },
2996 .{ .cp = 0x333A, .status = .mapped, .mapping = &.{0x30DA,0x30F3,0x30B9}, .status2 = .none, },
2997 .{ .cp = 0x333B, .status = .mapped, .mapping = &.{0x30DA,0x30FC,0x30B8}, .status2 = .none, },
2998 .{ .cp = 0x333C, .status = .mapped, .mapping = &.{0x30D9,0x30FC,0x30BF}, .status2 = .none, },
2999 .{ .cp = 0x333D, .status = .mapped, .mapping = &.{0x30DD,0x30A4,0x30F3,0x30C8}, .status2 = .none, },
3000 .{ .cp = 0x333E, .status = .mapped, .mapping = &.{0x30DC,0x30EB,0x30C8}, .status2 = .none, },
3001 .{ .cp = 0x333F, .status = .mapped, .mapping = &.{0x30DB,0x30F3}, .status2 = .none, },
3002 .{ .cp = 0x3340, .status = .mapped, .mapping = &.{0x30DD,0x30F3,0x30C9}, .status2 = .none, },
3003 .{ .cp = 0x3341, .status = .mapped, .mapping = &.{0x30DB,0x30FC,0x30EB}, .status2 = .none, },
3004 .{ .cp = 0x3342, .status = .mapped, .mapping = &.{0x30DB,0x30FC,0x30F3}, .status2 = .none, },
3005 .{ .cp = 0x3343, .status = .mapped, .mapping = &.{0x30DE,0x30A4,0x30AF,0x30ED}, .status2 = .none, },
3006 .{ .cp = 0x3344, .status = .mapped, .mapping = &.{0x30DE,0x30A4,0x30EB}, .status2 = .none, },
3007 .{ .cp = 0x3345, .status = .mapped, .mapping = &.{0x30DE,0x30C3,0x30CF}, .status2 = .none, },
3008 .{ .cp = 0x3346, .status = .mapped, .mapping = &.{0x30DE,0x30EB,0x30AF}, .status2 = .none, },
3009 .{ .cp = 0x3347, .status = .mapped, .mapping = &.{0x30DE,0x30F3,0x30B7,0x30E7,0x30F3}, .status2 = .none, },
3010 .{ .cp = 0x3348, .status = .mapped, .mapping = &.{0x30DF,0x30AF,0x30ED,0x30F3}, .status2 = .none, },
3011 .{ .cp = 0x3349, .status = .mapped, .mapping = &.{0x30DF,0x30EA}, .status2 = .none, },
3012 .{ .cp = 0x334A, .status = .mapped, .mapping = &.{0x30DF,0x30EA,0x30D0,0x30FC,0x30EB}, .status2 = .none, },
3013 .{ .cp = 0x334B, .status = .mapped, .mapping = &.{0x30E1,0x30AC}, .status2 = .none, },
3014 .{ .cp = 0x334C, .status = .mapped, .mapping = &.{0x30E1,0x30AC,0x30C8,0x30F3}, .status2 = .none, },
3015 .{ .cp = 0x334D, .status = .mapped, .mapping = &.{0x30E1,0x30FC,0x30C8,0x30EB}, .status2 = .none, },
3016 .{ .cp = 0x334E, .status = .mapped, .mapping = &.{0x30E4,0x30FC,0x30C9}, .status2 = .none, },
3017 .{ .cp = 0x334F, .status = .mapped, .mapping = &.{0x30E4,0x30FC,0x30EB}, .status2 = .none, },
3018 .{ .cp = 0x3350, .status = .mapped, .mapping = &.{0x30E6,0x30A2,0x30F3}, .status2 = .none, },
3019 .{ .cp = 0x3351, .status = .mapped, .mapping = &.{0x30EA,0x30C3,0x30C8,0x30EB}, .status2 = .none, },
3020 .{ .cp = 0x3352, .status = .mapped, .mapping = &.{0x30EA,0x30E9}, .status2 = .none, },
3021 .{ .cp = 0x3353, .status = .mapped, .mapping = &.{0x30EB,0x30D4,0x30FC}, .status2 = .none, },
3022 .{ .cp = 0x3354, .status = .mapped, .mapping = &.{0x30EB,0x30FC,0x30D6,0x30EB}, .status2 = .none, },
3023 .{ .cp = 0x3355, .status = .mapped, .mapping = &.{0x30EC,0x30E0}, .status2 = .none, },
3024 .{ .cp = 0x3356, .status = .mapped, .mapping = &.{0x30EC,0x30F3,0x30C8,0x30B2,0x30F3}, .status2 = .none, },
3025 .{ .cp = 0x3357, .status = .mapped, .mapping = &.{0x30EF,0x30C3,0x30C8}, .status2 = .none, },
3026 .{ .cp = 0x3358, .status = .mapped, .mapping = &.{0x0030,0x70B9}, .status2 = .none, },
3027 .{ .cp = 0x3359, .status = .mapped, .mapping = &.{0x0031,0x70B9}, .status2 = .none, },
3028 .{ .cp = 0x335A, .status = .mapped, .mapping = &.{0x0032,0x70B9}, .status2 = .none, },
3029 .{ .cp = 0x335B, .status = .mapped, .mapping = &.{0x0033,0x70B9}, .status2 = .none, },
3030 .{ .cp = 0x335C, .status = .mapped, .mapping = &.{0x0034,0x70B9}, .status2 = .none, },
3031 .{ .cp = 0x335D, .status = .mapped, .mapping = &.{0x0035,0x70B9}, .status2 = .none, },
3032 .{ .cp = 0x335E, .status = .mapped, .mapping = &.{0x0036,0x70B9}, .status2 = .none, },
3033 .{ .cp = 0x335F, .status = .mapped, .mapping = &.{0x0037,0x70B9}, .status2 = .none, },
3034 .{ .cp = 0x3360, .status = .mapped, .mapping = &.{0x0038,0x70B9}, .status2 = .none, },
3035 .{ .cp = 0x3361, .status = .mapped, .mapping = &.{0x0039,0x70B9}, .status2 = .none, },
3036 .{ .cp = 0x3362, .status = .mapped, .mapping = &.{0x0031,0x0030,0x70B9}, .status2 = .none, },
3037 .{ .cp = 0x3363, .status = .mapped, .mapping = &.{0x0031,0x0031,0x70B9}, .status2 = .none, },
3038 .{ .cp = 0x3364, .status = .mapped, .mapping = &.{0x0031,0x0032,0x70B9}, .status2 = .none, },
3039 .{ .cp = 0x3365, .status = .mapped, .mapping = &.{0x0031,0x0033,0x70B9}, .status2 = .none, },
3040 .{ .cp = 0x3366, .status = .mapped, .mapping = &.{0x0031,0x0034,0x70B9}, .status2 = .none, },
3041 .{ .cp = 0x3367, .status = .mapped, .mapping = &.{0x0031,0x0035,0x70B9}, .status2 = .none, },
3042 .{ .cp = 0x3368, .status = .mapped, .mapping = &.{0x0031,0x0036,0x70B9}, .status2 = .none, },
3043 .{ .cp = 0x3369, .status = .mapped, .mapping = &.{0x0031,0x0037,0x70B9}, .status2 = .none, },
3044 .{ .cp = 0x336A, .status = .mapped, .mapping = &.{0x0031,0x0038,0x70B9}, .status2 = .none, },
3045 .{ .cp = 0x336B, .status = .mapped, .mapping = &.{0x0031,0x0039,0x70B9}, .status2 = .none, },
3046 .{ .cp = 0x336C, .status = .mapped, .mapping = &.{0x0032,0x0030,0x70B9}, .status2 = .none, },
3047 .{ .cp = 0x336D, .status = .mapped, .mapping = &.{0x0032,0x0031,0x70B9}, .status2 = .none, },
3048 .{ .cp = 0x336E, .status = .mapped, .mapping = &.{0x0032,0x0032,0x70B9}, .status2 = .none, },
3049 .{ .cp = 0x336F, .status = .mapped, .mapping = &.{0x0032,0x0033,0x70B9}, .status2 = .none, },
3050 .{ .cp = 0x3370, .status = .mapped, .mapping = &.{0x0032,0x0034,0x70B9}, .status2 = .none, },
3051 .{ .cp = 0x3371, .status = .mapped, .mapping = &.{0x0068,0x0070,0x0061}, .status2 = .none, },
3052 .{ .cp = 0x3372, .status = .mapped, .mapping = &.{0x0064,0x0061}, .status2 = .none, },
3053 .{ .cp = 0x3373, .status = .mapped, .mapping = &.{0x0061,0x0075}, .status2 = .none, },
3054 .{ .cp = 0x3374, .status = .mapped, .mapping = &.{0x0062,0x0061,0x0072}, .status2 = .none, },
3055 .{ .cp = 0x3375, .status = .mapped, .mapping = &.{0x006F,0x0076}, .status2 = .none, },
3056 .{ .cp = 0x3376, .status = .mapped, .mapping = &.{0x0070,0x0063}, .status2 = .none, },
3057 .{ .cp = 0x3377, .status = .mapped, .mapping = &.{0x0064,0x006D}, .status2 = .none, },
3058 .{ .cp = 0x3378, .status = .mapped, .mapping = &.{0x0064,0x006D,0x0032}, .status2 = .none, },
3059 .{ .cp = 0x3379, .status = .mapped, .mapping = &.{0x0064,0x006D,0x0033}, .status2 = .none, },
3060 .{ .cp = 0x337A, .status = .mapped, .mapping = &.{0x0069,0x0075}, .status2 = .none, },
3061 .{ .cp = 0x337B, .status = .mapped, .mapping = &.{0x5E73,0x6210}, .status2 = .none, },
3062 .{ .cp = 0x337C, .status = .mapped, .mapping = &.{0x662D,0x548C}, .status2 = .none, },
3063 .{ .cp = 0x337D, .status = .mapped, .mapping = &.{0x5927,0x6B63}, .status2 = .none, },
3064 .{ .cp = 0x337E, .status = .mapped, .mapping = &.{0x660E,0x6CBB}, .status2 = .none, },
3065 .{ .cp = 0x337F, .status = .mapped, .mapping = &.{0x682A,0x5F0F,0x4F1A,0x793E}, .status2 = .none, },
3066 .{ .cp = 0x3380, .status = .mapped, .mapping = &.{0x0070,0x0061}, .status2 = .none, },
3067 .{ .cp = 0x3381, .status = .mapped, .mapping = &.{0x006E,0x0061}, .status2 = .none, },
3068 .{ .cp = 0x3382, .status = .mapped, .mapping = &.{0x03BC,0x0061}, .status2 = .none, },
3069 .{ .cp = 0x3383, .status = .mapped, .mapping = &.{0x006D,0x0061}, .status2 = .none, },
3070 .{ .cp = 0x3384, .status = .mapped, .mapping = &.{0x006B,0x0061}, .status2 = .none, },
3071 .{ .cp = 0x3385, .status = .mapped, .mapping = &.{0x006B,0x0062}, .status2 = .none, },
3072 .{ .cp = 0x3386, .status = .mapped, .mapping = &.{0x006D,0x0062}, .status2 = .none, },
3073 .{ .cp = 0x3387, .status = .mapped, .mapping = &.{0x0067,0x0062}, .status2 = .none, },
3074 .{ .cp = 0x3388, .status = .mapped, .mapping = &.{0x0063,0x0061,0x006C}, .status2 = .none, },
3075 .{ .cp = 0x3389, .status = .mapped, .mapping = &.{0x006B,0x0063,0x0061,0x006C}, .status2 = .none, },
3076 .{ .cp = 0x338A, .status = .mapped, .mapping = &.{0x0070,0x0066}, .status2 = .none, },
3077 .{ .cp = 0x338B, .status = .mapped, .mapping = &.{0x006E,0x0066}, .status2 = .none, },
3078 .{ .cp = 0x338C, .status = .mapped, .mapping = &.{0x03BC,0x0066}, .status2 = .none, },
3079 .{ .cp = 0x338D, .status = .mapped, .mapping = &.{0x03BC,0x0067}, .status2 = .none, },
3080 .{ .cp = 0x338E, .status = .mapped, .mapping = &.{0x006D,0x0067}, .status2 = .none, },
3081 .{ .cp = 0x338F, .status = .mapped, .mapping = &.{0x006B,0x0067}, .status2 = .none, },
3082 .{ .cp = 0x3390, .status = .mapped, .mapping = &.{0x0068,0x007A}, .status2 = .none, },
3083 .{ .cp = 0x3391, .status = .mapped, .mapping = &.{0x006B,0x0068,0x007A}, .status2 = .none, },
3084 .{ .cp = 0x3392, .status = .mapped, .mapping = &.{0x006D,0x0068,0x007A}, .status2 = .none, },
3085 .{ .cp = 0x3393, .status = .mapped, .mapping = &.{0x0067,0x0068,0x007A}, .status2 = .none, },
3086 .{ .cp = 0x3394, .status = .mapped, .mapping = &.{0x0074,0x0068,0x007A}, .status2 = .none, },
3087 .{ .cp = 0x3395, .status = .mapped, .mapping = &.{0x03BC,0x006C}, .status2 = .none, },
3088 .{ .cp = 0x3396, .status = .mapped, .mapping = &.{0x006D,0x006C}, .status2 = .none, },
3089 .{ .cp = 0x3397, .status = .mapped, .mapping = &.{0x0064,0x006C}, .status2 = .none, },
3090 .{ .cp = 0x3398, .status = .mapped, .mapping = &.{0x006B,0x006C}, .status2 = .none, },
3091 .{ .cp = 0x3399, .status = .mapped, .mapping = &.{0x0066,0x006D}, .status2 = .none, },
3092 .{ .cp = 0x339A, .status = .mapped, .mapping = &.{0x006E,0x006D}, .status2 = .none, },
3093 .{ .cp = 0x339B, .status = .mapped, .mapping = &.{0x03BC,0x006D}, .status2 = .none, },
3094 .{ .cp = 0x339C, .status = .mapped, .mapping = &.{0x006D,0x006D}, .status2 = .none, },
3095 .{ .cp = 0x339D, .status = .mapped, .mapping = &.{0x0063,0x006D}, .status2 = .none, },
3096 .{ .cp = 0x339E, .status = .mapped, .mapping = &.{0x006B,0x006D}, .status2 = .none, },
3097 .{ .cp = 0x339F, .status = .mapped, .mapping = &.{0x006D,0x006D,0x0032}, .status2 = .none, },
3098 .{ .cp = 0x33A0, .status = .mapped, .mapping = &.{0x0063,0x006D,0x0032}, .status2 = .none, },
3099 .{ .cp = 0x33A1, .status = .mapped, .mapping = &.{0x006D,0x0032}, .status2 = .none, },
3100 .{ .cp = 0x33A2, .status = .mapped, .mapping = &.{0x006B,0x006D,0x0032}, .status2 = .none, },
3101 .{ .cp = 0x33A3, .status = .mapped, .mapping = &.{0x006D,0x006D,0x0033}, .status2 = .none, },
3102 .{ .cp = 0x33A4, .status = .mapped, .mapping = &.{0x0063,0x006D,0x0033}, .status2 = .none, },
3103 .{ .cp = 0x33A5, .status = .mapped, .mapping = &.{0x006D,0x0033}, .status2 = .none, },
3104 .{ .cp = 0x33A6, .status = .mapped, .mapping = &.{0x006B,0x006D,0x0033}, .status2 = .none, },
3105 .{ .cp = 0x33A7, .status = .mapped, .mapping = &.{0x006D,0x2215,0x0073}, .status2 = .none, },
3106 .{ .cp = 0x33A8, .status = .mapped, .mapping = &.{0x006D,0x2215,0x0073,0x0032}, .status2 = .none, },
3107 .{ .cp = 0x33A9, .status = .mapped, .mapping = &.{0x0070,0x0061}, .status2 = .none, },
3108 .{ .cp = 0x33AA, .status = .mapped, .mapping = &.{0x006B,0x0070,0x0061}, .status2 = .none, },
3109 .{ .cp = 0x33AB, .status = .mapped, .mapping = &.{0x006D,0x0070,0x0061}, .status2 = .none, },
3110 .{ .cp = 0x33AC, .status = .mapped, .mapping = &.{0x0067,0x0070,0x0061}, .status2 = .none, },
3111 .{ .cp = 0x33AD, .status = .mapped, .mapping = &.{0x0072,0x0061,0x0064}, .status2 = .none, },
3112 .{ .cp = 0x33AE, .status = .mapped, .mapping = &.{0x0072,0x0061,0x0064,0x2215,0x0073}, .status2 = .none, },
3113 .{ .cp = 0x33AF, .status = .mapped, .mapping = &.{0x0072,0x0061,0x0064,0x2215,0x0073,0x0032}, .status2 = .none, },
3114 .{ .cp = 0x33B0, .status = .mapped, .mapping = &.{0x0070,0x0073}, .status2 = .none, },
3115 .{ .cp = 0x33B1, .status = .mapped, .mapping = &.{0x006E,0x0073}, .status2 = .none, },
3116 .{ .cp = 0x33B2, .status = .mapped, .mapping = &.{0x03BC,0x0073}, .status2 = .none, },
3117 .{ .cp = 0x33B3, .status = .mapped, .mapping = &.{0x006D,0x0073}, .status2 = .none, },
3118 .{ .cp = 0x33B4, .status = .mapped, .mapping = &.{0x0070,0x0076}, .status2 = .none, },
3119 .{ .cp = 0x33B5, .status = .mapped, .mapping = &.{0x006E,0x0076}, .status2 = .none, },
3120 .{ .cp = 0x33B6, .status = .mapped, .mapping = &.{0x03BC,0x0076}, .status2 = .none, },
3121 .{ .cp = 0x33B7, .status = .mapped, .mapping = &.{0x006D,0x0076}, .status2 = .none, },
3122 .{ .cp = 0x33B8, .status = .mapped, .mapping = &.{0x006B,0x0076}, .status2 = .none, },
3123 .{ .cp = 0x33B9, .status = .mapped, .mapping = &.{0x006D,0x0076}, .status2 = .none, },
3124 .{ .cp = 0x33BA, .status = .mapped, .mapping = &.{0x0070,0x0077}, .status2 = .none, },
3125 .{ .cp = 0x33BB, .status = .mapped, .mapping = &.{0x006E,0x0077}, .status2 = .none, },
3126 .{ .cp = 0x33BC, .status = .mapped, .mapping = &.{0x03BC,0x0077}, .status2 = .none, },
3127 .{ .cp = 0x33BD, .status = .mapped, .mapping = &.{0x006D,0x0077}, .status2 = .none, },
3128 .{ .cp = 0x33BE, .status = .mapped, .mapping = &.{0x006B,0x0077}, .status2 = .none, },
3129 .{ .cp = 0x33BF, .status = .mapped, .mapping = &.{0x006D,0x0077}, .status2 = .none, },
3130 .{ .cp = 0x33C0, .status = .mapped, .mapping = &.{0x006B,0x03C9}, .status2 = .none, },
3131 .{ .cp = 0x33C1, .status = .mapped, .mapping = &.{0x006D,0x03C9}, .status2 = .none, },
3132 .{ .cp = 0x33C2, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
3133 .{ .cp = 0x33C3, .status = .mapped, .mapping = &.{0x0062,0x0071}, .status2 = .none, },
3134 .{ .cp = 0x33C4, .status = .mapped, .mapping = &.{0x0063,0x0063}, .status2 = .none, },
3135 .{ .cp = 0x33C5, .status = .mapped, .mapping = &.{0x0063,0x0064}, .status2 = .none, },
3136 .{ .cp = 0x33C6, .status = .mapped, .mapping = &.{0x0063,0x2215,0x006B,0x0067}, .status2 = .none, },
3137 .{ .cp = 0x33C7, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
3138 .{ .cp = 0x33C8, .status = .mapped, .mapping = &.{0x0064,0x0062}, .status2 = .none, },
3139 .{ .cp = 0x33C9, .status = .mapped, .mapping = &.{0x0067,0x0079}, .status2 = .none, },
3140 .{ .cp = 0x33CA, .status = .mapped, .mapping = &.{0x0068,0x0061}, .status2 = .none, },
3141 .{ .cp = 0x33CB, .status = .mapped, .mapping = &.{0x0068,0x0070}, .status2 = .none, },
3142 .{ .cp = 0x33CC, .status = .mapped, .mapping = &.{0x0069,0x006E}, .status2 = .none, },
3143 .{ .cp = 0x33CD, .status = .mapped, .mapping = &.{0x006B,0x006B}, .status2 = .none, },
3144 .{ .cp = 0x33CE, .status = .mapped, .mapping = &.{0x006B,0x006D}, .status2 = .none, },
3145 .{ .cp = 0x33CF, .status = .mapped, .mapping = &.{0x006B,0x0074}, .status2 = .none, },
3146 .{ .cp = 0x33D0, .status = .mapped, .mapping = &.{0x006C,0x006D}, .status2 = .none, },
3147 .{ .cp = 0x33D1, .status = .mapped, .mapping = &.{0x006C,0x006E}, .status2 = .none, },
3148 .{ .cp = 0x33D2, .status = .mapped, .mapping = &.{0x006C,0x006F,0x0067}, .status2 = .none, },
3149 .{ .cp = 0x33D3, .status = .mapped, .mapping = &.{0x006C,0x0078}, .status2 = .none, },
3150 .{ .cp = 0x33D4, .status = .mapped, .mapping = &.{0x006D,0x0062}, .status2 = .none, },
3151 .{ .cp = 0x33D5, .status = .mapped, .mapping = &.{0x006D,0x0069,0x006C}, .status2 = .none, },
3152 .{ .cp = 0x33D6, .status = .mapped, .mapping = &.{0x006D,0x006F,0x006C}, .status2 = .none, },
3153 .{ .cp = 0x33D7, .status = .mapped, .mapping = &.{0x0070,0x0068}, .status2 = .none, },
3154 .{ .cp = 0x33D8, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
3155 .{ .cp = 0x33D9, .status = .mapped, .mapping = &.{0x0070,0x0070,0x006D}, .status2 = .none, },
3156 .{ .cp = 0x33DA, .status = .mapped, .mapping = &.{0x0070,0x0072}, .status2 = .none, },
3157 .{ .cp = 0x33DB, .status = .mapped, .mapping = &.{0x0073,0x0072}, .status2 = .none, },
3158 .{ .cp = 0x33DC, .status = .mapped, .mapping = &.{0x0073,0x0076}, .status2 = .none, },
3159 .{ .cp = 0x33DD, .status = .mapped, .mapping = &.{0x0077,0x0062}, .status2 = .none, },
3160 .{ .cp = 0x33DE, .status = .mapped, .mapping = &.{0x0076,0x2215,0x006D}, .status2 = .none, },
3161 .{ .cp = 0x33DF, .status = .mapped, .mapping = &.{0x0061,0x2215,0x006D}, .status2 = .none, },
3162 .{ .cp = 0x33E0, .status = .mapped, .mapping = &.{0x0031,0x65E5}, .status2 = .none, },
3163 .{ .cp = 0x33E1, .status = .mapped, .mapping = &.{0x0032,0x65E5}, .status2 = .none, },
3164 .{ .cp = 0x33E2, .status = .mapped, .mapping = &.{0x0033,0x65E5}, .status2 = .none, },
3165 .{ .cp = 0x33E3, .status = .mapped, .mapping = &.{0x0034,0x65E5}, .status2 = .none, },
3166 .{ .cp = 0x33E4, .status = .mapped, .mapping = &.{0x0035,0x65E5}, .status2 = .none, },
3167 .{ .cp = 0x33E5, .status = .mapped, .mapping = &.{0x0036,0x65E5}, .status2 = .none, },
3168 .{ .cp = 0x33E6, .status = .mapped, .mapping = &.{0x0037,0x65E5}, .status2 = .none, },
3169 .{ .cp = 0x33E7, .status = .mapped, .mapping = &.{0x0038,0x65E5}, .status2 = .none, },
3170 .{ .cp = 0x33E8, .status = .mapped, .mapping = &.{0x0039,0x65E5}, .status2 = .none, },
3171 .{ .cp = 0x33E9, .status = .mapped, .mapping = &.{0x0031,0x0030,0x65E5}, .status2 = .none, },
3172 .{ .cp = 0x33EA, .status = .mapped, .mapping = &.{0x0031,0x0031,0x65E5}, .status2 = .none, },
3173 .{ .cp = 0x33EB, .status = .mapped, .mapping = &.{0x0031,0x0032,0x65E5}, .status2 = .none, },
3174 .{ .cp = 0x33EC, .status = .mapped, .mapping = &.{0x0031,0x0033,0x65E5}, .status2 = .none, },
3175 .{ .cp = 0x33ED, .status = .mapped, .mapping = &.{0x0031,0x0034,0x65E5}, .status2 = .none, },
3176 .{ .cp = 0x33EE, .status = .mapped, .mapping = &.{0x0031,0x0035,0x65E5}, .status2 = .none, },
3177 .{ .cp = 0x33EF, .status = .mapped, .mapping = &.{0x0031,0x0036,0x65E5}, .status2 = .none, },
3178 .{ .cp = 0x33F0, .status = .mapped, .mapping = &.{0x0031,0x0037,0x65E5}, .status2 = .none, },
3179 .{ .cp = 0x33F1, .status = .mapped, .mapping = &.{0x0031,0x0038,0x65E5}, .status2 = .none, },
3180 .{ .cp = 0x33F2, .status = .mapped, .mapping = &.{0x0031,0x0039,0x65E5}, .status2 = .none, },
3181 .{ .cp = 0x33F3, .status = .mapped, .mapping = &.{0x0032,0x0030,0x65E5}, .status2 = .none, },
3182 .{ .cp = 0x33F4, .status = .mapped, .mapping = &.{0x0032,0x0031,0x65E5}, .status2 = .none, },
3183 .{ .cp = 0x33F5, .status = .mapped, .mapping = &.{0x0032,0x0032,0x65E5}, .status2 = .none, },
3184 .{ .cp = 0x33F6, .status = .mapped, .mapping = &.{0x0032,0x0033,0x65E5}, .status2 = .none, },
3185 .{ .cp = 0x33F7, .status = .mapped, .mapping = &.{0x0032,0x0034,0x65E5}, .status2 = .none, },
3186 .{ .cp = 0x33F8, .status = .mapped, .mapping = &.{0x0032,0x0035,0x65E5}, .status2 = .none, },
3187 .{ .cp = 0x33F9, .status = .mapped, .mapping = &.{0x0032,0x0036,0x65E5}, .status2 = .none, },
3188 .{ .cp = 0x33FA, .status = .mapped, .mapping = &.{0x0032,0x0037,0x65E5}, .status2 = .none, },
3189 .{ .cp = 0x33FB, .status = .mapped, .mapping = &.{0x0032,0x0038,0x65E5}, .status2 = .none, },
3190 .{ .cp = 0x33FC, .status = .mapped, .mapping = &.{0x0032,0x0039,0x65E5}, .status2 = .none, },
3191 .{ .cp = 0x33FD, .status = .mapped, .mapping = &.{0x0033,0x0030,0x65E5}, .status2 = .none, },
3192 .{ .cp = 0x33FE, .status = .mapped, .mapping = &.{0x0033,0x0031,0x65E5}, .status2 = .none, },
3193 .{ .cp = 0x33FF, .status = .mapped, .mapping = &.{0x0067,0x0061,0x006C}, .status2 = .none, },
3194 .{ .cp = 0x9FCC, .status = .valid, .mapping = &.{}, .status2 = .none, },
3195 .{ .cp = 0xA4B4, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
3196 .{ .cp = 0xA4C1, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
3197 .{ .cp = 0xA4C5, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
3198 .{ .cp = 0xA4C6, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
3199 .{ .cp = 0xA640, .status = .mapped, .mapping = &.{0xA641}, .status2 = .none, },
3200 .{ .cp = 0xA641, .status = .valid, .mapping = &.{}, .status2 = .none, },
3201 .{ .cp = 0xA642, .status = .mapped, .mapping = &.{0xA643}, .status2 = .none, },
3202 .{ .cp = 0xA643, .status = .valid, .mapping = &.{}, .status2 = .none, },
3203 .{ .cp = 0xA644, .status = .mapped, .mapping = &.{0xA645}, .status2 = .none, },
3204 .{ .cp = 0xA645, .status = .valid, .mapping = &.{}, .status2 = .none, },
3205 .{ .cp = 0xA646, .status = .mapped, .mapping = &.{0xA647}, .status2 = .none, },
3206 .{ .cp = 0xA647, .status = .valid, .mapping = &.{}, .status2 = .none, },
3207 .{ .cp = 0xA648, .status = .mapped, .mapping = &.{0xA649}, .status2 = .none, },
3208 .{ .cp = 0xA649, .status = .valid, .mapping = &.{}, .status2 = .none, },
3209 .{ .cp = 0xA64A, .status = .mapped, .mapping = &.{0xA64B}, .status2 = .none, },
3210 .{ .cp = 0xA64B, .status = .valid, .mapping = &.{}, .status2 = .none, },
3211 .{ .cp = 0xA64C, .status = .mapped, .mapping = &.{0xA64D}, .status2 = .none, },
3212 .{ .cp = 0xA64D, .status = .valid, .mapping = &.{}, .status2 = .none, },
3213 .{ .cp = 0xA64E, .status = .mapped, .mapping = &.{0xA64F}, .status2 = .none, },
3214 .{ .cp = 0xA64F, .status = .valid, .mapping = &.{}, .status2 = .none, },
3215 .{ .cp = 0xA650, .status = .mapped, .mapping = &.{0xA651}, .status2 = .none, },
3216 .{ .cp = 0xA651, .status = .valid, .mapping = &.{}, .status2 = .none, },
3217 .{ .cp = 0xA652, .status = .mapped, .mapping = &.{0xA653}, .status2 = .none, },
3218 .{ .cp = 0xA653, .status = .valid, .mapping = &.{}, .status2 = .none, },
3219 .{ .cp = 0xA654, .status = .mapped, .mapping = &.{0xA655}, .status2 = .none, },
3220 .{ .cp = 0xA655, .status = .valid, .mapping = &.{}, .status2 = .none, },
3221 .{ .cp = 0xA656, .status = .mapped, .mapping = &.{0xA657}, .status2 = .none, },
3222 .{ .cp = 0xA657, .status = .valid, .mapping = &.{}, .status2 = .none, },
3223 .{ .cp = 0xA658, .status = .mapped, .mapping = &.{0xA659}, .status2 = .none, },
3224 .{ .cp = 0xA659, .status = .valid, .mapping = &.{}, .status2 = .none, },
3225 .{ .cp = 0xA65A, .status = .mapped, .mapping = &.{0xA65B}, .status2 = .none, },
3226 .{ .cp = 0xA65B, .status = .valid, .mapping = &.{}, .status2 = .none, },
3227 .{ .cp = 0xA65C, .status = .mapped, .mapping = &.{0xA65D}, .status2 = .none, },
3228 .{ .cp = 0xA65D, .status = .valid, .mapping = &.{}, .status2 = .none, },
3229 .{ .cp = 0xA65E, .status = .mapped, .mapping = &.{0xA65F}, .status2 = .none, },
3230 .{ .cp = 0xA65F, .status = .valid, .mapping = &.{}, .status2 = .none, },
3231 .{ .cp = 0xA660, .status = .mapped, .mapping = &.{0xA661}, .status2 = .none, },
3232 .{ .cp = 0xA661, .status = .valid, .mapping = &.{}, .status2 = .none, },
3233 .{ .cp = 0xA662, .status = .mapped, .mapping = &.{0xA663}, .status2 = .none, },
3234 .{ .cp = 0xA663, .status = .valid, .mapping = &.{}, .status2 = .none, },
3235 .{ .cp = 0xA664, .status = .mapped, .mapping = &.{0xA665}, .status2 = .none, },
3236 .{ .cp = 0xA665, .status = .valid, .mapping = &.{}, .status2 = .none, },
3237 .{ .cp = 0xA666, .status = .mapped, .mapping = &.{0xA667}, .status2 = .none, },
3238 .{ .cp = 0xA667, .status = .valid, .mapping = &.{}, .status2 = .none, },
3239 .{ .cp = 0xA668, .status = .mapped, .mapping = &.{0xA669}, .status2 = .none, },
3240 .{ .cp = 0xA669, .status = .valid, .mapping = &.{}, .status2 = .none, },
3241 .{ .cp = 0xA66A, .status = .mapped, .mapping = &.{0xA66B}, .status2 = .none, },
3242 .{ .cp = 0xA66B, .status = .valid, .mapping = &.{}, .status2 = .none, },
3243 .{ .cp = 0xA66C, .status = .mapped, .mapping = &.{0xA66D}, .status2 = .none, },
3244 .{ .cp = 0xA67E, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
3245 .{ .cp = 0xA67F, .status = .valid, .mapping = &.{}, .status2 = .none, },
3246 .{ .cp = 0xA680, .status = .mapped, .mapping = &.{0xA681}, .status2 = .none, },
3247 .{ .cp = 0xA681, .status = .valid, .mapping = &.{}, .status2 = .none, },
3248 .{ .cp = 0xA682, .status = .mapped, .mapping = &.{0xA683}, .status2 = .none, },
3249 .{ .cp = 0xA683, .status = .valid, .mapping = &.{}, .status2 = .none, },
3250 .{ .cp = 0xA684, .status = .mapped, .mapping = &.{0xA685}, .status2 = .none, },
3251 .{ .cp = 0xA685, .status = .valid, .mapping = &.{}, .status2 = .none, },
3252 .{ .cp = 0xA686, .status = .mapped, .mapping = &.{0xA687}, .status2 = .none, },
3253 .{ .cp = 0xA687, .status = .valid, .mapping = &.{}, .status2 = .none, },
3254 .{ .cp = 0xA688, .status = .mapped, .mapping = &.{0xA689}, .status2 = .none, },
3255 .{ .cp = 0xA689, .status = .valid, .mapping = &.{}, .status2 = .none, },
3256 .{ .cp = 0xA68A, .status = .mapped, .mapping = &.{0xA68B}, .status2 = .none, },
3257 .{ .cp = 0xA68B, .status = .valid, .mapping = &.{}, .status2 = .none, },
3258 .{ .cp = 0xA68C, .status = .mapped, .mapping = &.{0xA68D}, .status2 = .none, },
3259 .{ .cp = 0xA68D, .status = .valid, .mapping = &.{}, .status2 = .none, },
3260 .{ .cp = 0xA68E, .status = .mapped, .mapping = &.{0xA68F}, .status2 = .none, },
3261 .{ .cp = 0xA68F, .status = .valid, .mapping = &.{}, .status2 = .none, },
3262 .{ .cp = 0xA690, .status = .mapped, .mapping = &.{0xA691}, .status2 = .none, },
3263 .{ .cp = 0xA691, .status = .valid, .mapping = &.{}, .status2 = .none, },
3264 .{ .cp = 0xA692, .status = .mapped, .mapping = &.{0xA693}, .status2 = .none, },
3265 .{ .cp = 0xA693, .status = .valid, .mapping = &.{}, .status2 = .none, },
3266 .{ .cp = 0xA694, .status = .mapped, .mapping = &.{0xA695}, .status2 = .none, },
3267 .{ .cp = 0xA695, .status = .valid, .mapping = &.{}, .status2 = .none, },
3268 .{ .cp = 0xA696, .status = .mapped, .mapping = &.{0xA697}, .status2 = .none, },
3269 .{ .cp = 0xA697, .status = .valid, .mapping = &.{}, .status2 = .none, },
3270 .{ .cp = 0xA698, .status = .mapped, .mapping = &.{0xA699}, .status2 = .none, },
3271 .{ .cp = 0xA699, .status = .valid, .mapping = &.{}, .status2 = .none, },
3272 .{ .cp = 0xA69A, .status = .mapped, .mapping = &.{0xA69B}, .status2 = .none, },
3273 .{ .cp = 0xA69B, .status = .valid, .mapping = &.{}, .status2 = .none, },
3274 .{ .cp = 0xA69C, .status = .mapped, .mapping = &.{0x044A}, .status2 = .none, },
3275 .{ .cp = 0xA69D, .status = .mapped, .mapping = &.{0x044C}, .status2 = .none, },
3276 .{ .cp = 0xA69E, .status = .valid, .mapping = &.{}, .status2 = .none, },
3277 .{ .cp = 0xA69F, .status = .valid, .mapping = &.{}, .status2 = .none, },
3278 .{ .cp = 0xA722, .status = .mapped, .mapping = &.{0xA723}, .status2 = .none, },
3279 .{ .cp = 0xA723, .status = .valid, .mapping = &.{}, .status2 = .none, },
3280 .{ .cp = 0xA724, .status = .mapped, .mapping = &.{0xA725}, .status2 = .none, },
3281 .{ .cp = 0xA725, .status = .valid, .mapping = &.{}, .status2 = .none, },
3282 .{ .cp = 0xA726, .status = .mapped, .mapping = &.{0xA727}, .status2 = .none, },
3283 .{ .cp = 0xA727, .status = .valid, .mapping = &.{}, .status2 = .none, },
3284 .{ .cp = 0xA728, .status = .mapped, .mapping = &.{0xA729}, .status2 = .none, },
3285 .{ .cp = 0xA729, .status = .valid, .mapping = &.{}, .status2 = .none, },
3286 .{ .cp = 0xA72A, .status = .mapped, .mapping = &.{0xA72B}, .status2 = .none, },
3287 .{ .cp = 0xA72B, .status = .valid, .mapping = &.{}, .status2 = .none, },
3288 .{ .cp = 0xA72C, .status = .mapped, .mapping = &.{0xA72D}, .status2 = .none, },
3289 .{ .cp = 0xA72D, .status = .valid, .mapping = &.{}, .status2 = .none, },
3290 .{ .cp = 0xA72E, .status = .mapped, .mapping = &.{0xA72F}, .status2 = .none, },
3291 .{ .cp = 0xA732, .status = .mapped, .mapping = &.{0xA733}, .status2 = .none, },
3292 .{ .cp = 0xA733, .status = .valid, .mapping = &.{}, .status2 = .none, },
3293 .{ .cp = 0xA734, .status = .mapped, .mapping = &.{0xA735}, .status2 = .none, },
3294 .{ .cp = 0xA735, .status = .valid, .mapping = &.{}, .status2 = .none, },
3295 .{ .cp = 0xA736, .status = .mapped, .mapping = &.{0xA737}, .status2 = .none, },
3296 .{ .cp = 0xA737, .status = .valid, .mapping = &.{}, .status2 = .none, },
3297 .{ .cp = 0xA738, .status = .mapped, .mapping = &.{0xA739}, .status2 = .none, },
3298 .{ .cp = 0xA739, .status = .valid, .mapping = &.{}, .status2 = .none, },
3299 .{ .cp = 0xA73A, .status = .mapped, .mapping = &.{0xA73B}, .status2 = .none, },
3300 .{ .cp = 0xA73B, .status = .valid, .mapping = &.{}, .status2 = .none, },
3301 .{ .cp = 0xA73C, .status = .mapped, .mapping = &.{0xA73D}, .status2 = .none, },
3302 .{ .cp = 0xA73D, .status = .valid, .mapping = &.{}, .status2 = .none, },
3303 .{ .cp = 0xA73E, .status = .mapped, .mapping = &.{0xA73F}, .status2 = .none, },
3304 .{ .cp = 0xA73F, .status = .valid, .mapping = &.{}, .status2 = .none, },
3305 .{ .cp = 0xA740, .status = .mapped, .mapping = &.{0xA741}, .status2 = .none, },
3306 .{ .cp = 0xA741, .status = .valid, .mapping = &.{}, .status2 = .none, },
3307 .{ .cp = 0xA742, .status = .mapped, .mapping = &.{0xA743}, .status2 = .none, },
3308 .{ .cp = 0xA743, .status = .valid, .mapping = &.{}, .status2 = .none, },
3309 .{ .cp = 0xA744, .status = .mapped, .mapping = &.{0xA745}, .status2 = .none, },
3310 .{ .cp = 0xA745, .status = .valid, .mapping = &.{}, .status2 = .none, },
3311 .{ .cp = 0xA746, .status = .mapped, .mapping = &.{0xA747}, .status2 = .none, },
3312 .{ .cp = 0xA747, .status = .valid, .mapping = &.{}, .status2 = .none, },
3313 .{ .cp = 0xA748, .status = .mapped, .mapping = &.{0xA749}, .status2 = .none, },
3314 .{ .cp = 0xA749, .status = .valid, .mapping = &.{}, .status2 = .none, },
3315 .{ .cp = 0xA74A, .status = .mapped, .mapping = &.{0xA74B}, .status2 = .none, },
3316 .{ .cp = 0xA74B, .status = .valid, .mapping = &.{}, .status2 = .none, },
3317 .{ .cp = 0xA74C, .status = .mapped, .mapping = &.{0xA74D}, .status2 = .none, },
3318 .{ .cp = 0xA74D, .status = .valid, .mapping = &.{}, .status2 = .none, },
3319 .{ .cp = 0xA74E, .status = .mapped, .mapping = &.{0xA74F}, .status2 = .none, },
3320 .{ .cp = 0xA74F, .status = .valid, .mapping = &.{}, .status2 = .none, },
3321 .{ .cp = 0xA750, .status = .mapped, .mapping = &.{0xA751}, .status2 = .none, },
3322 .{ .cp = 0xA751, .status = .valid, .mapping = &.{}, .status2 = .none, },
3323 .{ .cp = 0xA752, .status = .mapped, .mapping = &.{0xA753}, .status2 = .none, },
3324 .{ .cp = 0xA753, .status = .valid, .mapping = &.{}, .status2 = .none, },
3325 .{ .cp = 0xA754, .status = .mapped, .mapping = &.{0xA755}, .status2 = .none, },
3326 .{ .cp = 0xA755, .status = .valid, .mapping = &.{}, .status2 = .none, },
3327 .{ .cp = 0xA756, .status = .mapped, .mapping = &.{0xA757}, .status2 = .none, },
3328 .{ .cp = 0xA757, .status = .valid, .mapping = &.{}, .status2 = .none, },
3329 .{ .cp = 0xA758, .status = .mapped, .mapping = &.{0xA759}, .status2 = .none, },
3330 .{ .cp = 0xA759, .status = .valid, .mapping = &.{}, .status2 = .none, },
3331 .{ .cp = 0xA75A, .status = .mapped, .mapping = &.{0xA75B}, .status2 = .none, },
3332 .{ .cp = 0xA75B, .status = .valid, .mapping = &.{}, .status2 = .none, },
3333 .{ .cp = 0xA75C, .status = .mapped, .mapping = &.{0xA75D}, .status2 = .none, },
3334 .{ .cp = 0xA75D, .status = .valid, .mapping = &.{}, .status2 = .none, },
3335 .{ .cp = 0xA75E, .status = .mapped, .mapping = &.{0xA75F}, .status2 = .none, },
3336 .{ .cp = 0xA75F, .status = .valid, .mapping = &.{}, .status2 = .none, },
3337 .{ .cp = 0xA760, .status = .mapped, .mapping = &.{0xA761}, .status2 = .none, },
3338 .{ .cp = 0xA761, .status = .valid, .mapping = &.{}, .status2 = .none, },
3339 .{ .cp = 0xA762, .status = .mapped, .mapping = &.{0xA763}, .status2 = .none, },
3340 .{ .cp = 0xA763, .status = .valid, .mapping = &.{}, .status2 = .none, },
3341 .{ .cp = 0xA764, .status = .mapped, .mapping = &.{0xA765}, .status2 = .none, },
3342 .{ .cp = 0xA765, .status = .valid, .mapping = &.{}, .status2 = .none, },
3343 .{ .cp = 0xA766, .status = .mapped, .mapping = &.{0xA767}, .status2 = .none, },
3344 .{ .cp = 0xA767, .status = .valid, .mapping = &.{}, .status2 = .none, },
3345 .{ .cp = 0xA768, .status = .mapped, .mapping = &.{0xA769}, .status2 = .none, },
3346 .{ .cp = 0xA769, .status = .valid, .mapping = &.{}, .status2 = .none, },
3347 .{ .cp = 0xA76A, .status = .mapped, .mapping = &.{0xA76B}, .status2 = .none, },
3348 .{ .cp = 0xA76B, .status = .valid, .mapping = &.{}, .status2 = .none, },
3349 .{ .cp = 0xA76C, .status = .mapped, .mapping = &.{0xA76D}, .status2 = .none, },
3350 .{ .cp = 0xA76D, .status = .valid, .mapping = &.{}, .status2 = .none, },
3351 .{ .cp = 0xA76E, .status = .mapped, .mapping = &.{0xA76F}, .status2 = .none, },
3352 .{ .cp = 0xA76F, .status = .valid, .mapping = &.{}, .status2 = .none, },
3353 .{ .cp = 0xA770, .status = .mapped, .mapping = &.{0xA76F}, .status2 = .none, },
3354 .{ .cp = 0xA779, .status = .mapped, .mapping = &.{0xA77A}, .status2 = .none, },
3355 .{ .cp = 0xA77A, .status = .valid, .mapping = &.{}, .status2 = .none, },
3356 .{ .cp = 0xA77B, .status = .mapped, .mapping = &.{0xA77C}, .status2 = .none, },
3357 .{ .cp = 0xA77C, .status = .valid, .mapping = &.{}, .status2 = .none, },
3358 .{ .cp = 0xA77D, .status = .mapped, .mapping = &.{0x1D79}, .status2 = .none, },
3359 .{ .cp = 0xA77E, .status = .mapped, .mapping = &.{0xA77F}, .status2 = .none, },
3360 .{ .cp = 0xA77F, .status = .valid, .mapping = &.{}, .status2 = .none, },
3361 .{ .cp = 0xA780, .status = .mapped, .mapping = &.{0xA781}, .status2 = .none, },
3362 .{ .cp = 0xA781, .status = .valid, .mapping = &.{}, .status2 = .none, },
3363 .{ .cp = 0xA782, .status = .mapped, .mapping = &.{0xA783}, .status2 = .none, },
3364 .{ .cp = 0xA783, .status = .valid, .mapping = &.{}, .status2 = .none, },
3365 .{ .cp = 0xA784, .status = .mapped, .mapping = &.{0xA785}, .status2 = .none, },
3366 .{ .cp = 0xA785, .status = .valid, .mapping = &.{}, .status2 = .none, },
3367 .{ .cp = 0xA786, .status = .mapped, .mapping = &.{0xA787}, .status2 = .none, },
3368 .{ .cp = 0xA78B, .status = .mapped, .mapping = &.{0xA78C}, .status2 = .none, },
3369 .{ .cp = 0xA78C, .status = .valid, .mapping = &.{}, .status2 = .none, },
3370 .{ .cp = 0xA78D, .status = .mapped, .mapping = &.{0x0265}, .status2 = .none, },
3371 .{ .cp = 0xA78E, .status = .valid, .mapping = &.{}, .status2 = .none, },
3372 .{ .cp = 0xA78F, .status = .valid, .mapping = &.{}, .status2 = .none, },
3373 .{ .cp = 0xA790, .status = .mapped, .mapping = &.{0xA791}, .status2 = .none, },
3374 .{ .cp = 0xA791, .status = .valid, .mapping = &.{}, .status2 = .none, },
3375 .{ .cp = 0xA792, .status = .mapped, .mapping = &.{0xA793}, .status2 = .none, },
3376 .{ .cp = 0xA793, .status = .valid, .mapping = &.{}, .status2 = .none, },
3377 .{ .cp = 0xA796, .status = .mapped, .mapping = &.{0xA797}, .status2 = .none, },
3378 .{ .cp = 0xA797, .status = .valid, .mapping = &.{}, .status2 = .none, },
3379 .{ .cp = 0xA798, .status = .mapped, .mapping = &.{0xA799}, .status2 = .none, },
3380 .{ .cp = 0xA799, .status = .valid, .mapping = &.{}, .status2 = .none, },
3381 .{ .cp = 0xA79A, .status = .mapped, .mapping = &.{0xA79B}, .status2 = .none, },
3382 .{ .cp = 0xA79B, .status = .valid, .mapping = &.{}, .status2 = .none, },
3383 .{ .cp = 0xA79C, .status = .mapped, .mapping = &.{0xA79D}, .status2 = .none, },
3384 .{ .cp = 0xA79D, .status = .valid, .mapping = &.{}, .status2 = .none, },
3385 .{ .cp = 0xA79E, .status = .mapped, .mapping = &.{0xA79F}, .status2 = .none, },
3386 .{ .cp = 0xA79F, .status = .valid, .mapping = &.{}, .status2 = .none, },
3387 .{ .cp = 0xA7A0, .status = .mapped, .mapping = &.{0xA7A1}, .status2 = .none, },
3388 .{ .cp = 0xA7A1, .status = .valid, .mapping = &.{}, .status2 = .none, },
3389 .{ .cp = 0xA7A2, .status = .mapped, .mapping = &.{0xA7A3}, .status2 = .none, },
3390 .{ .cp = 0xA7A3, .status = .valid, .mapping = &.{}, .status2 = .none, },
3391 .{ .cp = 0xA7A4, .status = .mapped, .mapping = &.{0xA7A5}, .status2 = .none, },
3392 .{ .cp = 0xA7A5, .status = .valid, .mapping = &.{}, .status2 = .none, },
3393 .{ .cp = 0xA7A6, .status = .mapped, .mapping = &.{0xA7A7}, .status2 = .none, },
3394 .{ .cp = 0xA7A7, .status = .valid, .mapping = &.{}, .status2 = .none, },
3395 .{ .cp = 0xA7A8, .status = .mapped, .mapping = &.{0xA7A9}, .status2 = .none, },
3396 .{ .cp = 0xA7A9, .status = .valid, .mapping = &.{}, .status2 = .none, },
3397 .{ .cp = 0xA7AA, .status = .mapped, .mapping = &.{0x0266}, .status2 = .none, },
3398 .{ .cp = 0xA7AB, .status = .mapped, .mapping = &.{0x025C}, .status2 = .none, },
3399 .{ .cp = 0xA7AC, .status = .mapped, .mapping = &.{0x0261}, .status2 = .none, },
3400 .{ .cp = 0xA7AD, .status = .mapped, .mapping = &.{0x026C}, .status2 = .none, },
3401 .{ .cp = 0xA7AE, .status = .mapped, .mapping = &.{0x026A}, .status2 = .none, },
3402 .{ .cp = 0xA7AF, .status = .valid, .mapping = &.{}, .status2 = .none, },
3403 .{ .cp = 0xA7B0, .status = .mapped, .mapping = &.{0x029E}, .status2 = .none, },
3404 .{ .cp = 0xA7B1, .status = .mapped, .mapping = &.{0x0287}, .status2 = .none, },
3405 .{ .cp = 0xA7B2, .status = .mapped, .mapping = &.{0x029D}, .status2 = .none, },
3406 .{ .cp = 0xA7B3, .status = .mapped, .mapping = &.{0xAB53}, .status2 = .none, },
3407 .{ .cp = 0xA7B4, .status = .mapped, .mapping = &.{0xA7B5}, .status2 = .none, },
3408 .{ .cp = 0xA7B5, .status = .valid, .mapping = &.{}, .status2 = .none, },
3409 .{ .cp = 0xA7B6, .status = .mapped, .mapping = &.{0xA7B7}, .status2 = .none, },
3410 .{ .cp = 0xA7B7, .status = .valid, .mapping = &.{}, .status2 = .none, },
3411 .{ .cp = 0xA7B8, .status = .mapped, .mapping = &.{0xA7B9}, .status2 = .none, },
3412 .{ .cp = 0xA7B9, .status = .valid, .mapping = &.{}, .status2 = .none, },
3413 .{ .cp = 0xA7BA, .status = .mapped, .mapping = &.{0xA7BB}, .status2 = .none, },
3414 .{ .cp = 0xA7BB, .status = .valid, .mapping = &.{}, .status2 = .none, },
3415 .{ .cp = 0xA7BC, .status = .mapped, .mapping = &.{0xA7BD}, .status2 = .none, },
3416 .{ .cp = 0xA7BD, .status = .valid, .mapping = &.{}, .status2 = .none, },
3417 .{ .cp = 0xA7BE, .status = .mapped, .mapping = &.{0xA7BF}, .status2 = .none, },
3418 .{ .cp = 0xA7BF, .status = .valid, .mapping = &.{}, .status2 = .none, },
3419 .{ .cp = 0xA7C0, .status = .mapped, .mapping = &.{0xA7C1}, .status2 = .none, },
3420 .{ .cp = 0xA7C1, .status = .valid, .mapping = &.{}, .status2 = .none, },
3421 .{ .cp = 0xA7C2, .status = .mapped, .mapping = &.{0xA7C3}, .status2 = .none, },
3422 .{ .cp = 0xA7C3, .status = .valid, .mapping = &.{}, .status2 = .none, },
3423 .{ .cp = 0xA7C4, .status = .mapped, .mapping = &.{0xA794}, .status2 = .none, },
3424 .{ .cp = 0xA7C5, .status = .mapped, .mapping = &.{0x0282}, .status2 = .none, },
3425 .{ .cp = 0xA7C6, .status = .mapped, .mapping = &.{0x1D8E}, .status2 = .none, },
3426 .{ .cp = 0xA7C7, .status = .mapped, .mapping = &.{0xA7C8}, .status2 = .none, },
3427 .{ .cp = 0xA7C8, .status = .valid, .mapping = &.{}, .status2 = .none, },
3428 .{ .cp = 0xA7C9, .status = .mapped, .mapping = &.{0xA7CA}, .status2 = .none, },
3429 .{ .cp = 0xA7CA, .status = .valid, .mapping = &.{}, .status2 = .none, },
3430 .{ .cp = 0xA7CB, .status = .mapped, .mapping = &.{0x0264}, .status2 = .none, },
3431 .{ .cp = 0xA7CC, .status = .mapped, .mapping = &.{0xA7CD}, .status2 = .none, },
3432 .{ .cp = 0xA7CD, .status = .valid, .mapping = &.{}, .status2 = .none, },
3433 .{ .cp = 0xA7CE, .status = .mapped, .mapping = &.{0xA7CF}, .status2 = .none, },
3434 .{ .cp = 0xA7CF, .status = .valid, .mapping = &.{}, .status2 = .none, },
3435 .{ .cp = 0xA7D0, .status = .mapped, .mapping = &.{0xA7D1}, .status2 = .none, },
3436 .{ .cp = 0xA7D1, .status = .valid, .mapping = &.{}, .status2 = .none, },
3437 .{ .cp = 0xA7D2, .status = .mapped, .mapping = &.{0xA7D3}, .status2 = .none, },
3438 .{ .cp = 0xA7D3, .status = .valid, .mapping = &.{}, .status2 = .none, },
3439 .{ .cp = 0xA7D4, .status = .mapped, .mapping = &.{0xA7D5}, .status2 = .none, },
3440 .{ .cp = 0xA7D5, .status = .valid, .mapping = &.{}, .status2 = .none, },
3441 .{ .cp = 0xA7D6, .status = .mapped, .mapping = &.{0xA7D7}, .status2 = .none, },
3442 .{ .cp = 0xA7D7, .status = .valid, .mapping = &.{}, .status2 = .none, },
3443 .{ .cp = 0xA7D8, .status = .mapped, .mapping = &.{0xA7D9}, .status2 = .none, },
3444 .{ .cp = 0xA7D9, .status = .valid, .mapping = &.{}, .status2 = .none, },
3445 .{ .cp = 0xA7DA, .status = .mapped, .mapping = &.{0xA7DB}, .status2 = .none, },
3446 .{ .cp = 0xA7DB, .status = .valid, .mapping = &.{}, .status2 = .none, },
3447 .{ .cp = 0xA7DC, .status = .mapped, .mapping = &.{0x019B}, .status2 = .none, },
3448 .{ .cp = 0xA7F1, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, },
3449 .{ .cp = 0xA7F2, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, },
3450 .{ .cp = 0xA7F3, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, },
3451 .{ .cp = 0xA7F4, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, },
3452 .{ .cp = 0xA7F5, .status = .mapped, .mapping = &.{0xA7F6}, .status2 = .none, },
3453 .{ .cp = 0xA7F6, .status = .valid, .mapping = &.{}, .status2 = .none, },
3454 .{ .cp = 0xA7F7, .status = .valid, .mapping = &.{}, .status2 = .none, },
3455 .{ .cp = 0xA7F8, .status = .mapped, .mapping = &.{0x0127}, .status2 = .none, },
3456 .{ .cp = 0xA7F9, .status = .mapped, .mapping = &.{0x0153}, .status2 = .none, },
3457 .{ .cp = 0xA7FA, .status = .valid, .mapping = &.{}, .status2 = .none, },
3458 .{ .cp = 0xA82C, .status = .valid, .mapping = &.{}, .status2 = .none, },
3459 .{ .cp = 0xA8C5, .status = .valid, .mapping = &.{}, .status2 = .none, },
3460 .{ .cp = 0xA8FB, .status = .valid, .mapping = &.{}, .status2 = .none, },
3461 .{ .cp = 0xA8FC, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
3462 .{ .cp = 0xA8FD, .status = .valid, .mapping = &.{}, .status2 = .none, },
3463 .{ .cp = 0xA95F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
3464 .{ .cp = 0xA9CE, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
3465 .{ .cp = 0xA9FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
3466 .{ .cp = 0xAB27, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
3467 .{ .cp = 0xAB2F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
3468 .{ .cp = 0xAB5B, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
3469 .{ .cp = 0xAB5C, .status = .mapped, .mapping = &.{0xA727}, .status2 = .none, },
3470 .{ .cp = 0xAB5D, .status = .mapped, .mapping = &.{0xAB37}, .status2 = .none, },
3471 .{ .cp = 0xAB5E, .status = .mapped, .mapping = &.{0x026B}, .status2 = .none, },
3472 .{ .cp = 0xAB5F, .status = .mapped, .mapping = &.{0xAB52}, .status2 = .none, },
3473 .{ .cp = 0xAB68, .status = .valid, .mapping = &.{}, .status2 = .none, },
3474 .{ .cp = 0xAB69, .status = .mapped, .mapping = &.{0x028D}, .status2 = .none, },
3475 .{ .cp = 0xAB70, .status = .mapped, .mapping = &.{0x13A0}, .status2 = .none, },
3476 .{ .cp = 0xAB71, .status = .mapped, .mapping = &.{0x13A1}, .status2 = .none, },
3477 .{ .cp = 0xAB72, .status = .mapped, .mapping = &.{0x13A2}, .status2 = .none, },
3478 .{ .cp = 0xAB73, .status = .mapped, .mapping = &.{0x13A3}, .status2 = .none, },
3479 .{ .cp = 0xAB74, .status = .mapped, .mapping = &.{0x13A4}, .status2 = .none, },
3480 .{ .cp = 0xAB75, .status = .mapped, .mapping = &.{0x13A5}, .status2 = .none, },
3481 .{ .cp = 0xAB76, .status = .mapped, .mapping = &.{0x13A6}, .status2 = .none, },
3482 .{ .cp = 0xAB77, .status = .mapped, .mapping = &.{0x13A7}, .status2 = .none, },
3483 .{ .cp = 0xAB78, .status = .mapped, .mapping = &.{0x13A8}, .status2 = .none, },
3484 .{ .cp = 0xAB79, .status = .mapped, .mapping = &.{0x13A9}, .status2 = .none, },
3485 .{ .cp = 0xAB7A, .status = .mapped, .mapping = &.{0x13AA}, .status2 = .none, },
3486 .{ .cp = 0xAB7B, .status = .mapped, .mapping = &.{0x13AB}, .status2 = .none, },
3487 .{ .cp = 0xAB7C, .status = .mapped, .mapping = &.{0x13AC}, .status2 = .none, },
3488 .{ .cp = 0xAB7D, .status = .mapped, .mapping = &.{0x13AD}, .status2 = .none, },
3489 .{ .cp = 0xAB7E, .status = .mapped, .mapping = &.{0x13AE}, .status2 = .none, },
3490 .{ .cp = 0xAB7F, .status = .mapped, .mapping = &.{0x13AF}, .status2 = .none, },
3491 .{ .cp = 0xAB80, .status = .mapped, .mapping = &.{0x13B0}, .status2 = .none, },
3492 .{ .cp = 0xAB81, .status = .mapped, .mapping = &.{0x13B1}, .status2 = .none, },
3493 .{ .cp = 0xAB82, .status = .mapped, .mapping = &.{0x13B2}, .status2 = .none, },
3494 .{ .cp = 0xAB83, .status = .mapped, .mapping = &.{0x13B3}, .status2 = .none, },
3495 .{ .cp = 0xAB84, .status = .mapped, .mapping = &.{0x13B4}, .status2 = .none, },
3496 .{ .cp = 0xAB85, .status = .mapped, .mapping = &.{0x13B5}, .status2 = .none, },
3497 .{ .cp = 0xAB86, .status = .mapped, .mapping = &.{0x13B6}, .status2 = .none, },
3498 .{ .cp = 0xAB87, .status = .mapped, .mapping = &.{0x13B7}, .status2 = .none, },
3499 .{ .cp = 0xAB88, .status = .mapped, .mapping = &.{0x13B8}, .status2 = .none, },
3500 .{ .cp = 0xAB89, .status = .mapped, .mapping = &.{0x13B9}, .status2 = .none, },
3501 .{ .cp = 0xAB8A, .status = .mapped, .mapping = &.{0x13BA}, .status2 = .none, },
3502 .{ .cp = 0xAB8B, .status = .mapped, .mapping = &.{0x13BB}, .status2 = .none, },
3503 .{ .cp = 0xAB8C, .status = .mapped, .mapping = &.{0x13BC}, .status2 = .none, },
3504 .{ .cp = 0xAB8D, .status = .mapped, .mapping = &.{0x13BD}, .status2 = .none, },
3505 .{ .cp = 0xAB8E, .status = .mapped, .mapping = &.{0x13BE}, .status2 = .none, },
3506 .{ .cp = 0xAB8F, .status = .mapped, .mapping = &.{0x13BF}, .status2 = .none, },
3507 .{ .cp = 0xAB90, .status = .mapped, .mapping = &.{0x13C0}, .status2 = .none, },
3508 .{ .cp = 0xAB91, .status = .mapped, .mapping = &.{0x13C1}, .status2 = .none, },
3509 .{ .cp = 0xAB92, .status = .mapped, .mapping = &.{0x13C2}, .status2 = .none, },
3510 .{ .cp = 0xAB93, .status = .mapped, .mapping = &.{0x13C3}, .status2 = .none, },
3511 .{ .cp = 0xAB94, .status = .mapped, .mapping = &.{0x13C4}, .status2 = .none, },
3512 .{ .cp = 0xAB95, .status = .mapped, .mapping = &.{0x13C5}, .status2 = .none, },
3513 .{ .cp = 0xAB96, .status = .mapped, .mapping = &.{0x13C6}, .status2 = .none, },
3514 .{ .cp = 0xAB97, .status = .mapped, .mapping = &.{0x13C7}, .status2 = .none, },
3515 .{ .cp = 0xAB98, .status = .mapped, .mapping = &.{0x13C8}, .status2 = .none, },
3516 .{ .cp = 0xAB99, .status = .mapped, .mapping = &.{0x13C9}, .status2 = .none, },
3517 .{ .cp = 0xAB9A, .status = .mapped, .mapping = &.{0x13CA}, .status2 = .none, },
3518 .{ .cp = 0xAB9B, .status = .mapped, .mapping = &.{0x13CB}, .status2 = .none, },
3519 .{ .cp = 0xAB9C, .status = .mapped, .mapping = &.{0x13CC}, .status2 = .none, },
3520 .{ .cp = 0xAB9D, .status = .mapped, .mapping = &.{0x13CD}, .status2 = .none, },
3521 .{ .cp = 0xAB9E, .status = .mapped, .mapping = &.{0x13CE}, .status2 = .none, },
3522 .{ .cp = 0xAB9F, .status = .mapped, .mapping = &.{0x13CF}, .status2 = .none, },
3523 .{ .cp = 0xABA0, .status = .mapped, .mapping = &.{0x13D0}, .status2 = .none, },
3524 .{ .cp = 0xABA1, .status = .mapped, .mapping = &.{0x13D1}, .status2 = .none, },
3525 .{ .cp = 0xABA2, .status = .mapped, .mapping = &.{0x13D2}, .status2 = .none, },
3526 .{ .cp = 0xABA3, .status = .mapped, .mapping = &.{0x13D3}, .status2 = .none, },
3527 .{ .cp = 0xABA4, .status = .mapped, .mapping = &.{0x13D4}, .status2 = .none, },
3528 .{ .cp = 0xABA5, .status = .mapped, .mapping = &.{0x13D5}, .status2 = .none, },
3529 .{ .cp = 0xABA6, .status = .mapped, .mapping = &.{0x13D6}, .status2 = .none, },
3530 .{ .cp = 0xABA7, .status = .mapped, .mapping = &.{0x13D7}, .status2 = .none, },
3531 .{ .cp = 0xABA8, .status = .mapped, .mapping = &.{0x13D8}, .status2 = .none, },
3532 .{ .cp = 0xABA9, .status = .mapped, .mapping = &.{0x13D9}, .status2 = .none, },
3533 .{ .cp = 0xABAA, .status = .mapped, .mapping = &.{0x13DA}, .status2 = .none, },
3534 .{ .cp = 0xABAB, .status = .mapped, .mapping = &.{0x13DB}, .status2 = .none, },
3535 .{ .cp = 0xABAC, .status = .mapped, .mapping = &.{0x13DC}, .status2 = .none, },
3536 .{ .cp = 0xABAD, .status = .mapped, .mapping = &.{0x13DD}, .status2 = .none, },
3537 .{ .cp = 0xABAE, .status = .mapped, .mapping = &.{0x13DE}, .status2 = .none, },
3538 .{ .cp = 0xABAF, .status = .mapped, .mapping = &.{0x13DF}, .status2 = .none, },
3539 .{ .cp = 0xABB0, .status = .mapped, .mapping = &.{0x13E0}, .status2 = .none, },
3540 .{ .cp = 0xABB1, .status = .mapped, .mapping = &.{0x13E1}, .status2 = .none, },
3541 .{ .cp = 0xABB2, .status = .mapped, .mapping = &.{0x13E2}, .status2 = .none, },
3542 .{ .cp = 0xABB3, .status = .mapped, .mapping = &.{0x13E3}, .status2 = .none, },
3543 .{ .cp = 0xABB4, .status = .mapped, .mapping = &.{0x13E4}, .status2 = .none, },
3544 .{ .cp = 0xABB5, .status = .mapped, .mapping = &.{0x13E5}, .status2 = .none, },
3545 .{ .cp = 0xABB6, .status = .mapped, .mapping = &.{0x13E6}, .status2 = .none, },
3546 .{ .cp = 0xABB7, .status = .mapped, .mapping = &.{0x13E7}, .status2 = .none, },
3547 .{ .cp = 0xABB8, .status = .mapped, .mapping = &.{0x13E8}, .status2 = .none, },
3548 .{ .cp = 0xABB9, .status = .mapped, .mapping = &.{0x13E9}, .status2 = .none, },
3549 .{ .cp = 0xABBA, .status = .mapped, .mapping = &.{0x13EA}, .status2 = .none, },
3550 .{ .cp = 0xABBB, .status = .mapped, .mapping = &.{0x13EB}, .status2 = .none, },
3551 .{ .cp = 0xABBC, .status = .mapped, .mapping = &.{0x13EC}, .status2 = .none, },
3552 .{ .cp = 0xABBD, .status = .mapped, .mapping = &.{0x13ED}, .status2 = .none, },
3553 .{ .cp = 0xABBE, .status = .mapped, .mapping = &.{0x13EE}, .status2 = .none, },
3554 .{ .cp = 0xABBF, .status = .mapped, .mapping = &.{0x13EF}, .status2 = .none, },
3555 .{ .cp = 0xABEB, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
3556 .{ .cp = 0xF900, .status = .mapped, .mapping = &.{0x8C48}, .status2 = .none, },
3557 .{ .cp = 0xF901, .status = .mapped, .mapping = &.{0x66F4}, .status2 = .none, },
3558 .{ .cp = 0xF902, .status = .mapped, .mapping = &.{0x8ECA}, .status2 = .none, },
3559 .{ .cp = 0xF903, .status = .mapped, .mapping = &.{0x8CC8}, .status2 = .none, },
3560 .{ .cp = 0xF904, .status = .mapped, .mapping = &.{0x6ED1}, .status2 = .none, },
3561 .{ .cp = 0xF905, .status = .mapped, .mapping = &.{0x4E32}, .status2 = .none, },
3562 .{ .cp = 0xF906, .status = .mapped, .mapping = &.{0x53E5}, .status2 = .none, },
3563 .{ .cp = 0xF909, .status = .mapped, .mapping = &.{0x5951}, .status2 = .none, },
3564 .{ .cp = 0xF90A, .status = .mapped, .mapping = &.{0x91D1}, .status2 = .none, },
3565 .{ .cp = 0xF90B, .status = .mapped, .mapping = &.{0x5587}, .status2 = .none, },
3566 .{ .cp = 0xF90C, .status = .mapped, .mapping = &.{0x5948}, .status2 = .none, },
3567 .{ .cp = 0xF90D, .status = .mapped, .mapping = &.{0x61F6}, .status2 = .none, },
3568 .{ .cp = 0xF90E, .status = .mapped, .mapping = &.{0x7669}, .status2 = .none, },
3569 .{ .cp = 0xF90F, .status = .mapped, .mapping = &.{0x7F85}, .status2 = .none, },
3570 .{ .cp = 0xF910, .status = .mapped, .mapping = &.{0x863F}, .status2 = .none, },
3571 .{ .cp = 0xF911, .status = .mapped, .mapping = &.{0x87BA}, .status2 = .none, },
3572 .{ .cp = 0xF912, .status = .mapped, .mapping = &.{0x88F8}, .status2 = .none, },
3573 .{ .cp = 0xF913, .status = .mapped, .mapping = &.{0x908F}, .status2 = .none, },
3574 .{ .cp = 0xF914, .status = .mapped, .mapping = &.{0x6A02}, .status2 = .none, },
3575 .{ .cp = 0xF915, .status = .mapped, .mapping = &.{0x6D1B}, .status2 = .none, },
3576 .{ .cp = 0xF916, .status = .mapped, .mapping = &.{0x70D9}, .status2 = .none, },
3577 .{ .cp = 0xF917, .status = .mapped, .mapping = &.{0x73DE}, .status2 = .none, },
3578 .{ .cp = 0xF918, .status = .mapped, .mapping = &.{0x843D}, .status2 = .none, },
3579 .{ .cp = 0xF919, .status = .mapped, .mapping = &.{0x916A}, .status2 = .none, },
3580 .{ .cp = 0xF91A, .status = .mapped, .mapping = &.{0x99F1}, .status2 = .none, },
3581 .{ .cp = 0xF91B, .status = .mapped, .mapping = &.{0x4E82}, .status2 = .none, },
3582 .{ .cp = 0xF91C, .status = .mapped, .mapping = &.{0x5375}, .status2 = .none, },
3583 .{ .cp = 0xF91D, .status = .mapped, .mapping = &.{0x6B04}, .status2 = .none, },
3584 .{ .cp = 0xF91E, .status = .mapped, .mapping = &.{0x721B}, .status2 = .none, },
3585 .{ .cp = 0xF91F, .status = .mapped, .mapping = &.{0x862D}, .status2 = .none, },
3586 .{ .cp = 0xF920, .status = .mapped, .mapping = &.{0x9E1E}, .status2 = .none, },
3587 .{ .cp = 0xF921, .status = .mapped, .mapping = &.{0x5D50}, .status2 = .none, },
3588 .{ .cp = 0xF922, .status = .mapped, .mapping = &.{0x6FEB}, .status2 = .none, },
3589 .{ .cp = 0xF923, .status = .mapped, .mapping = &.{0x85CD}, .status2 = .none, },
3590 .{ .cp = 0xF924, .status = .mapped, .mapping = &.{0x8964}, .status2 = .none, },
3591 .{ .cp = 0xF925, .status = .mapped, .mapping = &.{0x62C9}, .status2 = .none, },
3592 .{ .cp = 0xF926, .status = .mapped, .mapping = &.{0x81D8}, .status2 = .none, },
3593 .{ .cp = 0xF927, .status = .mapped, .mapping = &.{0x881F}, .status2 = .none, },
3594 .{ .cp = 0xF928, .status = .mapped, .mapping = &.{0x5ECA}, .status2 = .none, },
3595 .{ .cp = 0xF929, .status = .mapped, .mapping = &.{0x6717}, .status2 = .none, },
3596 .{ .cp = 0xF92A, .status = .mapped, .mapping = &.{0x6D6A}, .status2 = .none, },
3597 .{ .cp = 0xF92B, .status = .mapped, .mapping = &.{0x72FC}, .status2 = .none, },
3598 .{ .cp = 0xF92C, .status = .mapped, .mapping = &.{0x90CE}, .status2 = .none, },
3599 .{ .cp = 0xF92D, .status = .mapped, .mapping = &.{0x4F86}, .status2 = .none, },
3600 .{ .cp = 0xF92E, .status = .mapped, .mapping = &.{0x51B7}, .status2 = .none, },
3601 .{ .cp = 0xF92F, .status = .mapped, .mapping = &.{0x52DE}, .status2 = .none, },
3602 .{ .cp = 0xF930, .status = .mapped, .mapping = &.{0x64C4}, .status2 = .none, },
3603 .{ .cp = 0xF931, .status = .mapped, .mapping = &.{0x6AD3}, .status2 = .none, },
3604 .{ .cp = 0xF932, .status = .mapped, .mapping = &.{0x7210}, .status2 = .none, },
3605 .{ .cp = 0xF933, .status = .mapped, .mapping = &.{0x76E7}, .status2 = .none, },
3606 .{ .cp = 0xF934, .status = .mapped, .mapping = &.{0x8001}, .status2 = .none, },
3607 .{ .cp = 0xF935, .status = .mapped, .mapping = &.{0x8606}, .status2 = .none, },
3608 .{ .cp = 0xF936, .status = .mapped, .mapping = &.{0x865C}, .status2 = .none, },
3609 .{ .cp = 0xF937, .status = .mapped, .mapping = &.{0x8DEF}, .status2 = .none, },
3610 .{ .cp = 0xF938, .status = .mapped, .mapping = &.{0x9732}, .status2 = .none, },
3611 .{ .cp = 0xF939, .status = .mapped, .mapping = &.{0x9B6F}, .status2 = .none, },
3612 .{ .cp = 0xF93A, .status = .mapped, .mapping = &.{0x9DFA}, .status2 = .none, },
3613 .{ .cp = 0xF93B, .status = .mapped, .mapping = &.{0x788C}, .status2 = .none, },
3614 .{ .cp = 0xF93C, .status = .mapped, .mapping = &.{0x797F}, .status2 = .none, },
3615 .{ .cp = 0xF93D, .status = .mapped, .mapping = &.{0x7DA0}, .status2 = .none, },
3616 .{ .cp = 0xF93E, .status = .mapped, .mapping = &.{0x83C9}, .status2 = .none, },
3617 .{ .cp = 0xF93F, .status = .mapped, .mapping = &.{0x9304}, .status2 = .none, },
3618 .{ .cp = 0xF940, .status = .mapped, .mapping = &.{0x9E7F}, .status2 = .none, },
3619 .{ .cp = 0xF941, .status = .mapped, .mapping = &.{0x8AD6}, .status2 = .none, },
3620 .{ .cp = 0xF942, .status = .mapped, .mapping = &.{0x58DF}, .status2 = .none, },
3621 .{ .cp = 0xF943, .status = .mapped, .mapping = &.{0x5F04}, .status2 = .none, },
3622 .{ .cp = 0xF944, .status = .mapped, .mapping = &.{0x7C60}, .status2 = .none, },
3623 .{ .cp = 0xF945, .status = .mapped, .mapping = &.{0x807E}, .status2 = .none, },
3624 .{ .cp = 0xF946, .status = .mapped, .mapping = &.{0x7262}, .status2 = .none, },
3625 .{ .cp = 0xF947, .status = .mapped, .mapping = &.{0x78CA}, .status2 = .none, },
3626 .{ .cp = 0xF948, .status = .mapped, .mapping = &.{0x8CC2}, .status2 = .none, },
3627 .{ .cp = 0xF949, .status = .mapped, .mapping = &.{0x96F7}, .status2 = .none, },
3628 .{ .cp = 0xF94A, .status = .mapped, .mapping = &.{0x58D8}, .status2 = .none, },
3629 .{ .cp = 0xF94B, .status = .mapped, .mapping = &.{0x5C62}, .status2 = .none, },
3630 .{ .cp = 0xF94C, .status = .mapped, .mapping = &.{0x6A13}, .status2 = .none, },
3631 .{ .cp = 0xF94D, .status = .mapped, .mapping = &.{0x6DDA}, .status2 = .none, },
3632 .{ .cp = 0xF94E, .status = .mapped, .mapping = &.{0x6F0F}, .status2 = .none, },
3633 .{ .cp = 0xF94F, .status = .mapped, .mapping = &.{0x7D2F}, .status2 = .none, },
3634 .{ .cp = 0xF950, .status = .mapped, .mapping = &.{0x7E37}, .status2 = .none, },
3635 .{ .cp = 0xF951, .status = .mapped, .mapping = &.{0x964B}, .status2 = .none, },
3636 .{ .cp = 0xF952, .status = .mapped, .mapping = &.{0x52D2}, .status2 = .none, },
3637 .{ .cp = 0xF953, .status = .mapped, .mapping = &.{0x808B}, .status2 = .none, },
3638 .{ .cp = 0xF954, .status = .mapped, .mapping = &.{0x51DC}, .status2 = .none, },
3639 .{ .cp = 0xF955, .status = .mapped, .mapping = &.{0x51CC}, .status2 = .none, },
3640 .{ .cp = 0xF956, .status = .mapped, .mapping = &.{0x7A1C}, .status2 = .none, },
3641 .{ .cp = 0xF957, .status = .mapped, .mapping = &.{0x7DBE}, .status2 = .none, },
3642 .{ .cp = 0xF958, .status = .mapped, .mapping = &.{0x83F1}, .status2 = .none, },
3643 .{ .cp = 0xF959, .status = .mapped, .mapping = &.{0x9675}, .status2 = .none, },
3644 .{ .cp = 0xF95A, .status = .mapped, .mapping = &.{0x8B80}, .status2 = .none, },
3645 .{ .cp = 0xF95B, .status = .mapped, .mapping = &.{0x62CF}, .status2 = .none, },
3646 .{ .cp = 0xF95C, .status = .mapped, .mapping = &.{0x6A02}, .status2 = .none, },
3647 .{ .cp = 0xF95D, .status = .mapped, .mapping = &.{0x8AFE}, .status2 = .none, },
3648 .{ .cp = 0xF95E, .status = .mapped, .mapping = &.{0x4E39}, .status2 = .none, },
3649 .{ .cp = 0xF95F, .status = .mapped, .mapping = &.{0x5BE7}, .status2 = .none, },
3650 .{ .cp = 0xF960, .status = .mapped, .mapping = &.{0x6012}, .status2 = .none, },
3651 .{ .cp = 0xF961, .status = .mapped, .mapping = &.{0x7387}, .status2 = .none, },
3652 .{ .cp = 0xF962, .status = .mapped, .mapping = &.{0x7570}, .status2 = .none, },
3653 .{ .cp = 0xF963, .status = .mapped, .mapping = &.{0x5317}, .status2 = .none, },
3654 .{ .cp = 0xF964, .status = .mapped, .mapping = &.{0x78FB}, .status2 = .none, },
3655 .{ .cp = 0xF965, .status = .mapped, .mapping = &.{0x4FBF}, .status2 = .none, },
3656 .{ .cp = 0xF966, .status = .mapped, .mapping = &.{0x5FA9}, .status2 = .none, },
3657 .{ .cp = 0xF967, .status = .mapped, .mapping = &.{0x4E0D}, .status2 = .none, },
3658 .{ .cp = 0xF968, .status = .mapped, .mapping = &.{0x6CCC}, .status2 = .none, },
3659 .{ .cp = 0xF969, .status = .mapped, .mapping = &.{0x6578}, .status2 = .none, },
3660 .{ .cp = 0xF96A, .status = .mapped, .mapping = &.{0x7D22}, .status2 = .none, },
3661 .{ .cp = 0xF96B, .status = .mapped, .mapping = &.{0x53C3}, .status2 = .none, },
3662 .{ .cp = 0xF96C, .status = .mapped, .mapping = &.{0x585E}, .status2 = .none, },
3663 .{ .cp = 0xF96D, .status = .mapped, .mapping = &.{0x7701}, .status2 = .none, },
3664 .{ .cp = 0xF96E, .status = .mapped, .mapping = &.{0x8449}, .status2 = .none, },
3665 .{ .cp = 0xF96F, .status = .mapped, .mapping = &.{0x8AAA}, .status2 = .none, },
3666 .{ .cp = 0xF970, .status = .mapped, .mapping = &.{0x6BBA}, .status2 = .none, },
3667 .{ .cp = 0xF971, .status = .mapped, .mapping = &.{0x8FB0}, .status2 = .none, },
3668 .{ .cp = 0xF972, .status = .mapped, .mapping = &.{0x6C88}, .status2 = .none, },
3669 .{ .cp = 0xF973, .status = .mapped, .mapping = &.{0x62FE}, .status2 = .none, },
3670 .{ .cp = 0xF974, .status = .mapped, .mapping = &.{0x82E5}, .status2 = .none, },
3671 .{ .cp = 0xF975, .status = .mapped, .mapping = &.{0x63A0}, .status2 = .none, },
3672 .{ .cp = 0xF976, .status = .mapped, .mapping = &.{0x7565}, .status2 = .none, },
3673 .{ .cp = 0xF977, .status = .mapped, .mapping = &.{0x4EAE}, .status2 = .none, },
3674 .{ .cp = 0xF978, .status = .mapped, .mapping = &.{0x5169}, .status2 = .none, },
3675 .{ .cp = 0xF979, .status = .mapped, .mapping = &.{0x51C9}, .status2 = .none, },
3676 .{ .cp = 0xF97A, .status = .mapped, .mapping = &.{0x6881}, .status2 = .none, },
3677 .{ .cp = 0xF97B, .status = .mapped, .mapping = &.{0x7CE7}, .status2 = .none, },
3678 .{ .cp = 0xF97C, .status = .mapped, .mapping = &.{0x826F}, .status2 = .none, },
3679 .{ .cp = 0xF97D, .status = .mapped, .mapping = &.{0x8AD2}, .status2 = .none, },
3680 .{ .cp = 0xF97E, .status = .mapped, .mapping = &.{0x91CF}, .status2 = .none, },
3681 .{ .cp = 0xF97F, .status = .mapped, .mapping = &.{0x52F5}, .status2 = .none, },
3682 .{ .cp = 0xF980, .status = .mapped, .mapping = &.{0x5442}, .status2 = .none, },
3683 .{ .cp = 0xF981, .status = .mapped, .mapping = &.{0x5973}, .status2 = .none, },
3684 .{ .cp = 0xF982, .status = .mapped, .mapping = &.{0x5EEC}, .status2 = .none, },
3685 .{ .cp = 0xF983, .status = .mapped, .mapping = &.{0x65C5}, .status2 = .none, },
3686 .{ .cp = 0xF984, .status = .mapped, .mapping = &.{0x6FFE}, .status2 = .none, },
3687 .{ .cp = 0xF985, .status = .mapped, .mapping = &.{0x792A}, .status2 = .none, },
3688 .{ .cp = 0xF986, .status = .mapped, .mapping = &.{0x95AD}, .status2 = .none, },
3689 .{ .cp = 0xF987, .status = .mapped, .mapping = &.{0x9A6A}, .status2 = .none, },
3690 .{ .cp = 0xF988, .status = .mapped, .mapping = &.{0x9E97}, .status2 = .none, },
3691 .{ .cp = 0xF989, .status = .mapped, .mapping = &.{0x9ECE}, .status2 = .none, },
3692 .{ .cp = 0xF98A, .status = .mapped, .mapping = &.{0x529B}, .status2 = .none, },
3693 .{ .cp = 0xF98B, .status = .mapped, .mapping = &.{0x66C6}, .status2 = .none, },
3694 .{ .cp = 0xF98C, .status = .mapped, .mapping = &.{0x6B77}, .status2 = .none, },
3695 .{ .cp = 0xF98D, .status = .mapped, .mapping = &.{0x8F62}, .status2 = .none, },
3696 .{ .cp = 0xF98E, .status = .mapped, .mapping = &.{0x5E74}, .status2 = .none, },
3697 .{ .cp = 0xF98F, .status = .mapped, .mapping = &.{0x6190}, .status2 = .none, },
3698 .{ .cp = 0xF990, .status = .mapped, .mapping = &.{0x6200}, .status2 = .none, },
3699 .{ .cp = 0xF991, .status = .mapped, .mapping = &.{0x649A}, .status2 = .none, },
3700 .{ .cp = 0xF992, .status = .mapped, .mapping = &.{0x6F23}, .status2 = .none, },
3701 .{ .cp = 0xF993, .status = .mapped, .mapping = &.{0x7149}, .status2 = .none, },
3702 .{ .cp = 0xF994, .status = .mapped, .mapping = &.{0x7489}, .status2 = .none, },
3703 .{ .cp = 0xF995, .status = .mapped, .mapping = &.{0x79CA}, .status2 = .none, },
3704 .{ .cp = 0xF996, .status = .mapped, .mapping = &.{0x7DF4}, .status2 = .none, },
3705 .{ .cp = 0xF997, .status = .mapped, .mapping = &.{0x806F}, .status2 = .none, },
3706 .{ .cp = 0xF998, .status = .mapped, .mapping = &.{0x8F26}, .status2 = .none, },
3707 .{ .cp = 0xF999, .status = .mapped, .mapping = &.{0x84EE}, .status2 = .none, },
3708 .{ .cp = 0xF99A, .status = .mapped, .mapping = &.{0x9023}, .status2 = .none, },
3709 .{ .cp = 0xF99B, .status = .mapped, .mapping = &.{0x934A}, .status2 = .none, },
3710 .{ .cp = 0xF99C, .status = .mapped, .mapping = &.{0x5217}, .status2 = .none, },
3711 .{ .cp = 0xF99D, .status = .mapped, .mapping = &.{0x52A3}, .status2 = .none, },
3712 .{ .cp = 0xF99E, .status = .mapped, .mapping = &.{0x54BD}, .status2 = .none, },
3713 .{ .cp = 0xF99F, .status = .mapped, .mapping = &.{0x70C8}, .status2 = .none, },
3714 .{ .cp = 0xF9A0, .status = .mapped, .mapping = &.{0x88C2}, .status2 = .none, },
3715 .{ .cp = 0xF9A1, .status = .mapped, .mapping = &.{0x8AAA}, .status2 = .none, },
3716 .{ .cp = 0xF9A2, .status = .mapped, .mapping = &.{0x5EC9}, .status2 = .none, },
3717 .{ .cp = 0xF9A3, .status = .mapped, .mapping = &.{0x5FF5}, .status2 = .none, },
3718 .{ .cp = 0xF9A4, .status = .mapped, .mapping = &.{0x637B}, .status2 = .none, },
3719 .{ .cp = 0xF9A5, .status = .mapped, .mapping = &.{0x6BAE}, .status2 = .none, },
3720 .{ .cp = 0xF9A6, .status = .mapped, .mapping = &.{0x7C3E}, .status2 = .none, },
3721 .{ .cp = 0xF9A7, .status = .mapped, .mapping = &.{0x7375}, .status2 = .none, },
3722 .{ .cp = 0xF9A8, .status = .mapped, .mapping = &.{0x4EE4}, .status2 = .none, },
3723 .{ .cp = 0xF9A9, .status = .mapped, .mapping = &.{0x56F9}, .status2 = .none, },
3724 .{ .cp = 0xF9AA, .status = .mapped, .mapping = &.{0x5BE7}, .status2 = .none, },
3725 .{ .cp = 0xF9AB, .status = .mapped, .mapping = &.{0x5DBA}, .status2 = .none, },
3726 .{ .cp = 0xF9AC, .status = .mapped, .mapping = &.{0x601C}, .status2 = .none, },
3727 .{ .cp = 0xF9AD, .status = .mapped, .mapping = &.{0x73B2}, .status2 = .none, },
3728 .{ .cp = 0xF9AE, .status = .mapped, .mapping = &.{0x7469}, .status2 = .none, },
3729 .{ .cp = 0xF9AF, .status = .mapped, .mapping = &.{0x7F9A}, .status2 = .none, },
3730 .{ .cp = 0xF9B0, .status = .mapped, .mapping = &.{0x8046}, .status2 = .none, },
3731 .{ .cp = 0xF9B1, .status = .mapped, .mapping = &.{0x9234}, .status2 = .none, },
3732 .{ .cp = 0xF9B2, .status = .mapped, .mapping = &.{0x96F6}, .status2 = .none, },
3733 .{ .cp = 0xF9B3, .status = .mapped, .mapping = &.{0x9748}, .status2 = .none, },
3734 .{ .cp = 0xF9B4, .status = .mapped, .mapping = &.{0x9818}, .status2 = .none, },
3735 .{ .cp = 0xF9B5, .status = .mapped, .mapping = &.{0x4F8B}, .status2 = .none, },
3736 .{ .cp = 0xF9B6, .status = .mapped, .mapping = &.{0x79AE}, .status2 = .none, },
3737 .{ .cp = 0xF9B7, .status = .mapped, .mapping = &.{0x91B4}, .status2 = .none, },
3738 .{ .cp = 0xF9B8, .status = .mapped, .mapping = &.{0x96B8}, .status2 = .none, },
3739 .{ .cp = 0xF9B9, .status = .mapped, .mapping = &.{0x60E1}, .status2 = .none, },
3740 .{ .cp = 0xF9BA, .status = .mapped, .mapping = &.{0x4E86}, .status2 = .none, },
3741 .{ .cp = 0xF9BB, .status = .mapped, .mapping = &.{0x50DA}, .status2 = .none, },
3742 .{ .cp = 0xF9BC, .status = .mapped, .mapping = &.{0x5BEE}, .status2 = .none, },
3743 .{ .cp = 0xF9BD, .status = .mapped, .mapping = &.{0x5C3F}, .status2 = .none, },
3744 .{ .cp = 0xF9BE, .status = .mapped, .mapping = &.{0x6599}, .status2 = .none, },
3745 .{ .cp = 0xF9BF, .status = .mapped, .mapping = &.{0x6A02}, .status2 = .none, },
3746 .{ .cp = 0xF9C0, .status = .mapped, .mapping = &.{0x71CE}, .status2 = .none, },
3747 .{ .cp = 0xF9C1, .status = .mapped, .mapping = &.{0x7642}, .status2 = .none, },
3748 .{ .cp = 0xF9C2, .status = .mapped, .mapping = &.{0x84FC}, .status2 = .none, },
3749 .{ .cp = 0xF9C3, .status = .mapped, .mapping = &.{0x907C}, .status2 = .none, },
3750 .{ .cp = 0xF9C4, .status = .mapped, .mapping = &.{0x9F8D}, .status2 = .none, },
3751 .{ .cp = 0xF9C5, .status = .mapped, .mapping = &.{0x6688}, .status2 = .none, },
3752 .{ .cp = 0xF9C6, .status = .mapped, .mapping = &.{0x962E}, .status2 = .none, },
3753 .{ .cp = 0xF9C7, .status = .mapped, .mapping = &.{0x5289}, .status2 = .none, },
3754 .{ .cp = 0xF9C8, .status = .mapped, .mapping = &.{0x677B}, .status2 = .none, },
3755 .{ .cp = 0xF9C9, .status = .mapped, .mapping = &.{0x67F3}, .status2 = .none, },
3756 .{ .cp = 0xF9CA, .status = .mapped, .mapping = &.{0x6D41}, .status2 = .none, },
3757 .{ .cp = 0xF9CB, .status = .mapped, .mapping = &.{0x6E9C}, .status2 = .none, },
3758 .{ .cp = 0xF9CC, .status = .mapped, .mapping = &.{0x7409}, .status2 = .none, },
3759 .{ .cp = 0xF9CD, .status = .mapped, .mapping = &.{0x7559}, .status2 = .none, },
3760 .{ .cp = 0xF9CE, .status = .mapped, .mapping = &.{0x786B}, .status2 = .none, },
3761 .{ .cp = 0xF9CF, .status = .mapped, .mapping = &.{0x7D10}, .status2 = .none, },
3762 .{ .cp = 0xF9D0, .status = .mapped, .mapping = &.{0x985E}, .status2 = .none, },
3763 .{ .cp = 0xF9D1, .status = .mapped, .mapping = &.{0x516D}, .status2 = .none, },
3764 .{ .cp = 0xF9D2, .status = .mapped, .mapping = &.{0x622E}, .status2 = .none, },
3765 .{ .cp = 0xF9D3, .status = .mapped, .mapping = &.{0x9678}, .status2 = .none, },
3766 .{ .cp = 0xF9D4, .status = .mapped, .mapping = &.{0x502B}, .status2 = .none, },
3767 .{ .cp = 0xF9D5, .status = .mapped, .mapping = &.{0x5D19}, .status2 = .none, },
3768 .{ .cp = 0xF9D6, .status = .mapped, .mapping = &.{0x6DEA}, .status2 = .none, },
3769 .{ .cp = 0xF9D7, .status = .mapped, .mapping = &.{0x8F2A}, .status2 = .none, },
3770 .{ .cp = 0xF9D8, .status = .mapped, .mapping = &.{0x5F8B}, .status2 = .none, },
3771 .{ .cp = 0xF9D9, .status = .mapped, .mapping = &.{0x6144}, .status2 = .none, },
3772 .{ .cp = 0xF9DA, .status = .mapped, .mapping = &.{0x6817}, .status2 = .none, },
3773 .{ .cp = 0xF9DB, .status = .mapped, .mapping = &.{0x7387}, .status2 = .none, },
3774 .{ .cp = 0xF9DC, .status = .mapped, .mapping = &.{0x9686}, .status2 = .none, },
3775 .{ .cp = 0xF9DD, .status = .mapped, .mapping = &.{0x5229}, .status2 = .none, },
3776 .{ .cp = 0xF9DE, .status = .mapped, .mapping = &.{0x540F}, .status2 = .none, },
3777 .{ .cp = 0xF9DF, .status = .mapped, .mapping = &.{0x5C65}, .status2 = .none, },
3778 .{ .cp = 0xF9E0, .status = .mapped, .mapping = &.{0x6613}, .status2 = .none, },
3779 .{ .cp = 0xF9E1, .status = .mapped, .mapping = &.{0x674E}, .status2 = .none, },
3780 .{ .cp = 0xF9E2, .status = .mapped, .mapping = &.{0x68A8}, .status2 = .none, },
3781 .{ .cp = 0xF9E3, .status = .mapped, .mapping = &.{0x6CE5}, .status2 = .none, },
3782 .{ .cp = 0xF9E4, .status = .mapped, .mapping = &.{0x7406}, .status2 = .none, },
3783 .{ .cp = 0xF9E5, .status = .mapped, .mapping = &.{0x75E2}, .status2 = .none, },
3784 .{ .cp = 0xF9E6, .status = .mapped, .mapping = &.{0x7F79}, .status2 = .none, },
3785 .{ .cp = 0xF9E7, .status = .mapped, .mapping = &.{0x88CF}, .status2 = .none, },
3786 .{ .cp = 0xF9E8, .status = .mapped, .mapping = &.{0x88E1}, .status2 = .none, },
3787 .{ .cp = 0xF9E9, .status = .mapped, .mapping = &.{0x91CC}, .status2 = .none, },
3788 .{ .cp = 0xF9EA, .status = .mapped, .mapping = &.{0x96E2}, .status2 = .none, },
3789 .{ .cp = 0xF9EB, .status = .mapped, .mapping = &.{0x533F}, .status2 = .none, },
3790 .{ .cp = 0xF9EC, .status = .mapped, .mapping = &.{0x6EBA}, .status2 = .none, },
3791 .{ .cp = 0xF9ED, .status = .mapped, .mapping = &.{0x541D}, .status2 = .none, },
3792 .{ .cp = 0xF9EE, .status = .mapped, .mapping = &.{0x71D0}, .status2 = .none, },
3793 .{ .cp = 0xF9EF, .status = .mapped, .mapping = &.{0x7498}, .status2 = .none, },
3794 .{ .cp = 0xF9F0, .status = .mapped, .mapping = &.{0x85FA}, .status2 = .none, },
3795 .{ .cp = 0xF9F1, .status = .mapped, .mapping = &.{0x96A3}, .status2 = .none, },
3796 .{ .cp = 0xF9F2, .status = .mapped, .mapping = &.{0x9C57}, .status2 = .none, },
3797 .{ .cp = 0xF9F3, .status = .mapped, .mapping = &.{0x9E9F}, .status2 = .none, },
3798 .{ .cp = 0xF9F4, .status = .mapped, .mapping = &.{0x6797}, .status2 = .none, },
3799 .{ .cp = 0xF9F5, .status = .mapped, .mapping = &.{0x6DCB}, .status2 = .none, },
3800 .{ .cp = 0xF9F6, .status = .mapped, .mapping = &.{0x81E8}, .status2 = .none, },
3801 .{ .cp = 0xF9F7, .status = .mapped, .mapping = &.{0x7ACB}, .status2 = .none, },
3802 .{ .cp = 0xF9F8, .status = .mapped, .mapping = &.{0x7B20}, .status2 = .none, },
3803 .{ .cp = 0xF9F9, .status = .mapped, .mapping = &.{0x7C92}, .status2 = .none, },
3804 .{ .cp = 0xF9FA, .status = .mapped, .mapping = &.{0x72C0}, .status2 = .none, },
3805 .{ .cp = 0xF9FB, .status = .mapped, .mapping = &.{0x7099}, .status2 = .none, },
3806 .{ .cp = 0xF9FC, .status = .mapped, .mapping = &.{0x8B58}, .status2 = .none, },
3807 .{ .cp = 0xF9FD, .status = .mapped, .mapping = &.{0x4EC0}, .status2 = .none, },
3808 .{ .cp = 0xF9FE, .status = .mapped, .mapping = &.{0x8336}, .status2 = .none, },
3809 .{ .cp = 0xF9FF, .status = .mapped, .mapping = &.{0x523A}, .status2 = .none, },
3810 .{ .cp = 0xFA00, .status = .mapped, .mapping = &.{0x5207}, .status2 = .none, },
3811 .{ .cp = 0xFA01, .status = .mapped, .mapping = &.{0x5EA6}, .status2 = .none, },
3812 .{ .cp = 0xFA02, .status = .mapped, .mapping = &.{0x62D3}, .status2 = .none, },
3813 .{ .cp = 0xFA03, .status = .mapped, .mapping = &.{0x7CD6}, .status2 = .none, },
3814 .{ .cp = 0xFA04, .status = .mapped, .mapping = &.{0x5B85}, .status2 = .none, },
3815 .{ .cp = 0xFA05, .status = .mapped, .mapping = &.{0x6D1E}, .status2 = .none, },
3816 .{ .cp = 0xFA06, .status = .mapped, .mapping = &.{0x66B4}, .status2 = .none, },
3817 .{ .cp = 0xFA07, .status = .mapped, .mapping = &.{0x8F3B}, .status2 = .none, },
3818 .{ .cp = 0xFA08, .status = .mapped, .mapping = &.{0x884C}, .status2 = .none, },
3819 .{ .cp = 0xFA09, .status = .mapped, .mapping = &.{0x964D}, .status2 = .none, },
3820 .{ .cp = 0xFA0A, .status = .mapped, .mapping = &.{0x898B}, .status2 = .none, },
3821 .{ .cp = 0xFA0B, .status = .mapped, .mapping = &.{0x5ED3}, .status2 = .none, },
3822 .{ .cp = 0xFA0C, .status = .mapped, .mapping = &.{0x5140}, .status2 = .none, },
3823 .{ .cp = 0xFA0D, .status = .mapped, .mapping = &.{0x55C0}, .status2 = .none, },
3824 .{ .cp = 0xFA10, .status = .mapped, .mapping = &.{0x585A}, .status2 = .none, },
3825 .{ .cp = 0xFA11, .status = .valid, .mapping = &.{}, .status2 = .none, },
3826 .{ .cp = 0xFA12, .status = .mapped, .mapping = &.{0x6674}, .status2 = .none, },
3827 .{ .cp = 0xFA15, .status = .mapped, .mapping = &.{0x51DE}, .status2 = .none, },
3828 .{ .cp = 0xFA16, .status = .mapped, .mapping = &.{0x732A}, .status2 = .none, },
3829 .{ .cp = 0xFA17, .status = .mapped, .mapping = &.{0x76CA}, .status2 = .none, },
3830 .{ .cp = 0xFA18, .status = .mapped, .mapping = &.{0x793C}, .status2 = .none, },
3831 .{ .cp = 0xFA19, .status = .mapped, .mapping = &.{0x795E}, .status2 = .none, },
3832 .{ .cp = 0xFA1A, .status = .mapped, .mapping = &.{0x7965}, .status2 = .none, },
3833 .{ .cp = 0xFA1B, .status = .mapped, .mapping = &.{0x798F}, .status2 = .none, },
3834 .{ .cp = 0xFA1C, .status = .mapped, .mapping = &.{0x9756}, .status2 = .none, },
3835 .{ .cp = 0xFA1D, .status = .mapped, .mapping = &.{0x7CBE}, .status2 = .none, },
3836 .{ .cp = 0xFA1E, .status = .mapped, .mapping = &.{0x7FBD}, .status2 = .none, },
3837 .{ .cp = 0xFA1F, .status = .valid, .mapping = &.{}, .status2 = .none, },
3838 .{ .cp = 0xFA20, .status = .mapped, .mapping = &.{0x8612}, .status2 = .none, },
3839 .{ .cp = 0xFA21, .status = .valid, .mapping = &.{}, .status2 = .none, },
3840 .{ .cp = 0xFA22, .status = .mapped, .mapping = &.{0x8AF8}, .status2 = .none, },
3841 .{ .cp = 0xFA25, .status = .mapped, .mapping = &.{0x9038}, .status2 = .none, },
3842 .{ .cp = 0xFA26, .status = .mapped, .mapping = &.{0x90FD}, .status2 = .none, },
3843 .{ .cp = 0xFA2A, .status = .mapped, .mapping = &.{0x98EF}, .status2 = .none, },
3844 .{ .cp = 0xFA2B, .status = .mapped, .mapping = &.{0x98FC}, .status2 = .none, },
3845 .{ .cp = 0xFA2C, .status = .mapped, .mapping = &.{0x9928}, .status2 = .none, },
3846 .{ .cp = 0xFA2D, .status = .mapped, .mapping = &.{0x9DB4}, .status2 = .none, },
3847 .{ .cp = 0xFA2E, .status = .mapped, .mapping = &.{0x90DE}, .status2 = .none, },
3848 .{ .cp = 0xFA2F, .status = .mapped, .mapping = &.{0x96B7}, .status2 = .none, },
3849 .{ .cp = 0xFA30, .status = .mapped, .mapping = &.{0x4FAE}, .status2 = .none, },
3850 .{ .cp = 0xFA31, .status = .mapped, .mapping = &.{0x50E7}, .status2 = .none, },
3851 .{ .cp = 0xFA32, .status = .mapped, .mapping = &.{0x514D}, .status2 = .none, },
3852 .{ .cp = 0xFA33, .status = .mapped, .mapping = &.{0x52C9}, .status2 = .none, },
3853 .{ .cp = 0xFA34, .status = .mapped, .mapping = &.{0x52E4}, .status2 = .none, },
3854 .{ .cp = 0xFA35, .status = .mapped, .mapping = &.{0x5351}, .status2 = .none, },
3855 .{ .cp = 0xFA36, .status = .mapped, .mapping = &.{0x559D}, .status2 = .none, },
3856 .{ .cp = 0xFA37, .status = .mapped, .mapping = &.{0x5606}, .status2 = .none, },
3857 .{ .cp = 0xFA38, .status = .mapped, .mapping = &.{0x5668}, .status2 = .none, },
3858 .{ .cp = 0xFA39, .status = .mapped, .mapping = &.{0x5840}, .status2 = .none, },
3859 .{ .cp = 0xFA3A, .status = .mapped, .mapping = &.{0x58A8}, .status2 = .none, },
3860 .{ .cp = 0xFA3B, .status = .mapped, .mapping = &.{0x5C64}, .status2 = .none, },
3861 .{ .cp = 0xFA3C, .status = .mapped, .mapping = &.{0x5C6E}, .status2 = .none, },
3862 .{ .cp = 0xFA3D, .status = .mapped, .mapping = &.{0x6094}, .status2 = .none, },
3863 .{ .cp = 0xFA3E, .status = .mapped, .mapping = &.{0x6168}, .status2 = .none, },
3864 .{ .cp = 0xFA3F, .status = .mapped, .mapping = &.{0x618E}, .status2 = .none, },
3865 .{ .cp = 0xFA40, .status = .mapped, .mapping = &.{0x61F2}, .status2 = .none, },
3866 .{ .cp = 0xFA41, .status = .mapped, .mapping = &.{0x654F}, .status2 = .none, },
3867 .{ .cp = 0xFA42, .status = .mapped, .mapping = &.{0x65E2}, .status2 = .none, },
3868 .{ .cp = 0xFA43, .status = .mapped, .mapping = &.{0x6691}, .status2 = .none, },
3869 .{ .cp = 0xFA44, .status = .mapped, .mapping = &.{0x6885}, .status2 = .none, },
3870 .{ .cp = 0xFA45, .status = .mapped, .mapping = &.{0x6D77}, .status2 = .none, },
3871 .{ .cp = 0xFA46, .status = .mapped, .mapping = &.{0x6E1A}, .status2 = .none, },
3872 .{ .cp = 0xFA47, .status = .mapped, .mapping = &.{0x6F22}, .status2 = .none, },
3873 .{ .cp = 0xFA48, .status = .mapped, .mapping = &.{0x716E}, .status2 = .none, },
3874 .{ .cp = 0xFA49, .status = .mapped, .mapping = &.{0x722B}, .status2 = .none, },
3875 .{ .cp = 0xFA4A, .status = .mapped, .mapping = &.{0x7422}, .status2 = .none, },
3876 .{ .cp = 0xFA4B, .status = .mapped, .mapping = &.{0x7891}, .status2 = .none, },
3877 .{ .cp = 0xFA4C, .status = .mapped, .mapping = &.{0x793E}, .status2 = .none, },
3878 .{ .cp = 0xFA4D, .status = .mapped, .mapping = &.{0x7949}, .status2 = .none, },
3879 .{ .cp = 0xFA4E, .status = .mapped, .mapping = &.{0x7948}, .status2 = .none, },
3880 .{ .cp = 0xFA4F, .status = .mapped, .mapping = &.{0x7950}, .status2 = .none, },
3881 .{ .cp = 0xFA50, .status = .mapped, .mapping = &.{0x7956}, .status2 = .none, },
3882 .{ .cp = 0xFA51, .status = .mapped, .mapping = &.{0x795D}, .status2 = .none, },
3883 .{ .cp = 0xFA52, .status = .mapped, .mapping = &.{0x798D}, .status2 = .none, },
3884 .{ .cp = 0xFA53, .status = .mapped, .mapping = &.{0x798E}, .status2 = .none, },
3885 .{ .cp = 0xFA54, .status = .mapped, .mapping = &.{0x7A40}, .status2 = .none, },
3886 .{ .cp = 0xFA55, .status = .mapped, .mapping = &.{0x7A81}, .status2 = .none, },
3887 .{ .cp = 0xFA56, .status = .mapped, .mapping = &.{0x7BC0}, .status2 = .none, },
3888 .{ .cp = 0xFA57, .status = .mapped, .mapping = &.{0x7DF4}, .status2 = .none, },
3889 .{ .cp = 0xFA58, .status = .mapped, .mapping = &.{0x7E09}, .status2 = .none, },
3890 .{ .cp = 0xFA59, .status = .mapped, .mapping = &.{0x7E41}, .status2 = .none, },
3891 .{ .cp = 0xFA5A, .status = .mapped, .mapping = &.{0x7F72}, .status2 = .none, },
3892 .{ .cp = 0xFA5B, .status = .mapped, .mapping = &.{0x8005}, .status2 = .none, },
3893 .{ .cp = 0xFA5C, .status = .mapped, .mapping = &.{0x81ED}, .status2 = .none, },
3894 .{ .cp = 0xFA5F, .status = .mapped, .mapping = &.{0x8457}, .status2 = .none, },
3895 .{ .cp = 0xFA60, .status = .mapped, .mapping = &.{0x8910}, .status2 = .none, },
3896 .{ .cp = 0xFA61, .status = .mapped, .mapping = &.{0x8996}, .status2 = .none, },
3897 .{ .cp = 0xFA62, .status = .mapped, .mapping = &.{0x8B01}, .status2 = .none, },
3898 .{ .cp = 0xFA63, .status = .mapped, .mapping = &.{0x8B39}, .status2 = .none, },
3899 .{ .cp = 0xFA64, .status = .mapped, .mapping = &.{0x8CD3}, .status2 = .none, },
3900 .{ .cp = 0xFA65, .status = .mapped, .mapping = &.{0x8D08}, .status2 = .none, },
3901 .{ .cp = 0xFA66, .status = .mapped, .mapping = &.{0x8FB6}, .status2 = .none, },
3902 .{ .cp = 0xFA67, .status = .mapped, .mapping = &.{0x9038}, .status2 = .none, },
3903 .{ .cp = 0xFA68, .status = .mapped, .mapping = &.{0x96E3}, .status2 = .none, },
3904 .{ .cp = 0xFA69, .status = .mapped, .mapping = &.{0x97FF}, .status2 = .none, },
3905 .{ .cp = 0xFA6A, .status = .mapped, .mapping = &.{0x983B}, .status2 = .none, },
3906 .{ .cp = 0xFA6B, .status = .mapped, .mapping = &.{0x6075}, .status2 = .none, },
3907 .{ .cp = 0xFA6C, .status = .mapped, .mapping = &.{0x242EE}, .status2 = .none, },
3908 .{ .cp = 0xFA6D, .status = .mapped, .mapping = &.{0x8218}, .status2 = .none, },
3909 .{ .cp = 0xFA70, .status = .mapped, .mapping = &.{0x4E26}, .status2 = .none, },
3910 .{ .cp = 0xFA71, .status = .mapped, .mapping = &.{0x51B5}, .status2 = .none, },
3911 .{ .cp = 0xFA72, .status = .mapped, .mapping = &.{0x5168}, .status2 = .none, },
3912 .{ .cp = 0xFA73, .status = .mapped, .mapping = &.{0x4F80}, .status2 = .none, },
3913 .{ .cp = 0xFA74, .status = .mapped, .mapping = &.{0x5145}, .status2 = .none, },
3914 .{ .cp = 0xFA75, .status = .mapped, .mapping = &.{0x5180}, .status2 = .none, },
3915 .{ .cp = 0xFA76, .status = .mapped, .mapping = &.{0x52C7}, .status2 = .none, },
3916 .{ .cp = 0xFA77, .status = .mapped, .mapping = &.{0x52FA}, .status2 = .none, },
3917 .{ .cp = 0xFA78, .status = .mapped, .mapping = &.{0x559D}, .status2 = .none, },
3918 .{ .cp = 0xFA79, .status = .mapped, .mapping = &.{0x5555}, .status2 = .none, },
3919 .{ .cp = 0xFA7A, .status = .mapped, .mapping = &.{0x5599}, .status2 = .none, },
3920 .{ .cp = 0xFA7B, .status = .mapped, .mapping = &.{0x55E2}, .status2 = .none, },
3921 .{ .cp = 0xFA7C, .status = .mapped, .mapping = &.{0x585A}, .status2 = .none, },
3922 .{ .cp = 0xFA7D, .status = .mapped, .mapping = &.{0x58B3}, .status2 = .none, },
3923 .{ .cp = 0xFA7E, .status = .mapped, .mapping = &.{0x5944}, .status2 = .none, },
3924 .{ .cp = 0xFA7F, .status = .mapped, .mapping = &.{0x5954}, .status2 = .none, },
3925 .{ .cp = 0xFA80, .status = .mapped, .mapping = &.{0x5A62}, .status2 = .none, },
3926 .{ .cp = 0xFA81, .status = .mapped, .mapping = &.{0x5B28}, .status2 = .none, },
3927 .{ .cp = 0xFA82, .status = .mapped, .mapping = &.{0x5ED2}, .status2 = .none, },
3928 .{ .cp = 0xFA83, .status = .mapped, .mapping = &.{0x5ED9}, .status2 = .none, },
3929 .{ .cp = 0xFA84, .status = .mapped, .mapping = &.{0x5F69}, .status2 = .none, },
3930 .{ .cp = 0xFA85, .status = .mapped, .mapping = &.{0x5FAD}, .status2 = .none, },
3931 .{ .cp = 0xFA86, .status = .mapped, .mapping = &.{0x60D8}, .status2 = .none, },
3932 .{ .cp = 0xFA87, .status = .mapped, .mapping = &.{0x614E}, .status2 = .none, },
3933 .{ .cp = 0xFA88, .status = .mapped, .mapping = &.{0x6108}, .status2 = .none, },
3934 .{ .cp = 0xFA89, .status = .mapped, .mapping = &.{0x618E}, .status2 = .none, },
3935 .{ .cp = 0xFA8A, .status = .mapped, .mapping = &.{0x6160}, .status2 = .none, },
3936 .{ .cp = 0xFA8B, .status = .mapped, .mapping = &.{0x61F2}, .status2 = .none, },
3937 .{ .cp = 0xFA8C, .status = .mapped, .mapping = &.{0x6234}, .status2 = .none, },
3938 .{ .cp = 0xFA8D, .status = .mapped, .mapping = &.{0x63C4}, .status2 = .none, },
3939 .{ .cp = 0xFA8E, .status = .mapped, .mapping = &.{0x641C}, .status2 = .none, },
3940 .{ .cp = 0xFA8F, .status = .mapped, .mapping = &.{0x6452}, .status2 = .none, },
3941 .{ .cp = 0xFA90, .status = .mapped, .mapping = &.{0x6556}, .status2 = .none, },
3942 .{ .cp = 0xFA91, .status = .mapped, .mapping = &.{0x6674}, .status2 = .none, },
3943 .{ .cp = 0xFA92, .status = .mapped, .mapping = &.{0x6717}, .status2 = .none, },
3944 .{ .cp = 0xFA93, .status = .mapped, .mapping = &.{0x671B}, .status2 = .none, },
3945 .{ .cp = 0xFA94, .status = .mapped, .mapping = &.{0x6756}, .status2 = .none, },
3946 .{ .cp = 0xFA95, .status = .mapped, .mapping = &.{0x6B79}, .status2 = .none, },
3947 .{ .cp = 0xFA96, .status = .mapped, .mapping = &.{0x6BBA}, .status2 = .none, },
3948 .{ .cp = 0xFA97, .status = .mapped, .mapping = &.{0x6D41}, .status2 = .none, },
3949 .{ .cp = 0xFA98, .status = .mapped, .mapping = &.{0x6EDB}, .status2 = .none, },
3950 .{ .cp = 0xFA99, .status = .mapped, .mapping = &.{0x6ECB}, .status2 = .none, },
3951 .{ .cp = 0xFA9A, .status = .mapped, .mapping = &.{0x6F22}, .status2 = .none, },
3952 .{ .cp = 0xFA9B, .status = .mapped, .mapping = &.{0x701E}, .status2 = .none, },
3953 .{ .cp = 0xFA9C, .status = .mapped, .mapping = &.{0x716E}, .status2 = .none, },
3954 .{ .cp = 0xFA9D, .status = .mapped, .mapping = &.{0x77A7}, .status2 = .none, },
3955 .{ .cp = 0xFA9E, .status = .mapped, .mapping = &.{0x7235}, .status2 = .none, },
3956 .{ .cp = 0xFA9F, .status = .mapped, .mapping = &.{0x72AF}, .status2 = .none, },
3957 .{ .cp = 0xFAA0, .status = .mapped, .mapping = &.{0x732A}, .status2 = .none, },
3958 .{ .cp = 0xFAA1, .status = .mapped, .mapping = &.{0x7471}, .status2 = .none, },
3959 .{ .cp = 0xFAA2, .status = .mapped, .mapping = &.{0x7506}, .status2 = .none, },
3960 .{ .cp = 0xFAA3, .status = .mapped, .mapping = &.{0x753B}, .status2 = .none, },
3961 .{ .cp = 0xFAA4, .status = .mapped, .mapping = &.{0x761D}, .status2 = .none, },
3962 .{ .cp = 0xFAA5, .status = .mapped, .mapping = &.{0x761F}, .status2 = .none, },
3963 .{ .cp = 0xFAA6, .status = .mapped, .mapping = &.{0x76CA}, .status2 = .none, },
3964 .{ .cp = 0xFAA7, .status = .mapped, .mapping = &.{0x76DB}, .status2 = .none, },
3965 .{ .cp = 0xFAA8, .status = .mapped, .mapping = &.{0x76F4}, .status2 = .none, },
3966 .{ .cp = 0xFAA9, .status = .mapped, .mapping = &.{0x774A}, .status2 = .none, },
3967 .{ .cp = 0xFAAA, .status = .mapped, .mapping = &.{0x7740}, .status2 = .none, },
3968 .{ .cp = 0xFAAB, .status = .mapped, .mapping = &.{0x78CC}, .status2 = .none, },
3969 .{ .cp = 0xFAAC, .status = .mapped, .mapping = &.{0x7AB1}, .status2 = .none, },
3970 .{ .cp = 0xFAAD, .status = .mapped, .mapping = &.{0x7BC0}, .status2 = .none, },
3971 .{ .cp = 0xFAAE, .status = .mapped, .mapping = &.{0x7C7B}, .status2 = .none, },
3972 .{ .cp = 0xFAAF, .status = .mapped, .mapping = &.{0x7D5B}, .status2 = .none, },
3973 .{ .cp = 0xFAB0, .status = .mapped, .mapping = &.{0x7DF4}, .status2 = .none, },
3974 .{ .cp = 0xFAB1, .status = .mapped, .mapping = &.{0x7F3E}, .status2 = .none, },
3975 .{ .cp = 0xFAB2, .status = .mapped, .mapping = &.{0x8005}, .status2 = .none, },
3976 .{ .cp = 0xFAB3, .status = .mapped, .mapping = &.{0x8352}, .status2 = .none, },
3977 .{ .cp = 0xFAB4, .status = .mapped, .mapping = &.{0x83EF}, .status2 = .none, },
3978 .{ .cp = 0xFAB5, .status = .mapped, .mapping = &.{0x8779}, .status2 = .none, },
3979 .{ .cp = 0xFAB6, .status = .mapped, .mapping = &.{0x8941}, .status2 = .none, },
3980 .{ .cp = 0xFAB7, .status = .mapped, .mapping = &.{0x8986}, .status2 = .none, },
3981 .{ .cp = 0xFAB8, .status = .mapped, .mapping = &.{0x8996}, .status2 = .none, },
3982 .{ .cp = 0xFAB9, .status = .mapped, .mapping = &.{0x8ABF}, .status2 = .none, },
3983 .{ .cp = 0xFABA, .status = .mapped, .mapping = &.{0x8AF8}, .status2 = .none, },
3984 .{ .cp = 0xFABB, .status = .mapped, .mapping = &.{0x8ACB}, .status2 = .none, },
3985 .{ .cp = 0xFABC, .status = .mapped, .mapping = &.{0x8B01}, .status2 = .none, },
3986 .{ .cp = 0xFABD, .status = .mapped, .mapping = &.{0x8AFE}, .status2 = .none, },
3987 .{ .cp = 0xFABE, .status = .mapped, .mapping = &.{0x8AED}, .status2 = .none, },
3988 .{ .cp = 0xFABF, .status = .mapped, .mapping = &.{0x8B39}, .status2 = .none, },
3989 .{ .cp = 0xFAC0, .status = .mapped, .mapping = &.{0x8B8A}, .status2 = .none, },
3990 .{ .cp = 0xFAC1, .status = .mapped, .mapping = &.{0x8D08}, .status2 = .none, },
3991 .{ .cp = 0xFAC2, .status = .mapped, .mapping = &.{0x8F38}, .status2 = .none, },
3992 .{ .cp = 0xFAC3, .status = .mapped, .mapping = &.{0x9072}, .status2 = .none, },
3993 .{ .cp = 0xFAC4, .status = .mapped, .mapping = &.{0x9199}, .status2 = .none, },
3994 .{ .cp = 0xFAC5, .status = .mapped, .mapping = &.{0x9276}, .status2 = .none, },
3995 .{ .cp = 0xFAC6, .status = .mapped, .mapping = &.{0x967C}, .status2 = .none, },
3996 .{ .cp = 0xFAC7, .status = .mapped, .mapping = &.{0x96E3}, .status2 = .none, },
3997 .{ .cp = 0xFAC8, .status = .mapped, .mapping = &.{0x9756}, .status2 = .none, },
3998 .{ .cp = 0xFAC9, .status = .mapped, .mapping = &.{0x97DB}, .status2 = .none, },
3999 .{ .cp = 0xFACA, .status = .mapped, .mapping = &.{0x97FF}, .status2 = .none, },
4000 .{ .cp = 0xFACB, .status = .mapped, .mapping = &.{0x980B}, .status2 = .none, },
4001 .{ .cp = 0xFACC, .status = .mapped, .mapping = &.{0x983B}, .status2 = .none, },
4002 .{ .cp = 0xFACD, .status = .mapped, .mapping = &.{0x9B12}, .status2 = .none, },
4003 .{ .cp = 0xFACE, .status = .mapped, .mapping = &.{0x9F9C}, .status2 = .none, },
4004 .{ .cp = 0xFACF, .status = .mapped, .mapping = &.{0x2284A}, .status2 = .none, },
4005 .{ .cp = 0xFAD0, .status = .mapped, .mapping = &.{0x22844}, .status2 = .none, },
4006 .{ .cp = 0xFAD1, .status = .mapped, .mapping = &.{0x233D5}, .status2 = .none, },
4007 .{ .cp = 0xFAD2, .status = .mapped, .mapping = &.{0x3B9D}, .status2 = .none, },
4008 .{ .cp = 0xFAD3, .status = .mapped, .mapping = &.{0x4018}, .status2 = .none, },
4009 .{ .cp = 0xFAD4, .status = .mapped, .mapping = &.{0x4039}, .status2 = .none, },
4010 .{ .cp = 0xFAD5, .status = .mapped, .mapping = &.{0x25249}, .status2 = .none, },
4011 .{ .cp = 0xFAD6, .status = .mapped, .mapping = &.{0x25CD0}, .status2 = .none, },
4012 .{ .cp = 0xFAD7, .status = .mapped, .mapping = &.{0x27ED3}, .status2 = .none, },
4013 .{ .cp = 0xFAD8, .status = .mapped, .mapping = &.{0x9F43}, .status2 = .none, },
4014 .{ .cp = 0xFAD9, .status = .mapped, .mapping = &.{0x9F8E}, .status2 = .none, },
4015 .{ .cp = 0xFB00, .status = .mapped, .mapping = &.{0x0066,0x0066}, .status2 = .none, },
4016 .{ .cp = 0xFB01, .status = .mapped, .mapping = &.{0x0066,0x0069}, .status2 = .none, },
4017 .{ .cp = 0xFB02, .status = .mapped, .mapping = &.{0x0066,0x006C}, .status2 = .none, },
4018 .{ .cp = 0xFB03, .status = .mapped, .mapping = &.{0x0066,0x0066,0x0069}, .status2 = .none, },
4019 .{ .cp = 0xFB04, .status = .mapped, .mapping = &.{0x0066,0x0066,0x006C}, .status2 = .none, },
4020 .{ .cp = 0xFB13, .status = .mapped, .mapping = &.{0x0574,0x0576}, .status2 = .none, },
4021 .{ .cp = 0xFB14, .status = .mapped, .mapping = &.{0x0574,0x0565}, .status2 = .none, },
4022 .{ .cp = 0xFB15, .status = .mapped, .mapping = &.{0x0574,0x056B}, .status2 = .none, },
4023 .{ .cp = 0xFB16, .status = .mapped, .mapping = &.{0x057E,0x0576}, .status2 = .none, },
4024 .{ .cp = 0xFB17, .status = .mapped, .mapping = &.{0x0574,0x056D}, .status2 = .none, },
4025 .{ .cp = 0xFB1D, .status = .mapped, .mapping = &.{0x05D9,0x05B4}, .status2 = .none, },
4026 .{ .cp = 0xFB1E, .status = .valid, .mapping = &.{}, .status2 = .none, },
4027 .{ .cp = 0xFB1F, .status = .mapped, .mapping = &.{0x05F2,0x05B7}, .status2 = .none, },
4028 .{ .cp = 0xFB20, .status = .mapped, .mapping = &.{0x05E2}, .status2 = .none, },
4029 .{ .cp = 0xFB21, .status = .mapped, .mapping = &.{0x05D0}, .status2 = .none, },
4030 .{ .cp = 0xFB22, .status = .mapped, .mapping = &.{0x05D3}, .status2 = .none, },
4031 .{ .cp = 0xFB23, .status = .mapped, .mapping = &.{0x05D4}, .status2 = .none, },
4032 .{ .cp = 0xFB24, .status = .mapped, .mapping = &.{0x05DB}, .status2 = .none, },
4033 .{ .cp = 0xFB25, .status = .mapped, .mapping = &.{0x05DC}, .status2 = .none, },
4034 .{ .cp = 0xFB26, .status = .mapped, .mapping = &.{0x05DD}, .status2 = .none, },
4035 .{ .cp = 0xFB27, .status = .mapped, .mapping = &.{0x05E8}, .status2 = .none, },
4036 .{ .cp = 0xFB28, .status = .mapped, .mapping = &.{0x05EA}, .status2 = .none, },
4037 .{ .cp = 0xFB29, .status = .mapped, .mapping = &.{0x002B}, .status2 = .none, },
4038 .{ .cp = 0xFB2A, .status = .mapped, .mapping = &.{0x05E9,0x05C1}, .status2 = .none, },
4039 .{ .cp = 0xFB2B, .status = .mapped, .mapping = &.{0x05E9,0x05C2}, .status2 = .none, },
4040 .{ .cp = 0xFB2C, .status = .mapped, .mapping = &.{0x05E9,0x05BC,0x05C1}, .status2 = .none, },
4041 .{ .cp = 0xFB2D, .status = .mapped, .mapping = &.{0x05E9,0x05BC,0x05C2}, .status2 = .none, },
4042 .{ .cp = 0xFB2E, .status = .mapped, .mapping = &.{0x05D0,0x05B7}, .status2 = .none, },
4043 .{ .cp = 0xFB2F, .status = .mapped, .mapping = &.{0x05D0,0x05B8}, .status2 = .none, },
4044 .{ .cp = 0xFB30, .status = .mapped, .mapping = &.{0x05D0,0x05BC}, .status2 = .none, },
4045 .{ .cp = 0xFB31, .status = .mapped, .mapping = &.{0x05D1,0x05BC}, .status2 = .none, },
4046 .{ .cp = 0xFB32, .status = .mapped, .mapping = &.{0x05D2,0x05BC}, .status2 = .none, },
4047 .{ .cp = 0xFB33, .status = .mapped, .mapping = &.{0x05D3,0x05BC}, .status2 = .none, },
4048 .{ .cp = 0xFB34, .status = .mapped, .mapping = &.{0x05D4,0x05BC}, .status2 = .none, },
4049 .{ .cp = 0xFB35, .status = .mapped, .mapping = &.{0x05D5,0x05BC}, .status2 = .none, },
4050 .{ .cp = 0xFB36, .status = .mapped, .mapping = &.{0x05D6,0x05BC}, .status2 = .none, },
4051 .{ .cp = 0xFB37, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
4052 .{ .cp = 0xFB38, .status = .mapped, .mapping = &.{0x05D8,0x05BC}, .status2 = .none, },
4053 .{ .cp = 0xFB39, .status = .mapped, .mapping = &.{0x05D9,0x05BC}, .status2 = .none, },
4054 .{ .cp = 0xFB3A, .status = .mapped, .mapping = &.{0x05DA,0x05BC}, .status2 = .none, },
4055 .{ .cp = 0xFB3B, .status = .mapped, .mapping = &.{0x05DB,0x05BC}, .status2 = .none, },
4056 .{ .cp = 0xFB3C, .status = .mapped, .mapping = &.{0x05DC,0x05BC}, .status2 = .none, },
4057 .{ .cp = 0xFB3D, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
4058 .{ .cp = 0xFB3E, .status = .mapped, .mapping = &.{0x05DE,0x05BC}, .status2 = .none, },
4059 .{ .cp = 0xFB3F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
4060 .{ .cp = 0xFB40, .status = .mapped, .mapping = &.{0x05E0,0x05BC}, .status2 = .none, },
4061 .{ .cp = 0xFB41, .status = .mapped, .mapping = &.{0x05E1,0x05BC}, .status2 = .none, },
4062 .{ .cp = 0xFB42, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
4063 .{ .cp = 0xFB43, .status = .mapped, .mapping = &.{0x05E3,0x05BC}, .status2 = .none, },
4064 .{ .cp = 0xFB44, .status = .mapped, .mapping = &.{0x05E4,0x05BC}, .status2 = .none, },
4065 .{ .cp = 0xFB45, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
4066 .{ .cp = 0xFB46, .status = .mapped, .mapping = &.{0x05E6,0x05BC}, .status2 = .none, },
4067 .{ .cp = 0xFB47, .status = .mapped, .mapping = &.{0x05E7,0x05BC}, .status2 = .none, },
4068 .{ .cp = 0xFB48, .status = .mapped, .mapping = &.{0x05E8,0x05BC}, .status2 = .none, },
4069 .{ .cp = 0xFB49, .status = .mapped, .mapping = &.{0x05E9,0x05BC}, .status2 = .none, },
4070 .{ .cp = 0xFB4A, .status = .mapped, .mapping = &.{0x05EA,0x05BC}, .status2 = .none, },
4071 .{ .cp = 0xFB4B, .status = .mapped, .mapping = &.{0x05D5,0x05B9}, .status2 = .none, },
4072 .{ .cp = 0xFB4C, .status = .mapped, .mapping = &.{0x05D1,0x05BF}, .status2 = .none, },
4073 .{ .cp = 0xFB4D, .status = .mapped, .mapping = &.{0x05DB,0x05BF}, .status2 = .none, },
4074 .{ .cp = 0xFB4E, .status = .mapped, .mapping = &.{0x05E4,0x05BF}, .status2 = .none, },
4075 .{ .cp = 0xFB4F, .status = .mapped, .mapping = &.{0x05D0,0x05DC}, .status2 = .none, },
4076 .{ .cp = 0xFBC2, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
4077 .{ .cp = 0xFBDD, .status = .mapped, .mapping = &.{0x06C7,0x0674}, .status2 = .none, },
4078 .{ .cp = 0xFC00, .status = .mapped, .mapping = &.{0x0626,0x062C}, .status2 = .none, },
4079 .{ .cp = 0xFC01, .status = .mapped, .mapping = &.{0x0626,0x062D}, .status2 = .none, },
4080 .{ .cp = 0xFC02, .status = .mapped, .mapping = &.{0x0626,0x0645}, .status2 = .none, },
4081 .{ .cp = 0xFC03, .status = .mapped, .mapping = &.{0x0626,0x0649}, .status2 = .none, },
4082 .{ .cp = 0xFC04, .status = .mapped, .mapping = &.{0x0626,0x064A}, .status2 = .none, },
4083 .{ .cp = 0xFC05, .status = .mapped, .mapping = &.{0x0628,0x062C}, .status2 = .none, },
4084 .{ .cp = 0xFC06, .status = .mapped, .mapping = &.{0x0628,0x062D}, .status2 = .none, },
4085 .{ .cp = 0xFC07, .status = .mapped, .mapping = &.{0x0628,0x062E}, .status2 = .none, },
4086 .{ .cp = 0xFC08, .status = .mapped, .mapping = &.{0x0628,0x0645}, .status2 = .none, },
4087 .{ .cp = 0xFC09, .status = .mapped, .mapping = &.{0x0628,0x0649}, .status2 = .none, },
4088 .{ .cp = 0xFC0A, .status = .mapped, .mapping = &.{0x0628,0x064A}, .status2 = .none, },
4089 .{ .cp = 0xFC0B, .status = .mapped, .mapping = &.{0x062A,0x062C}, .status2 = .none, },
4090 .{ .cp = 0xFC0C, .status = .mapped, .mapping = &.{0x062A,0x062D}, .status2 = .none, },
4091 .{ .cp = 0xFC0D, .status = .mapped, .mapping = &.{0x062A,0x062E}, .status2 = .none, },
4092 .{ .cp = 0xFC0E, .status = .mapped, .mapping = &.{0x062A,0x0645}, .status2 = .none, },
4093 .{ .cp = 0xFC0F, .status = .mapped, .mapping = &.{0x062A,0x0649}, .status2 = .none, },
4094 .{ .cp = 0xFC10, .status = .mapped, .mapping = &.{0x062A,0x064A}, .status2 = .none, },
4095 .{ .cp = 0xFC11, .status = .mapped, .mapping = &.{0x062B,0x062C}, .status2 = .none, },
4096 .{ .cp = 0xFC12, .status = .mapped, .mapping = &.{0x062B,0x0645}, .status2 = .none, },
4097 .{ .cp = 0xFC13, .status = .mapped, .mapping = &.{0x062B,0x0649}, .status2 = .none, },
4098 .{ .cp = 0xFC14, .status = .mapped, .mapping = &.{0x062B,0x064A}, .status2 = .none, },
4099 .{ .cp = 0xFC15, .status = .mapped, .mapping = &.{0x062C,0x062D}, .status2 = .none, },
4100 .{ .cp = 0xFC16, .status = .mapped, .mapping = &.{0x062C,0x0645}, .status2 = .none, },
4101 .{ .cp = 0xFC17, .status = .mapped, .mapping = &.{0x062D,0x062C}, .status2 = .none, },
4102 .{ .cp = 0xFC18, .status = .mapped, .mapping = &.{0x062D,0x0645}, .status2 = .none, },
4103 .{ .cp = 0xFC19, .status = .mapped, .mapping = &.{0x062E,0x062C}, .status2 = .none, },
4104 .{ .cp = 0xFC1A, .status = .mapped, .mapping = &.{0x062E,0x062D}, .status2 = .none, },
4105 .{ .cp = 0xFC1B, .status = .mapped, .mapping = &.{0x062E,0x0645}, .status2 = .none, },
4106 .{ .cp = 0xFC1C, .status = .mapped, .mapping = &.{0x0633,0x062C}, .status2 = .none, },
4107 .{ .cp = 0xFC1D, .status = .mapped, .mapping = &.{0x0633,0x062D}, .status2 = .none, },
4108 .{ .cp = 0xFC1E, .status = .mapped, .mapping = &.{0x0633,0x062E}, .status2 = .none, },
4109 .{ .cp = 0xFC1F, .status = .mapped, .mapping = &.{0x0633,0x0645}, .status2 = .none, },
4110 .{ .cp = 0xFC20, .status = .mapped, .mapping = &.{0x0635,0x062D}, .status2 = .none, },
4111 .{ .cp = 0xFC21, .status = .mapped, .mapping = &.{0x0635,0x0645}, .status2 = .none, },
4112 .{ .cp = 0xFC22, .status = .mapped, .mapping = &.{0x0636,0x062C}, .status2 = .none, },
4113 .{ .cp = 0xFC23, .status = .mapped, .mapping = &.{0x0636,0x062D}, .status2 = .none, },
4114 .{ .cp = 0xFC24, .status = .mapped, .mapping = &.{0x0636,0x062E}, .status2 = .none, },
4115 .{ .cp = 0xFC25, .status = .mapped, .mapping = &.{0x0636,0x0645}, .status2 = .none, },
4116 .{ .cp = 0xFC26, .status = .mapped, .mapping = &.{0x0637,0x062D}, .status2 = .none, },
4117 .{ .cp = 0xFC27, .status = .mapped, .mapping = &.{0x0637,0x0645}, .status2 = .none, },
4118 .{ .cp = 0xFC28, .status = .mapped, .mapping = &.{0x0638,0x0645}, .status2 = .none, },
4119 .{ .cp = 0xFC29, .status = .mapped, .mapping = &.{0x0639,0x062C}, .status2 = .none, },
4120 .{ .cp = 0xFC2A, .status = .mapped, .mapping = &.{0x0639,0x0645}, .status2 = .none, },
4121 .{ .cp = 0xFC2B, .status = .mapped, .mapping = &.{0x063A,0x062C}, .status2 = .none, },
4122 .{ .cp = 0xFC2C, .status = .mapped, .mapping = &.{0x063A,0x0645}, .status2 = .none, },
4123 .{ .cp = 0xFC2D, .status = .mapped, .mapping = &.{0x0641,0x062C}, .status2 = .none, },
4124 .{ .cp = 0xFC2E, .status = .mapped, .mapping = &.{0x0641,0x062D}, .status2 = .none, },
4125 .{ .cp = 0xFC2F, .status = .mapped, .mapping = &.{0x0641,0x062E}, .status2 = .none, },
4126 .{ .cp = 0xFC30, .status = .mapped, .mapping = &.{0x0641,0x0645}, .status2 = .none, },
4127 .{ .cp = 0xFC31, .status = .mapped, .mapping = &.{0x0641,0x0649}, .status2 = .none, },
4128 .{ .cp = 0xFC32, .status = .mapped, .mapping = &.{0x0641,0x064A}, .status2 = .none, },
4129 .{ .cp = 0xFC33, .status = .mapped, .mapping = &.{0x0642,0x062D}, .status2 = .none, },
4130 .{ .cp = 0xFC34, .status = .mapped, .mapping = &.{0x0642,0x0645}, .status2 = .none, },
4131 .{ .cp = 0xFC35, .status = .mapped, .mapping = &.{0x0642,0x0649}, .status2 = .none, },
4132 .{ .cp = 0xFC36, .status = .mapped, .mapping = &.{0x0642,0x064A}, .status2 = .none, },
4133 .{ .cp = 0xFC37, .status = .mapped, .mapping = &.{0x0643,0x0627}, .status2 = .none, },
4134 .{ .cp = 0xFC38, .status = .mapped, .mapping = &.{0x0643,0x062C}, .status2 = .none, },
4135 .{ .cp = 0xFC39, .status = .mapped, .mapping = &.{0x0643,0x062D}, .status2 = .none, },
4136 .{ .cp = 0xFC3A, .status = .mapped, .mapping = &.{0x0643,0x062E}, .status2 = .none, },
4137 .{ .cp = 0xFC3B, .status = .mapped, .mapping = &.{0x0643,0x0644}, .status2 = .none, },
4138 .{ .cp = 0xFC3C, .status = .mapped, .mapping = &.{0x0643,0x0645}, .status2 = .none, },
4139 .{ .cp = 0xFC3D, .status = .mapped, .mapping = &.{0x0643,0x0649}, .status2 = .none, },
4140 .{ .cp = 0xFC3E, .status = .mapped, .mapping = &.{0x0643,0x064A}, .status2 = .none, },
4141 .{ .cp = 0xFC3F, .status = .mapped, .mapping = &.{0x0644,0x062C}, .status2 = .none, },
4142 .{ .cp = 0xFC40, .status = .mapped, .mapping = &.{0x0644,0x062D}, .status2 = .none, },
4143 .{ .cp = 0xFC41, .status = .mapped, .mapping = &.{0x0644,0x062E}, .status2 = .none, },
4144 .{ .cp = 0xFC42, .status = .mapped, .mapping = &.{0x0644,0x0645}, .status2 = .none, },
4145 .{ .cp = 0xFC43, .status = .mapped, .mapping = &.{0x0644,0x0649}, .status2 = .none, },
4146 .{ .cp = 0xFC44, .status = .mapped, .mapping = &.{0x0644,0x064A}, .status2 = .none, },
4147 .{ .cp = 0xFC45, .status = .mapped, .mapping = &.{0x0645,0x062C}, .status2 = .none, },
4148 .{ .cp = 0xFC46, .status = .mapped, .mapping = &.{0x0645,0x062D}, .status2 = .none, },
4149 .{ .cp = 0xFC47, .status = .mapped, .mapping = &.{0x0645,0x062E}, .status2 = .none, },
4150 .{ .cp = 0xFC48, .status = .mapped, .mapping = &.{0x0645,0x0645}, .status2 = .none, },
4151 .{ .cp = 0xFC49, .status = .mapped, .mapping = &.{0x0645,0x0649}, .status2 = .none, },
4152 .{ .cp = 0xFC4A, .status = .mapped, .mapping = &.{0x0645,0x064A}, .status2 = .none, },
4153 .{ .cp = 0xFC4B, .status = .mapped, .mapping = &.{0x0646,0x062C}, .status2 = .none, },
4154 .{ .cp = 0xFC4C, .status = .mapped, .mapping = &.{0x0646,0x062D}, .status2 = .none, },
4155 .{ .cp = 0xFC4D, .status = .mapped, .mapping = &.{0x0646,0x062E}, .status2 = .none, },
4156 .{ .cp = 0xFC4E, .status = .mapped, .mapping = &.{0x0646,0x0645}, .status2 = .none, },
4157 .{ .cp = 0xFC4F, .status = .mapped, .mapping = &.{0x0646,0x0649}, .status2 = .none, },
4158 .{ .cp = 0xFC50, .status = .mapped, .mapping = &.{0x0646,0x064A}, .status2 = .none, },
4159 .{ .cp = 0xFC51, .status = .mapped, .mapping = &.{0x0647,0x062C}, .status2 = .none, },
4160 .{ .cp = 0xFC52, .status = .mapped, .mapping = &.{0x0647,0x0645}, .status2 = .none, },
4161 .{ .cp = 0xFC53, .status = .mapped, .mapping = &.{0x0647,0x0649}, .status2 = .none, },
4162 .{ .cp = 0xFC54, .status = .mapped, .mapping = &.{0x0647,0x064A}, .status2 = .none, },
4163 .{ .cp = 0xFC55, .status = .mapped, .mapping = &.{0x064A,0x062C}, .status2 = .none, },
4164 .{ .cp = 0xFC56, .status = .mapped, .mapping = &.{0x064A,0x062D}, .status2 = .none, },
4165 .{ .cp = 0xFC57, .status = .mapped, .mapping = &.{0x064A,0x062E}, .status2 = .none, },
4166 .{ .cp = 0xFC58, .status = .mapped, .mapping = &.{0x064A,0x0645}, .status2 = .none, },
4167 .{ .cp = 0xFC59, .status = .mapped, .mapping = &.{0x064A,0x0649}, .status2 = .none, },
4168 .{ .cp = 0xFC5A, .status = .mapped, .mapping = &.{0x064A,0x064A}, .status2 = .none, },
4169 .{ .cp = 0xFC5B, .status = .mapped, .mapping = &.{0x0630,0x0670}, .status2 = .none, },
4170 .{ .cp = 0xFC5C, .status = .mapped, .mapping = &.{0x0631,0x0670}, .status2 = .none, },
4171 .{ .cp = 0xFC5D, .status = .mapped, .mapping = &.{0x0649,0x0670}, .status2 = .none, },
4172 .{ .cp = 0xFC5E, .status = .mapped, .mapping = &.{0x0020,0x064C,0x0651}, .status2 = .none, },
4173 .{ .cp = 0xFC5F, .status = .mapped, .mapping = &.{0x0020,0x064D,0x0651}, .status2 = .none, },
4174 .{ .cp = 0xFC60, .status = .mapped, .mapping = &.{0x0020,0x064E,0x0651}, .status2 = .none, },
4175 .{ .cp = 0xFC61, .status = .mapped, .mapping = &.{0x0020,0x064F,0x0651}, .status2 = .none, },
4176 .{ .cp = 0xFC62, .status = .mapped, .mapping = &.{0x0020,0x0650,0x0651}, .status2 = .none, },
4177 .{ .cp = 0xFC63, .status = .mapped, .mapping = &.{0x0020,0x0651,0x0670}, .status2 = .none, },
4178 .{ .cp = 0xFC64, .status = .mapped, .mapping = &.{0x0626,0x0631}, .status2 = .none, },
4179 .{ .cp = 0xFC65, .status = .mapped, .mapping = &.{0x0626,0x0632}, .status2 = .none, },
4180 .{ .cp = 0xFC66, .status = .mapped, .mapping = &.{0x0626,0x0645}, .status2 = .none, },
4181 .{ .cp = 0xFC67, .status = .mapped, .mapping = &.{0x0626,0x0646}, .status2 = .none, },
4182 .{ .cp = 0xFC68, .status = .mapped, .mapping = &.{0x0626,0x0649}, .status2 = .none, },
4183 .{ .cp = 0xFC69, .status = .mapped, .mapping = &.{0x0626,0x064A}, .status2 = .none, },
4184 .{ .cp = 0xFC6A, .status = .mapped, .mapping = &.{0x0628,0x0631}, .status2 = .none, },
4185 .{ .cp = 0xFC6B, .status = .mapped, .mapping = &.{0x0628,0x0632}, .status2 = .none, },
4186 .{ .cp = 0xFC6C, .status = .mapped, .mapping = &.{0x0628,0x0645}, .status2 = .none, },
4187 .{ .cp = 0xFC6D, .status = .mapped, .mapping = &.{0x0628,0x0646}, .status2 = .none, },
4188 .{ .cp = 0xFC6E, .status = .mapped, .mapping = &.{0x0628,0x0649}, .status2 = .none, },
4189 .{ .cp = 0xFC6F, .status = .mapped, .mapping = &.{0x0628,0x064A}, .status2 = .none, },
4190 .{ .cp = 0xFC70, .status = .mapped, .mapping = &.{0x062A,0x0631}, .status2 = .none, },
4191 .{ .cp = 0xFC71, .status = .mapped, .mapping = &.{0x062A,0x0632}, .status2 = .none, },
4192 .{ .cp = 0xFC72, .status = .mapped, .mapping = &.{0x062A,0x0645}, .status2 = .none, },
4193 .{ .cp = 0xFC73, .status = .mapped, .mapping = &.{0x062A,0x0646}, .status2 = .none, },
4194 .{ .cp = 0xFC74, .status = .mapped, .mapping = &.{0x062A,0x0649}, .status2 = .none, },
4195 .{ .cp = 0xFC75, .status = .mapped, .mapping = &.{0x062A,0x064A}, .status2 = .none, },
4196 .{ .cp = 0xFC76, .status = .mapped, .mapping = &.{0x062B,0x0631}, .status2 = .none, },
4197 .{ .cp = 0xFC77, .status = .mapped, .mapping = &.{0x062B,0x0632}, .status2 = .none, },
4198 .{ .cp = 0xFC78, .status = .mapped, .mapping = &.{0x062B,0x0645}, .status2 = .none, },
4199 .{ .cp = 0xFC79, .status = .mapped, .mapping = &.{0x062B,0x0646}, .status2 = .none, },
4200 .{ .cp = 0xFC7A, .status = .mapped, .mapping = &.{0x062B,0x0649}, .status2 = .none, },
4201 .{ .cp = 0xFC7B, .status = .mapped, .mapping = &.{0x062B,0x064A}, .status2 = .none, },
4202 .{ .cp = 0xFC7C, .status = .mapped, .mapping = &.{0x0641,0x0649}, .status2 = .none, },
4203 .{ .cp = 0xFC7D, .status = .mapped, .mapping = &.{0x0641,0x064A}, .status2 = .none, },
4204 .{ .cp = 0xFC7E, .status = .mapped, .mapping = &.{0x0642,0x0649}, .status2 = .none, },
4205 .{ .cp = 0xFC7F, .status = .mapped, .mapping = &.{0x0642,0x064A}, .status2 = .none, },
4206 .{ .cp = 0xFC80, .status = .mapped, .mapping = &.{0x0643,0x0627}, .status2 = .none, },
4207 .{ .cp = 0xFC81, .status = .mapped, .mapping = &.{0x0643,0x0644}, .status2 = .none, },
4208 .{ .cp = 0xFC82, .status = .mapped, .mapping = &.{0x0643,0x0645}, .status2 = .none, },
4209 .{ .cp = 0xFC83, .status = .mapped, .mapping = &.{0x0643,0x0649}, .status2 = .none, },
4210 .{ .cp = 0xFC84, .status = .mapped, .mapping = &.{0x0643,0x064A}, .status2 = .none, },
4211 .{ .cp = 0xFC85, .status = .mapped, .mapping = &.{0x0644,0x0645}, .status2 = .none, },
4212 .{ .cp = 0xFC86, .status = .mapped, .mapping = &.{0x0644,0x0649}, .status2 = .none, },
4213 .{ .cp = 0xFC87, .status = .mapped, .mapping = &.{0x0644,0x064A}, .status2 = .none, },
4214 .{ .cp = 0xFC88, .status = .mapped, .mapping = &.{0x0645,0x0627}, .status2 = .none, },
4215 .{ .cp = 0xFC89, .status = .mapped, .mapping = &.{0x0645,0x0645}, .status2 = .none, },
4216 .{ .cp = 0xFC8A, .status = .mapped, .mapping = &.{0x0646,0x0631}, .status2 = .none, },
4217 .{ .cp = 0xFC8B, .status = .mapped, .mapping = &.{0x0646,0x0632}, .status2 = .none, },
4218 .{ .cp = 0xFC8C, .status = .mapped, .mapping = &.{0x0646,0x0645}, .status2 = .none, },
4219 .{ .cp = 0xFC8D, .status = .mapped, .mapping = &.{0x0646,0x0646}, .status2 = .none, },
4220 .{ .cp = 0xFC8E, .status = .mapped, .mapping = &.{0x0646,0x0649}, .status2 = .none, },
4221 .{ .cp = 0xFC8F, .status = .mapped, .mapping = &.{0x0646,0x064A}, .status2 = .none, },
4222 .{ .cp = 0xFC90, .status = .mapped, .mapping = &.{0x0649,0x0670}, .status2 = .none, },
4223 .{ .cp = 0xFC91, .status = .mapped, .mapping = &.{0x064A,0x0631}, .status2 = .none, },
4224 .{ .cp = 0xFC92, .status = .mapped, .mapping = &.{0x064A,0x0632}, .status2 = .none, },
4225 .{ .cp = 0xFC93, .status = .mapped, .mapping = &.{0x064A,0x0645}, .status2 = .none, },
4226 .{ .cp = 0xFC94, .status = .mapped, .mapping = &.{0x064A,0x0646}, .status2 = .none, },
4227 .{ .cp = 0xFC95, .status = .mapped, .mapping = &.{0x064A,0x0649}, .status2 = .none, },
4228 .{ .cp = 0xFC96, .status = .mapped, .mapping = &.{0x064A,0x064A}, .status2 = .none, },
4229 .{ .cp = 0xFC97, .status = .mapped, .mapping = &.{0x0626,0x062C}, .status2 = .none, },
4230 .{ .cp = 0xFC98, .status = .mapped, .mapping = &.{0x0626,0x062D}, .status2 = .none, },
4231 .{ .cp = 0xFC99, .status = .mapped, .mapping = &.{0x0626,0x062E}, .status2 = .none, },
4232 .{ .cp = 0xFC9A, .status = .mapped, .mapping = &.{0x0626,0x0645}, .status2 = .none, },
4233 .{ .cp = 0xFC9B, .status = .mapped, .mapping = &.{0x0626,0x0647}, .status2 = .none, },
4234 .{ .cp = 0xFC9C, .status = .mapped, .mapping = &.{0x0628,0x062C}, .status2 = .none, },
4235 .{ .cp = 0xFC9D, .status = .mapped, .mapping = &.{0x0628,0x062D}, .status2 = .none, },
4236 .{ .cp = 0xFC9E, .status = .mapped, .mapping = &.{0x0628,0x062E}, .status2 = .none, },
4237 .{ .cp = 0xFC9F, .status = .mapped, .mapping = &.{0x0628,0x0645}, .status2 = .none, },
4238 .{ .cp = 0xFCA0, .status = .mapped, .mapping = &.{0x0628,0x0647}, .status2 = .none, },
4239 .{ .cp = 0xFCA1, .status = .mapped, .mapping = &.{0x062A,0x062C}, .status2 = .none, },
4240 .{ .cp = 0xFCA2, .status = .mapped, .mapping = &.{0x062A,0x062D}, .status2 = .none, },
4241 .{ .cp = 0xFCA3, .status = .mapped, .mapping = &.{0x062A,0x062E}, .status2 = .none, },
4242 .{ .cp = 0xFCA4, .status = .mapped, .mapping = &.{0x062A,0x0645}, .status2 = .none, },
4243 .{ .cp = 0xFCA5, .status = .mapped, .mapping = &.{0x062A,0x0647}, .status2 = .none, },
4244 .{ .cp = 0xFCA6, .status = .mapped, .mapping = &.{0x062B,0x0645}, .status2 = .none, },
4245 .{ .cp = 0xFCA7, .status = .mapped, .mapping = &.{0x062C,0x062D}, .status2 = .none, },
4246 .{ .cp = 0xFCA8, .status = .mapped, .mapping = &.{0x062C,0x0645}, .status2 = .none, },
4247 .{ .cp = 0xFCA9, .status = .mapped, .mapping = &.{0x062D,0x062C}, .status2 = .none, },
4248 .{ .cp = 0xFCAA, .status = .mapped, .mapping = &.{0x062D,0x0645}, .status2 = .none, },
4249 .{ .cp = 0xFCAB, .status = .mapped, .mapping = &.{0x062E,0x062C}, .status2 = .none, },
4250 .{ .cp = 0xFCAC, .status = .mapped, .mapping = &.{0x062E,0x0645}, .status2 = .none, },
4251 .{ .cp = 0xFCAD, .status = .mapped, .mapping = &.{0x0633,0x062C}, .status2 = .none, },
4252 .{ .cp = 0xFCAE, .status = .mapped, .mapping = &.{0x0633,0x062D}, .status2 = .none, },
4253 .{ .cp = 0xFCAF, .status = .mapped, .mapping = &.{0x0633,0x062E}, .status2 = .none, },
4254 .{ .cp = 0xFCB0, .status = .mapped, .mapping = &.{0x0633,0x0645}, .status2 = .none, },
4255 .{ .cp = 0xFCB1, .status = .mapped, .mapping = &.{0x0635,0x062D}, .status2 = .none, },
4256 .{ .cp = 0xFCB2, .status = .mapped, .mapping = &.{0x0635,0x062E}, .status2 = .none, },
4257 .{ .cp = 0xFCB3, .status = .mapped, .mapping = &.{0x0635,0x0645}, .status2 = .none, },
4258 .{ .cp = 0xFCB4, .status = .mapped, .mapping = &.{0x0636,0x062C}, .status2 = .none, },
4259 .{ .cp = 0xFCB5, .status = .mapped, .mapping = &.{0x0636,0x062D}, .status2 = .none, },
4260 .{ .cp = 0xFCB6, .status = .mapped, .mapping = &.{0x0636,0x062E}, .status2 = .none, },
4261 .{ .cp = 0xFCB7, .status = .mapped, .mapping = &.{0x0636,0x0645}, .status2 = .none, },
4262 .{ .cp = 0xFCB8, .status = .mapped, .mapping = &.{0x0637,0x062D}, .status2 = .none, },
4263 .{ .cp = 0xFCB9, .status = .mapped, .mapping = &.{0x0638,0x0645}, .status2 = .none, },
4264 .{ .cp = 0xFCBA, .status = .mapped, .mapping = &.{0x0639,0x062C}, .status2 = .none, },
4265 .{ .cp = 0xFCBB, .status = .mapped, .mapping = &.{0x0639,0x0645}, .status2 = .none, },
4266 .{ .cp = 0xFCBC, .status = .mapped, .mapping = &.{0x063A,0x062C}, .status2 = .none, },
4267 .{ .cp = 0xFCBD, .status = .mapped, .mapping = &.{0x063A,0x0645}, .status2 = .none, },
4268 .{ .cp = 0xFCBE, .status = .mapped, .mapping = &.{0x0641,0x062C}, .status2 = .none, },
4269 .{ .cp = 0xFCBF, .status = .mapped, .mapping = &.{0x0641,0x062D}, .status2 = .none, },
4270 .{ .cp = 0xFCC0, .status = .mapped, .mapping = &.{0x0641,0x062E}, .status2 = .none, },
4271 .{ .cp = 0xFCC1, .status = .mapped, .mapping = &.{0x0641,0x0645}, .status2 = .none, },
4272 .{ .cp = 0xFCC2, .status = .mapped, .mapping = &.{0x0642,0x062D}, .status2 = .none, },
4273 .{ .cp = 0xFCC3, .status = .mapped, .mapping = &.{0x0642,0x0645}, .status2 = .none, },
4274 .{ .cp = 0xFCC4, .status = .mapped, .mapping = &.{0x0643,0x062C}, .status2 = .none, },
4275 .{ .cp = 0xFCC5, .status = .mapped, .mapping = &.{0x0643,0x062D}, .status2 = .none, },
4276 .{ .cp = 0xFCC6, .status = .mapped, .mapping = &.{0x0643,0x062E}, .status2 = .none, },
4277 .{ .cp = 0xFCC7, .status = .mapped, .mapping = &.{0x0643,0x0644}, .status2 = .none, },
4278 .{ .cp = 0xFCC8, .status = .mapped, .mapping = &.{0x0643,0x0645}, .status2 = .none, },
4279 .{ .cp = 0xFCC9, .status = .mapped, .mapping = &.{0x0644,0x062C}, .status2 = .none, },
4280 .{ .cp = 0xFCCA, .status = .mapped, .mapping = &.{0x0644,0x062D}, .status2 = .none, },
4281 .{ .cp = 0xFCCB, .status = .mapped, .mapping = &.{0x0644,0x062E}, .status2 = .none, },
4282 .{ .cp = 0xFCCC, .status = .mapped, .mapping = &.{0x0644,0x0645}, .status2 = .none, },
4283 .{ .cp = 0xFCCD, .status = .mapped, .mapping = &.{0x0644,0x0647}, .status2 = .none, },
4284 .{ .cp = 0xFCCE, .status = .mapped, .mapping = &.{0x0645,0x062C}, .status2 = .none, },
4285 .{ .cp = 0xFCCF, .status = .mapped, .mapping = &.{0x0645,0x062D}, .status2 = .none, },
4286 .{ .cp = 0xFCD0, .status = .mapped, .mapping = &.{0x0645,0x062E}, .status2 = .none, },
4287 .{ .cp = 0xFCD1, .status = .mapped, .mapping = &.{0x0645,0x0645}, .status2 = .none, },
4288 .{ .cp = 0xFCD2, .status = .mapped, .mapping = &.{0x0646,0x062C}, .status2 = .none, },
4289 .{ .cp = 0xFCD3, .status = .mapped, .mapping = &.{0x0646,0x062D}, .status2 = .none, },
4290 .{ .cp = 0xFCD4, .status = .mapped, .mapping = &.{0x0646,0x062E}, .status2 = .none, },
4291 .{ .cp = 0xFCD5, .status = .mapped, .mapping = &.{0x0646,0x0645}, .status2 = .none, },
4292 .{ .cp = 0xFCD6, .status = .mapped, .mapping = &.{0x0646,0x0647}, .status2 = .none, },
4293 .{ .cp = 0xFCD7, .status = .mapped, .mapping = &.{0x0647,0x062C}, .status2 = .none, },
4294 .{ .cp = 0xFCD8, .status = .mapped, .mapping = &.{0x0647,0x0645}, .status2 = .none, },
4295 .{ .cp = 0xFCD9, .status = .mapped, .mapping = &.{0x0647,0x0670}, .status2 = .none, },
4296 .{ .cp = 0xFCDA, .status = .mapped, .mapping = &.{0x064A,0x062C}, .status2 = .none, },
4297 .{ .cp = 0xFCDB, .status = .mapped, .mapping = &.{0x064A,0x062D}, .status2 = .none, },
4298 .{ .cp = 0xFCDC, .status = .mapped, .mapping = &.{0x064A,0x062E}, .status2 = .none, },
4299 .{ .cp = 0xFCDD, .status = .mapped, .mapping = &.{0x064A,0x0645}, .status2 = .none, },
4300 .{ .cp = 0xFCDE, .status = .mapped, .mapping = &.{0x064A,0x0647}, .status2 = .none, },
4301 .{ .cp = 0xFCDF, .status = .mapped, .mapping = &.{0x0626,0x0645}, .status2 = .none, },
4302 .{ .cp = 0xFCE0, .status = .mapped, .mapping = &.{0x0626,0x0647}, .status2 = .none, },
4303 .{ .cp = 0xFCE1, .status = .mapped, .mapping = &.{0x0628,0x0645}, .status2 = .none, },
4304 .{ .cp = 0xFCE2, .status = .mapped, .mapping = &.{0x0628,0x0647}, .status2 = .none, },
4305 .{ .cp = 0xFCE3, .status = .mapped, .mapping = &.{0x062A,0x0645}, .status2 = .none, },
4306 .{ .cp = 0xFCE4, .status = .mapped, .mapping = &.{0x062A,0x0647}, .status2 = .none, },
4307 .{ .cp = 0xFCE5, .status = .mapped, .mapping = &.{0x062B,0x0645}, .status2 = .none, },
4308 .{ .cp = 0xFCE6, .status = .mapped, .mapping = &.{0x062B,0x0647}, .status2 = .none, },
4309 .{ .cp = 0xFCE7, .status = .mapped, .mapping = &.{0x0633,0x0645}, .status2 = .none, },
4310 .{ .cp = 0xFCE8, .status = .mapped, .mapping = &.{0x0633,0x0647}, .status2 = .none, },
4311 .{ .cp = 0xFCE9, .status = .mapped, .mapping = &.{0x0634,0x0645}, .status2 = .none, },
4312 .{ .cp = 0xFCEA, .status = .mapped, .mapping = &.{0x0634,0x0647}, .status2 = .none, },
4313 .{ .cp = 0xFCEB, .status = .mapped, .mapping = &.{0x0643,0x0644}, .status2 = .none, },
4314 .{ .cp = 0xFCEC, .status = .mapped, .mapping = &.{0x0643,0x0645}, .status2 = .none, },
4315 .{ .cp = 0xFCED, .status = .mapped, .mapping = &.{0x0644,0x0645}, .status2 = .none, },
4316 .{ .cp = 0xFCEE, .status = .mapped, .mapping = &.{0x0646,0x0645}, .status2 = .none, },
4317 .{ .cp = 0xFCEF, .status = .mapped, .mapping = &.{0x0646,0x0647}, .status2 = .none, },
4318 .{ .cp = 0xFCF0, .status = .mapped, .mapping = &.{0x064A,0x0645}, .status2 = .none, },
4319 .{ .cp = 0xFCF1, .status = .mapped, .mapping = &.{0x064A,0x0647}, .status2 = .none, },
4320 .{ .cp = 0xFCF2, .status = .mapped, .mapping = &.{0x0640,0x064E,0x0651}, .status2 = .none, },
4321 .{ .cp = 0xFCF3, .status = .mapped, .mapping = &.{0x0640,0x064F,0x0651}, .status2 = .none, },
4322 .{ .cp = 0xFCF4, .status = .mapped, .mapping = &.{0x0640,0x0650,0x0651}, .status2 = .none, },
4323 .{ .cp = 0xFCF5, .status = .mapped, .mapping = &.{0x0637,0x0649}, .status2 = .none, },
4324 .{ .cp = 0xFCF6, .status = .mapped, .mapping = &.{0x0637,0x064A}, .status2 = .none, },
4325 .{ .cp = 0xFCF7, .status = .mapped, .mapping = &.{0x0639,0x0649}, .status2 = .none, },
4326 .{ .cp = 0xFCF8, .status = .mapped, .mapping = &.{0x0639,0x064A}, .status2 = .none, },
4327 .{ .cp = 0xFCF9, .status = .mapped, .mapping = &.{0x063A,0x0649}, .status2 = .none, },
4328 .{ .cp = 0xFCFA, .status = .mapped, .mapping = &.{0x063A,0x064A}, .status2 = .none, },
4329 .{ .cp = 0xFCFB, .status = .mapped, .mapping = &.{0x0633,0x0649}, .status2 = .none, },
4330 .{ .cp = 0xFCFC, .status = .mapped, .mapping = &.{0x0633,0x064A}, .status2 = .none, },
4331 .{ .cp = 0xFCFD, .status = .mapped, .mapping = &.{0x0634,0x0649}, .status2 = .none, },
4332 .{ .cp = 0xFCFE, .status = .mapped, .mapping = &.{0x0634,0x064A}, .status2 = .none, },
4333 .{ .cp = 0xFCFF, .status = .mapped, .mapping = &.{0x062D,0x0649}, .status2 = .none, },
4334 .{ .cp = 0xFD00, .status = .mapped, .mapping = &.{0x062D,0x064A}, .status2 = .none, },
4335 .{ .cp = 0xFD01, .status = .mapped, .mapping = &.{0x062C,0x0649}, .status2 = .none, },
4336 .{ .cp = 0xFD02, .status = .mapped, .mapping = &.{0x062C,0x064A}, .status2 = .none, },
4337 .{ .cp = 0xFD03, .status = .mapped, .mapping = &.{0x062E,0x0649}, .status2 = .none, },
4338 .{ .cp = 0xFD04, .status = .mapped, .mapping = &.{0x062E,0x064A}, .status2 = .none, },
4339 .{ .cp = 0xFD05, .status = .mapped, .mapping = &.{0x0635,0x0649}, .status2 = .none, },
4340 .{ .cp = 0xFD06, .status = .mapped, .mapping = &.{0x0635,0x064A}, .status2 = .none, },
4341 .{ .cp = 0xFD07, .status = .mapped, .mapping = &.{0x0636,0x0649}, .status2 = .none, },
4342 .{ .cp = 0xFD08, .status = .mapped, .mapping = &.{0x0636,0x064A}, .status2 = .none, },
4343 .{ .cp = 0xFD09, .status = .mapped, .mapping = &.{0x0634,0x062C}, .status2 = .none, },
4344 .{ .cp = 0xFD0A, .status = .mapped, .mapping = &.{0x0634,0x062D}, .status2 = .none, },
4345 .{ .cp = 0xFD0B, .status = .mapped, .mapping = &.{0x0634,0x062E}, .status2 = .none, },
4346 .{ .cp = 0xFD0C, .status = .mapped, .mapping = &.{0x0634,0x0645}, .status2 = .none, },
4347 .{ .cp = 0xFD0D, .status = .mapped, .mapping = &.{0x0634,0x0631}, .status2 = .none, },
4348 .{ .cp = 0xFD0E, .status = .mapped, .mapping = &.{0x0633,0x0631}, .status2 = .none, },
4349 .{ .cp = 0xFD0F, .status = .mapped, .mapping = &.{0x0635,0x0631}, .status2 = .none, },
4350 .{ .cp = 0xFD10, .status = .mapped, .mapping = &.{0x0636,0x0631}, .status2 = .none, },
4351 .{ .cp = 0xFD11, .status = .mapped, .mapping = &.{0x0637,0x0649}, .status2 = .none, },
4352 .{ .cp = 0xFD12, .status = .mapped, .mapping = &.{0x0637,0x064A}, .status2 = .none, },
4353 .{ .cp = 0xFD13, .status = .mapped, .mapping = &.{0x0639,0x0649}, .status2 = .none, },
4354 .{ .cp = 0xFD14, .status = .mapped, .mapping = &.{0x0639,0x064A}, .status2 = .none, },
4355 .{ .cp = 0xFD15, .status = .mapped, .mapping = &.{0x063A,0x0649}, .status2 = .none, },
4356 .{ .cp = 0xFD16, .status = .mapped, .mapping = &.{0x063A,0x064A}, .status2 = .none, },
4357 .{ .cp = 0xFD17, .status = .mapped, .mapping = &.{0x0633,0x0649}, .status2 = .none, },
4358 .{ .cp = 0xFD18, .status = .mapped, .mapping = &.{0x0633,0x064A}, .status2 = .none, },
4359 .{ .cp = 0xFD19, .status = .mapped, .mapping = &.{0x0634,0x0649}, .status2 = .none, },
4360 .{ .cp = 0xFD1A, .status = .mapped, .mapping = &.{0x0634,0x064A}, .status2 = .none, },
4361 .{ .cp = 0xFD1B, .status = .mapped, .mapping = &.{0x062D,0x0649}, .status2 = .none, },
4362 .{ .cp = 0xFD1C, .status = .mapped, .mapping = &.{0x062D,0x064A}, .status2 = .none, },
4363 .{ .cp = 0xFD1D, .status = .mapped, .mapping = &.{0x062C,0x0649}, .status2 = .none, },
4364 .{ .cp = 0xFD1E, .status = .mapped, .mapping = &.{0x062C,0x064A}, .status2 = .none, },
4365 .{ .cp = 0xFD1F, .status = .mapped, .mapping = &.{0x062E,0x0649}, .status2 = .none, },
4366 .{ .cp = 0xFD20, .status = .mapped, .mapping = &.{0x062E,0x064A}, .status2 = .none, },
4367 .{ .cp = 0xFD21, .status = .mapped, .mapping = &.{0x0635,0x0649}, .status2 = .none, },
4368 .{ .cp = 0xFD22, .status = .mapped, .mapping = &.{0x0635,0x064A}, .status2 = .none, },
4369 .{ .cp = 0xFD23, .status = .mapped, .mapping = &.{0x0636,0x0649}, .status2 = .none, },
4370 .{ .cp = 0xFD24, .status = .mapped, .mapping = &.{0x0636,0x064A}, .status2 = .none, },
4371 .{ .cp = 0xFD25, .status = .mapped, .mapping = &.{0x0634,0x062C}, .status2 = .none, },
4372 .{ .cp = 0xFD26, .status = .mapped, .mapping = &.{0x0634,0x062D}, .status2 = .none, },
4373 .{ .cp = 0xFD27, .status = .mapped, .mapping = &.{0x0634,0x062E}, .status2 = .none, },
4374 .{ .cp = 0xFD28, .status = .mapped, .mapping = &.{0x0634,0x0645}, .status2 = .none, },
4375 .{ .cp = 0xFD29, .status = .mapped, .mapping = &.{0x0634,0x0631}, .status2 = .none, },
4376 .{ .cp = 0xFD2A, .status = .mapped, .mapping = &.{0x0633,0x0631}, .status2 = .none, },
4377 .{ .cp = 0xFD2B, .status = .mapped, .mapping = &.{0x0635,0x0631}, .status2 = .none, },
4378 .{ .cp = 0xFD2C, .status = .mapped, .mapping = &.{0x0636,0x0631}, .status2 = .none, },
4379 .{ .cp = 0xFD2D, .status = .mapped, .mapping = &.{0x0634,0x062C}, .status2 = .none, },
4380 .{ .cp = 0xFD2E, .status = .mapped, .mapping = &.{0x0634,0x062D}, .status2 = .none, },
4381 .{ .cp = 0xFD2F, .status = .mapped, .mapping = &.{0x0634,0x062E}, .status2 = .none, },
4382 .{ .cp = 0xFD30, .status = .mapped, .mapping = &.{0x0634,0x0645}, .status2 = .none, },
4383 .{ .cp = 0xFD31, .status = .mapped, .mapping = &.{0x0633,0x0647}, .status2 = .none, },
4384 .{ .cp = 0xFD32, .status = .mapped, .mapping = &.{0x0634,0x0647}, .status2 = .none, },
4385 .{ .cp = 0xFD33, .status = .mapped, .mapping = &.{0x0637,0x0645}, .status2 = .none, },
4386 .{ .cp = 0xFD34, .status = .mapped, .mapping = &.{0x0633,0x062C}, .status2 = .none, },
4387 .{ .cp = 0xFD35, .status = .mapped, .mapping = &.{0x0633,0x062D}, .status2 = .none, },
4388 .{ .cp = 0xFD36, .status = .mapped, .mapping = &.{0x0633,0x062E}, .status2 = .none, },
4389 .{ .cp = 0xFD37, .status = .mapped, .mapping = &.{0x0634,0x062C}, .status2 = .none, },
4390 .{ .cp = 0xFD38, .status = .mapped, .mapping = &.{0x0634,0x062D}, .status2 = .none, },
4391 .{ .cp = 0xFD39, .status = .mapped, .mapping = &.{0x0634,0x062E}, .status2 = .none, },
4392 .{ .cp = 0xFD3A, .status = .mapped, .mapping = &.{0x0637,0x0645}, .status2 = .none, },
4393 .{ .cp = 0xFD3B, .status = .mapped, .mapping = &.{0x0638,0x0645}, .status2 = .none, },
4394 .{ .cp = 0xFD50, .status = .mapped, .mapping = &.{0x062A,0x062C,0x0645}, .status2 = .none, },
4395 .{ .cp = 0xFD53, .status = .mapped, .mapping = &.{0x062A,0x062D,0x0645}, .status2 = .none, },
4396 .{ .cp = 0xFD54, .status = .mapped, .mapping = &.{0x062A,0x062E,0x0645}, .status2 = .none, },
4397 .{ .cp = 0xFD55, .status = .mapped, .mapping = &.{0x062A,0x0645,0x062C}, .status2 = .none, },
4398 .{ .cp = 0xFD56, .status = .mapped, .mapping = &.{0x062A,0x0645,0x062D}, .status2 = .none, },
4399 .{ .cp = 0xFD57, .status = .mapped, .mapping = &.{0x062A,0x0645,0x062E}, .status2 = .none, },
4400 .{ .cp = 0xFD5A, .status = .mapped, .mapping = &.{0x062D,0x0645,0x064A}, .status2 = .none, },
4401 .{ .cp = 0xFD5B, .status = .mapped, .mapping = &.{0x062D,0x0645,0x0649}, .status2 = .none, },
4402 .{ .cp = 0xFD5C, .status = .mapped, .mapping = &.{0x0633,0x062D,0x062C}, .status2 = .none, },
4403 .{ .cp = 0xFD5D, .status = .mapped, .mapping = &.{0x0633,0x062C,0x062D}, .status2 = .none, },
4404 .{ .cp = 0xFD5E, .status = .mapped, .mapping = &.{0x0633,0x062C,0x0649}, .status2 = .none, },
4405 .{ .cp = 0xFD61, .status = .mapped, .mapping = &.{0x0633,0x0645,0x062C}, .status2 = .none, },
4406 .{ .cp = 0xFD66, .status = .mapped, .mapping = &.{0x0635,0x0645,0x0645}, .status2 = .none, },
4407 .{ .cp = 0xFD69, .status = .mapped, .mapping = &.{0x0634,0x062C,0x064A}, .status2 = .none, },
4408 .{ .cp = 0xFD6E, .status = .mapped, .mapping = &.{0x0636,0x062D,0x0649}, .status2 = .none, },
4409 .{ .cp = 0xFD73, .status = .mapped, .mapping = &.{0x0637,0x0645,0x0645}, .status2 = .none, },
4410 .{ .cp = 0xFD74, .status = .mapped, .mapping = &.{0x0637,0x0645,0x064A}, .status2 = .none, },
4411 .{ .cp = 0xFD75, .status = .mapped, .mapping = &.{0x0639,0x062C,0x0645}, .status2 = .none, },
4412 .{ .cp = 0xFD78, .status = .mapped, .mapping = &.{0x0639,0x0645,0x0649}, .status2 = .none, },
4413 .{ .cp = 0xFD79, .status = .mapped, .mapping = &.{0x063A,0x0645,0x0645}, .status2 = .none, },
4414 .{ .cp = 0xFD7A, .status = .mapped, .mapping = &.{0x063A,0x0645,0x064A}, .status2 = .none, },
4415 .{ .cp = 0xFD7B, .status = .mapped, .mapping = &.{0x063A,0x0645,0x0649}, .status2 = .none, },
4416 .{ .cp = 0xFD7E, .status = .mapped, .mapping = &.{0x0642,0x0645,0x062D}, .status2 = .none, },
4417 .{ .cp = 0xFD7F, .status = .mapped, .mapping = &.{0x0642,0x0645,0x0645}, .status2 = .none, },
4418 .{ .cp = 0xFD80, .status = .mapped, .mapping = &.{0x0644,0x062D,0x0645}, .status2 = .none, },
4419 .{ .cp = 0xFD81, .status = .mapped, .mapping = &.{0x0644,0x062D,0x064A}, .status2 = .none, },
4420 .{ .cp = 0xFD82, .status = .mapped, .mapping = &.{0x0644,0x062D,0x0649}, .status2 = .none, },
4421 .{ .cp = 0xFD89, .status = .mapped, .mapping = &.{0x0645,0x062D,0x062C}, .status2 = .none, },
4422 .{ .cp = 0xFD8A, .status = .mapped, .mapping = &.{0x0645,0x062D,0x0645}, .status2 = .none, },
4423 .{ .cp = 0xFD8B, .status = .mapped, .mapping = &.{0x0645,0x062D,0x064A}, .status2 = .none, },
4424 .{ .cp = 0xFD8C, .status = .mapped, .mapping = &.{0x0645,0x062C,0x062D}, .status2 = .none, },
4425 .{ .cp = 0xFD8D, .status = .mapped, .mapping = &.{0x0645,0x062C,0x0645}, .status2 = .none, },
4426 .{ .cp = 0xFD8E, .status = .mapped, .mapping = &.{0x0645,0x062E,0x062C}, .status2 = .none, },
4427 .{ .cp = 0xFD8F, .status = .mapped, .mapping = &.{0x0645,0x062E,0x0645}, .status2 = .none, },
4428 .{ .cp = 0xFD92, .status = .mapped, .mapping = &.{0x0645,0x062C,0x062E}, .status2 = .none, },
4429 .{ .cp = 0xFD93, .status = .mapped, .mapping = &.{0x0647,0x0645,0x062C}, .status2 = .none, },
4430 .{ .cp = 0xFD94, .status = .mapped, .mapping = &.{0x0647,0x0645,0x0645}, .status2 = .none, },
4431 .{ .cp = 0xFD95, .status = .mapped, .mapping = &.{0x0646,0x062D,0x0645}, .status2 = .none, },
4432 .{ .cp = 0xFD96, .status = .mapped, .mapping = &.{0x0646,0x062D,0x0649}, .status2 = .none, },
4433 .{ .cp = 0xFD99, .status = .mapped, .mapping = &.{0x0646,0x062C,0x0649}, .status2 = .none, },
4434 .{ .cp = 0xFD9A, .status = .mapped, .mapping = &.{0x0646,0x0645,0x064A}, .status2 = .none, },
4435 .{ .cp = 0xFD9B, .status = .mapped, .mapping = &.{0x0646,0x0645,0x0649}, .status2 = .none, },
4436 .{ .cp = 0xFD9E, .status = .mapped, .mapping = &.{0x0628,0x062E,0x064A}, .status2 = .none, },
4437 .{ .cp = 0xFD9F, .status = .mapped, .mapping = &.{0x062A,0x062C,0x064A}, .status2 = .none, },
4438 .{ .cp = 0xFDA0, .status = .mapped, .mapping = &.{0x062A,0x062C,0x0649}, .status2 = .none, },
4439 .{ .cp = 0xFDA1, .status = .mapped, .mapping = &.{0x062A,0x062E,0x064A}, .status2 = .none, },
4440 .{ .cp = 0xFDA2, .status = .mapped, .mapping = &.{0x062A,0x062E,0x0649}, .status2 = .none, },
4441 .{ .cp = 0xFDA3, .status = .mapped, .mapping = &.{0x062A,0x0645,0x064A}, .status2 = .none, },
4442 .{ .cp = 0xFDA4, .status = .mapped, .mapping = &.{0x062A,0x0645,0x0649}, .status2 = .none, },
4443 .{ .cp = 0xFDA5, .status = .mapped, .mapping = &.{0x062C,0x0645,0x064A}, .status2 = .none, },
4444 .{ .cp = 0xFDA6, .status = .mapped, .mapping = &.{0x062C,0x062D,0x0649}, .status2 = .none, },
4445 .{ .cp = 0xFDA7, .status = .mapped, .mapping = &.{0x062C,0x0645,0x0649}, .status2 = .none, },
4446 .{ .cp = 0xFDA8, .status = .mapped, .mapping = &.{0x0633,0x062E,0x0649}, .status2 = .none, },
4447 .{ .cp = 0xFDA9, .status = .mapped, .mapping = &.{0x0635,0x062D,0x064A}, .status2 = .none, },
4448 .{ .cp = 0xFDAA, .status = .mapped, .mapping = &.{0x0634,0x062D,0x064A}, .status2 = .none, },
4449 .{ .cp = 0xFDAB, .status = .mapped, .mapping = &.{0x0636,0x062D,0x064A}, .status2 = .none, },
4450 .{ .cp = 0xFDAC, .status = .mapped, .mapping = &.{0x0644,0x062C,0x064A}, .status2 = .none, },
4451 .{ .cp = 0xFDAD, .status = .mapped, .mapping = &.{0x0644,0x0645,0x064A}, .status2 = .none, },
4452 .{ .cp = 0xFDAE, .status = .mapped, .mapping = &.{0x064A,0x062D,0x064A}, .status2 = .none, },
4453 .{ .cp = 0xFDAF, .status = .mapped, .mapping = &.{0x064A,0x062C,0x064A}, .status2 = .none, },
4454 .{ .cp = 0xFDB0, .status = .mapped, .mapping = &.{0x064A,0x0645,0x064A}, .status2 = .none, },
4455 .{ .cp = 0xFDB1, .status = .mapped, .mapping = &.{0x0645,0x0645,0x064A}, .status2 = .none, },
4456 .{ .cp = 0xFDB2, .status = .mapped, .mapping = &.{0x0642,0x0645,0x064A}, .status2 = .none, },
4457 .{ .cp = 0xFDB3, .status = .mapped, .mapping = &.{0x0646,0x062D,0x064A}, .status2 = .none, },
4458 .{ .cp = 0xFDB4, .status = .mapped, .mapping = &.{0x0642,0x0645,0x062D}, .status2 = .none, },
4459 .{ .cp = 0xFDB5, .status = .mapped, .mapping = &.{0x0644,0x062D,0x0645}, .status2 = .none, },
4460 .{ .cp = 0xFDB6, .status = .mapped, .mapping = &.{0x0639,0x0645,0x064A}, .status2 = .none, },
4461 .{ .cp = 0xFDB7, .status = .mapped, .mapping = &.{0x0643,0x0645,0x064A}, .status2 = .none, },
4462 .{ .cp = 0xFDB8, .status = .mapped, .mapping = &.{0x0646,0x062C,0x062D}, .status2 = .none, },
4463 .{ .cp = 0xFDB9, .status = .mapped, .mapping = &.{0x0645,0x062E,0x064A}, .status2 = .none, },
4464 .{ .cp = 0xFDBA, .status = .mapped, .mapping = &.{0x0644,0x062C,0x0645}, .status2 = .none, },
4465 .{ .cp = 0xFDBB, .status = .mapped, .mapping = &.{0x0643,0x0645,0x0645}, .status2 = .none, },
4466 .{ .cp = 0xFDBC, .status = .mapped, .mapping = &.{0x0644,0x062C,0x0645}, .status2 = .none, },
4467 .{ .cp = 0xFDBD, .status = .mapped, .mapping = &.{0x0646,0x062C,0x062D}, .status2 = .none, },
4468 .{ .cp = 0xFDBE, .status = .mapped, .mapping = &.{0x062C,0x062D,0x064A}, .status2 = .none, },
4469 .{ .cp = 0xFDBF, .status = .mapped, .mapping = &.{0x062D,0x062C,0x064A}, .status2 = .none, },
4470 .{ .cp = 0xFDC0, .status = .mapped, .mapping = &.{0x0645,0x062C,0x064A}, .status2 = .none, },
4471 .{ .cp = 0xFDC1, .status = .mapped, .mapping = &.{0x0641,0x0645,0x064A}, .status2 = .none, },
4472 .{ .cp = 0xFDC2, .status = .mapped, .mapping = &.{0x0628,0x062D,0x064A}, .status2 = .none, },
4473 .{ .cp = 0xFDC3, .status = .mapped, .mapping = &.{0x0643,0x0645,0x0645}, .status2 = .none, },
4474 .{ .cp = 0xFDC4, .status = .mapped, .mapping = &.{0x0639,0x062C,0x0645}, .status2 = .none, },
4475 .{ .cp = 0xFDC5, .status = .mapped, .mapping = &.{0x0635,0x0645,0x0645}, .status2 = .none, },
4476 .{ .cp = 0xFDC6, .status = .mapped, .mapping = &.{0x0633,0x062E,0x064A}, .status2 = .none, },
4477 .{ .cp = 0xFDC7, .status = .mapped, .mapping = &.{0x0646,0x062C,0x064A}, .status2 = .none, },
4478 .{ .cp = 0xFDCF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
4479 .{ .cp = 0xFDF0, .status = .mapped, .mapping = &.{0x0635,0x0644,0x06D2}, .status2 = .none, },
4480 .{ .cp = 0xFDF1, .status = .mapped, .mapping = &.{0x0642,0x0644,0x06D2}, .status2 = .none, },
4481 .{ .cp = 0xFDF2, .status = .mapped, .mapping = &.{0x0627,0x0644,0x0644,0x0647}, .status2 = .none, },
4482 .{ .cp = 0xFDF3, .status = .mapped, .mapping = &.{0x0627,0x0643,0x0628,0x0631}, .status2 = .none, },
4483 .{ .cp = 0xFDF4, .status = .mapped, .mapping = &.{0x0645,0x062D,0x0645,0x062F}, .status2 = .none, },
4484 .{ .cp = 0xFDF5, .status = .mapped, .mapping = &.{0x0635,0x0644,0x0639,0x0645}, .status2 = .none, },
4485 .{ .cp = 0xFDF6, .status = .mapped, .mapping = &.{0x0631,0x0633,0x0648,0x0644}, .status2 = .none, },
4486 .{ .cp = 0xFDF7, .status = .mapped, .mapping = &.{0x0639,0x0644,0x064A,0x0647}, .status2 = .none, },
4487 .{ .cp = 0xFDF8, .status = .mapped, .mapping = &.{0x0648,0x0633,0x0644,0x0645}, .status2 = .none, },
4488 .{ .cp = 0xFDF9, .status = .mapped, .mapping = &.{0x0635,0x0644,0x0649}, .status2 = .none, },
4489 .{ .cp = 0xFDFA, .status = .mapped, .mapping = &.{0x0635,0x0644,0x0649,0x0020,0x0627,0x0644,0x0644,0x0647,0x0020,0x0639,0x0644,0x064A,0x0647,0x0020,0x0648,0x0633,0x0644,0x0645}, .status2 = .none, },
4490 .{ .cp = 0xFDFB, .status = .mapped, .mapping = &.{0x062C,0x0644,0x0020,0x062C,0x0644,0x0627,0x0644,0x0647}, .status2 = .none, },
4491 .{ .cp = 0xFDFC, .status = .mapped, .mapping = &.{0x0631,0x06CC,0x0627,0x0644}, .status2 = .none, },
4492 .{ .cp = 0xFDFD, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
4493 .{ .cp = 0xFE10, .status = .mapped, .mapping = &.{0x002C}, .status2 = .none, },
4494 .{ .cp = 0xFE11, .status = .mapped, .mapping = &.{0x3001}, .status2 = .none, },
4495 .{ .cp = 0xFE12, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
4496 .{ .cp = 0xFE13, .status = .mapped, .mapping = &.{0x003A}, .status2 = .none, },
4497 .{ .cp = 0xFE14, .status = .mapped, .mapping = &.{0x003B}, .status2 = .none, },
4498 .{ .cp = 0xFE15, .status = .mapped, .mapping = &.{0x0021}, .status2 = .none, },
4499 .{ .cp = 0xFE16, .status = .mapped, .mapping = &.{0x003F}, .status2 = .none, },
4500 .{ .cp = 0xFE17, .status = .mapped, .mapping = &.{0x3016}, .status2 = .none, },
4501 .{ .cp = 0xFE18, .status = .mapped, .mapping = &.{0x3017}, .status2 = .none, },
4502 .{ .cp = 0xFE19, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
4503 .{ .cp = 0xFE30, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
4504 .{ .cp = 0xFE31, .status = .mapped, .mapping = &.{0x2014}, .status2 = .none, },
4505 .{ .cp = 0xFE32, .status = .mapped, .mapping = &.{0x2013}, .status2 = .none, },
4506 .{ .cp = 0xFE35, .status = .mapped, .mapping = &.{0x0028}, .status2 = .none, },
4507 .{ .cp = 0xFE36, .status = .mapped, .mapping = &.{0x0029}, .status2 = .none, },
4508 .{ .cp = 0xFE37, .status = .mapped, .mapping = &.{0x007B}, .status2 = .none, },
4509 .{ .cp = 0xFE38, .status = .mapped, .mapping = &.{0x007D}, .status2 = .none, },
4510 .{ .cp = 0xFE39, .status = .mapped, .mapping = &.{0x3014}, .status2 = .none, },
4511 .{ .cp = 0xFE3A, .status = .mapped, .mapping = &.{0x3015}, .status2 = .none, },
4512 .{ .cp = 0xFE3B, .status = .mapped, .mapping = &.{0x3010}, .status2 = .none, },
4513 .{ .cp = 0xFE3C, .status = .mapped, .mapping = &.{0x3011}, .status2 = .none, },
4514 .{ .cp = 0xFE3D, .status = .mapped, .mapping = &.{0x300A}, .status2 = .none, },
4515 .{ .cp = 0xFE3E, .status = .mapped, .mapping = &.{0x300B}, .status2 = .none, },
4516 .{ .cp = 0xFE3F, .status = .mapped, .mapping = &.{0x3008}, .status2 = .none, },
4517 .{ .cp = 0xFE40, .status = .mapped, .mapping = &.{0x3009}, .status2 = .none, },
4518 .{ .cp = 0xFE41, .status = .mapped, .mapping = &.{0x300C}, .status2 = .none, },
4519 .{ .cp = 0xFE42, .status = .mapped, .mapping = &.{0x300D}, .status2 = .none, },
4520 .{ .cp = 0xFE43, .status = .mapped, .mapping = &.{0x300E}, .status2 = .none, },
4521 .{ .cp = 0xFE44, .status = .mapped, .mapping = &.{0x300F}, .status2 = .none, },
4522 .{ .cp = 0xFE47, .status = .mapped, .mapping = &.{0x005B}, .status2 = .none, },
4523 .{ .cp = 0xFE48, .status = .mapped, .mapping = &.{0x005D}, .status2 = .none, },
4524 .{ .cp = 0xFE50, .status = .mapped, .mapping = &.{0x002C}, .status2 = .none, },
4525 .{ .cp = 0xFE51, .status = .mapped, .mapping = &.{0x3001}, .status2 = .none, },
4526 .{ .cp = 0xFE52, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
4527 .{ .cp = 0xFE53, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
4528 .{ .cp = 0xFE54, .status = .mapped, .mapping = &.{0x003B}, .status2 = .none, },
4529 .{ .cp = 0xFE55, .status = .mapped, .mapping = &.{0x003A}, .status2 = .none, },
4530 .{ .cp = 0xFE56, .status = .mapped, .mapping = &.{0x003F}, .status2 = .none, },
4531 .{ .cp = 0xFE57, .status = .mapped, .mapping = &.{0x0021}, .status2 = .none, },
4532 .{ .cp = 0xFE58, .status = .mapped, .mapping = &.{0x2014}, .status2 = .none, },
4533 .{ .cp = 0xFE59, .status = .mapped, .mapping = &.{0x0028}, .status2 = .none, },
4534 .{ .cp = 0xFE5A, .status = .mapped, .mapping = &.{0x0029}, .status2 = .none, },
4535 .{ .cp = 0xFE5B, .status = .mapped, .mapping = &.{0x007B}, .status2 = .none, },
4536 .{ .cp = 0xFE5C, .status = .mapped, .mapping = &.{0x007D}, .status2 = .none, },
4537 .{ .cp = 0xFE5D, .status = .mapped, .mapping = &.{0x3014}, .status2 = .none, },
4538 .{ .cp = 0xFE5E, .status = .mapped, .mapping = &.{0x3015}, .status2 = .none, },
4539 .{ .cp = 0xFE5F, .status = .mapped, .mapping = &.{0x0023}, .status2 = .none, },
4540 .{ .cp = 0xFE60, .status = .mapped, .mapping = &.{0x0026}, .status2 = .none, },
4541 .{ .cp = 0xFE61, .status = .mapped, .mapping = &.{0x002A}, .status2 = .none, },
4542 .{ .cp = 0xFE62, .status = .mapped, .mapping = &.{0x002B}, .status2 = .none, },
4543 .{ .cp = 0xFE63, .status = .mapped, .mapping = &.{0x002D}, .status2 = .none, },
4544 .{ .cp = 0xFE64, .status = .mapped, .mapping = &.{0x003C}, .status2 = .none, },
4545 .{ .cp = 0xFE65, .status = .mapped, .mapping = &.{0x003E}, .status2 = .none, },
4546 .{ .cp = 0xFE66, .status = .mapped, .mapping = &.{0x003D}, .status2 = .none, },
4547 .{ .cp = 0xFE67, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
4548 .{ .cp = 0xFE68, .status = .mapped, .mapping = &.{0x005C}, .status2 = .none, },
4549 .{ .cp = 0xFE69, .status = .mapped, .mapping = &.{0x0024}, .status2 = .none, },
4550 .{ .cp = 0xFE6A, .status = .mapped, .mapping = &.{0x0025}, .status2 = .none, },
4551 .{ .cp = 0xFE6B, .status = .mapped, .mapping = &.{0x0040}, .status2 = .none, },
4552 .{ .cp = 0xFE70, .status = .mapped, .mapping = &.{0x0020,0x064B}, .status2 = .none, },
4553 .{ .cp = 0xFE71, .status = .mapped, .mapping = &.{0x0640,0x064B}, .status2 = .none, },
4554 .{ .cp = 0xFE72, .status = .mapped, .mapping = &.{0x0020,0x064C}, .status2 = .none, },
4555 .{ .cp = 0xFE73, .status = .valid, .mapping = &.{}, .status2 = .none, },
4556 .{ .cp = 0xFE74, .status = .mapped, .mapping = &.{0x0020,0x064D}, .status2 = .none, },
4557 .{ .cp = 0xFE75, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
4558 .{ .cp = 0xFE76, .status = .mapped, .mapping = &.{0x0020,0x064E}, .status2 = .none, },
4559 .{ .cp = 0xFE77, .status = .mapped, .mapping = &.{0x0640,0x064E}, .status2 = .none, },
4560 .{ .cp = 0xFE78, .status = .mapped, .mapping = &.{0x0020,0x064F}, .status2 = .none, },
4561 .{ .cp = 0xFE79, .status = .mapped, .mapping = &.{0x0640,0x064F}, .status2 = .none, },
4562 .{ .cp = 0xFE7A, .status = .mapped, .mapping = &.{0x0020,0x0650}, .status2 = .none, },
4563 .{ .cp = 0xFE7B, .status = .mapped, .mapping = &.{0x0640,0x0650}, .status2 = .none, },
4564 .{ .cp = 0xFE7C, .status = .mapped, .mapping = &.{0x0020,0x0651}, .status2 = .none, },
4565 .{ .cp = 0xFE7D, .status = .mapped, .mapping = &.{0x0640,0x0651}, .status2 = .none, },
4566 .{ .cp = 0xFE7E, .status = .mapped, .mapping = &.{0x0020,0x0652}, .status2 = .none, },
4567 .{ .cp = 0xFE7F, .status = .mapped, .mapping = &.{0x0640,0x0652}, .status2 = .none, },
4568 .{ .cp = 0xFE80, .status = .mapped, .mapping = &.{0x0621}, .status2 = .none, },
4569 .{ .cp = 0xFEFF, .status = .ignored, .mapping = &.{}, .status2 = .none, },
4570 .{ .cp = 0xFF00, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
4571 .{ .cp = 0xFF01, .status = .mapped, .mapping = &.{0x0021}, .status2 = .none, },
4572 .{ .cp = 0xFF02, .status = .mapped, .mapping = &.{0x0022}, .status2 = .none, },
4573 .{ .cp = 0xFF03, .status = .mapped, .mapping = &.{0x0023}, .status2 = .none, },
4574 .{ .cp = 0xFF04, .status = .mapped, .mapping = &.{0x0024}, .status2 = .none, },
4575 .{ .cp = 0xFF05, .status = .mapped, .mapping = &.{0x0025}, .status2 = .none, },
4576 .{ .cp = 0xFF06, .status = .mapped, .mapping = &.{0x0026}, .status2 = .none, },
4577 .{ .cp = 0xFF07, .status = .mapped, .mapping = &.{0x0027}, .status2 = .none, },
4578 .{ .cp = 0xFF08, .status = .mapped, .mapping = &.{0x0028}, .status2 = .none, },
4579 .{ .cp = 0xFF09, .status = .mapped, .mapping = &.{0x0029}, .status2 = .none, },
4580 .{ .cp = 0xFF0A, .status = .mapped, .mapping = &.{0x002A}, .status2 = .none, },
4581 .{ .cp = 0xFF0B, .status = .mapped, .mapping = &.{0x002B}, .status2 = .none, },
4582 .{ .cp = 0xFF0C, .status = .mapped, .mapping = &.{0x002C}, .status2 = .none, },
4583 .{ .cp = 0xFF0D, .status = .mapped, .mapping = &.{0x002D}, .status2 = .none, },
4584 .{ .cp = 0xFF0E, .status = .mapped, .mapping = &.{0x002E}, .status2 = .none, },
4585 .{ .cp = 0xFF0F, .status = .mapped, .mapping = &.{0x002F}, .status2 = .none, },
4586 .{ .cp = 0xFF10, .status = .mapped, .mapping = &.{0x0030}, .status2 = .none, },
4587 .{ .cp = 0xFF11, .status = .mapped, .mapping = &.{0x0031}, .status2 = .none, },
4588 .{ .cp = 0xFF12, .status = .mapped, .mapping = &.{0x0032}, .status2 = .none, },
4589 .{ .cp = 0xFF13, .status = .mapped, .mapping = &.{0x0033}, .status2 = .none, },
4590 .{ .cp = 0xFF14, .status = .mapped, .mapping = &.{0x0034}, .status2 = .none, },
4591 .{ .cp = 0xFF15, .status = .mapped, .mapping = &.{0x0035}, .status2 = .none, },
4592 .{ .cp = 0xFF16, .status = .mapped, .mapping = &.{0x0036}, .status2 = .none, },
4593 .{ .cp = 0xFF17, .status = .mapped, .mapping = &.{0x0037}, .status2 = .none, },
4594 .{ .cp = 0xFF18, .status = .mapped, .mapping = &.{0x0038}, .status2 = .none, },
4595 .{ .cp = 0xFF19, .status = .mapped, .mapping = &.{0x0039}, .status2 = .none, },
4596 .{ .cp = 0xFF1A, .status = .mapped, .mapping = &.{0x003A}, .status2 = .none, },
4597 .{ .cp = 0xFF1B, .status = .mapped, .mapping = &.{0x003B}, .status2 = .none, },
4598 .{ .cp = 0xFF1C, .status = .mapped, .mapping = &.{0x003C}, .status2 = .none, },
4599 .{ .cp = 0xFF1D, .status = .mapped, .mapping = &.{0x003D}, .status2 = .none, },
4600 .{ .cp = 0xFF1E, .status = .mapped, .mapping = &.{0x003E}, .status2 = .none, },
4601 .{ .cp = 0xFF1F, .status = .mapped, .mapping = &.{0x003F}, .status2 = .none, },
4602 .{ .cp = 0xFF20, .status = .mapped, .mapping = &.{0x0040}, .status2 = .none, },
4603 .{ .cp = 0xFF21, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, },
4604 .{ .cp = 0xFF22, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, },
4605 .{ .cp = 0xFF23, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, },
4606 .{ .cp = 0xFF24, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, },
4607 .{ .cp = 0xFF25, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, },
4608 .{ .cp = 0xFF26, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, },
4609 .{ .cp = 0xFF27, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, },
4610 .{ .cp = 0xFF28, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, },
4611 .{ .cp = 0xFF29, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, },
4612 .{ .cp = 0xFF2A, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, },
4613 .{ .cp = 0xFF2B, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, },
4614 .{ .cp = 0xFF2C, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, },
4615 .{ .cp = 0xFF2D, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, },
4616 .{ .cp = 0xFF2E, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, },
4617 .{ .cp = 0xFF2F, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, },
4618 .{ .cp = 0xFF30, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, },
4619 .{ .cp = 0xFF31, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, },
4620 .{ .cp = 0xFF32, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, },
4621 .{ .cp = 0xFF33, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, },
4622 .{ .cp = 0xFF34, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, },
4623 .{ .cp = 0xFF35, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, },
4624 .{ .cp = 0xFF36, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, },
4625 .{ .cp = 0xFF37, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, },
4626 .{ .cp = 0xFF38, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, },
4627 .{ .cp = 0xFF39, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, },
4628 .{ .cp = 0xFF3A, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, },
4629 .{ .cp = 0xFF3B, .status = .mapped, .mapping = &.{0x005B}, .status2 = .none, },
4630 .{ .cp = 0xFF3C, .status = .mapped, .mapping = &.{0x005C}, .status2 = .none, },
4631 .{ .cp = 0xFF3D, .status = .mapped, .mapping = &.{0x005D}, .status2 = .none, },
4632 .{ .cp = 0xFF3E, .status = .mapped, .mapping = &.{0x005E}, .status2 = .none, },
4633 .{ .cp = 0xFF3F, .status = .mapped, .mapping = &.{0x005F}, .status2 = .none, },
4634 .{ .cp = 0xFF40, .status = .mapped, .mapping = &.{0x0060}, .status2 = .none, },
4635 .{ .cp = 0xFF41, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, },
4636 .{ .cp = 0xFF42, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, },
4637 .{ .cp = 0xFF43, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, },
4638 .{ .cp = 0xFF44, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, },
4639 .{ .cp = 0xFF45, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, },
4640 .{ .cp = 0xFF46, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, },
4641 .{ .cp = 0xFF47, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, },
4642 .{ .cp = 0xFF48, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, },
4643 .{ .cp = 0xFF49, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, },
4644 .{ .cp = 0xFF4A, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, },
4645 .{ .cp = 0xFF4B, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, },
4646 .{ .cp = 0xFF4C, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, },
4647 .{ .cp = 0xFF4D, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, },
4648 .{ .cp = 0xFF4E, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, },
4649 .{ .cp = 0xFF4F, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, },
4650 .{ .cp = 0xFF50, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, },
4651 .{ .cp = 0xFF51, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, },
4652 .{ .cp = 0xFF52, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, },
4653 .{ .cp = 0xFF53, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, },
4654 .{ .cp = 0xFF54, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, },
4655 .{ .cp = 0xFF55, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, },
4656 .{ .cp = 0xFF56, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, },
4657 .{ .cp = 0xFF57, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, },
4658 .{ .cp = 0xFF58, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, },
4659 .{ .cp = 0xFF59, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, },
4660 .{ .cp = 0xFF5A, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, },
4661 .{ .cp = 0xFF5B, .status = .mapped, .mapping = &.{0x007B}, .status2 = .none, },
4662 .{ .cp = 0xFF5C, .status = .mapped, .mapping = &.{0x007C}, .status2 = .none, },
4663 .{ .cp = 0xFF5D, .status = .mapped, .mapping = &.{0x007D}, .status2 = .none, },
4664 .{ .cp = 0xFF5E, .status = .mapped, .mapping = &.{0x007E}, .status2 = .none, },
4665 .{ .cp = 0xFF5F, .status = .mapped, .mapping = &.{0x2985}, .status2 = .none, },
4666 .{ .cp = 0xFF60, .status = .mapped, .mapping = &.{0x2986}, .status2 = .none, },
4667 .{ .cp = 0xFF61, .status = .mapped, .mapping = &.{0x002E}, .status2 = .none, },
4668 .{ .cp = 0xFF62, .status = .mapped, .mapping = &.{0x300C}, .status2 = .none, },
4669 .{ .cp = 0xFF63, .status = .mapped, .mapping = &.{0x300D}, .status2 = .none, },
4670 .{ .cp = 0xFF64, .status = .mapped, .mapping = &.{0x3001}, .status2 = .none, },
4671 .{ .cp = 0xFF65, .status = .mapped, .mapping = &.{0x30FB}, .status2 = .none, },
4672 .{ .cp = 0xFF66, .status = .mapped, .mapping = &.{0x30F2}, .status2 = .none, },
4673 .{ .cp = 0xFF67, .status = .mapped, .mapping = &.{0x30A1}, .status2 = .none, },
4674 .{ .cp = 0xFF68, .status = .mapped, .mapping = &.{0x30A3}, .status2 = .none, },
4675 .{ .cp = 0xFF69, .status = .mapped, .mapping = &.{0x30A5}, .status2 = .none, },
4676 .{ .cp = 0xFF6A, .status = .mapped, .mapping = &.{0x30A7}, .status2 = .none, },
4677 .{ .cp = 0xFF6B, .status = .mapped, .mapping = &.{0x30A9}, .status2 = .none, },
4678 .{ .cp = 0xFF6C, .status = .mapped, .mapping = &.{0x30E3}, .status2 = .none, },
4679 .{ .cp = 0xFF6D, .status = .mapped, .mapping = &.{0x30E5}, .status2 = .none, },
4680 .{ .cp = 0xFF6E, .status = .mapped, .mapping = &.{0x30E7}, .status2 = .none, },
4681 .{ .cp = 0xFF6F, .status = .mapped, .mapping = &.{0x30C3}, .status2 = .none, },
4682 .{ .cp = 0xFF70, .status = .mapped, .mapping = &.{0x30FC}, .status2 = .none, },
4683 .{ .cp = 0xFF71, .status = .mapped, .mapping = &.{0x30A2}, .status2 = .none, },
4684 .{ .cp = 0xFF72, .status = .mapped, .mapping = &.{0x30A4}, .status2 = .none, },
4685 .{ .cp = 0xFF73, .status = .mapped, .mapping = &.{0x30A6}, .status2 = .none, },
4686 .{ .cp = 0xFF74, .status = .mapped, .mapping = &.{0x30A8}, .status2 = .none, },
4687 .{ .cp = 0xFF75, .status = .mapped, .mapping = &.{0x30AA}, .status2 = .none, },
4688 .{ .cp = 0xFF76, .status = .mapped, .mapping = &.{0x30AB}, .status2 = .none, },
4689 .{ .cp = 0xFF77, .status = .mapped, .mapping = &.{0x30AD}, .status2 = .none, },
4690 .{ .cp = 0xFF78, .status = .mapped, .mapping = &.{0x30AF}, .status2 = .none, },
4691 .{ .cp = 0xFF79, .status = .mapped, .mapping = &.{0x30B1}, .status2 = .none, },
4692 .{ .cp = 0xFF7A, .status = .mapped, .mapping = &.{0x30B3}, .status2 = .none, },
4693 .{ .cp = 0xFF7B, .status = .mapped, .mapping = &.{0x30B5}, .status2 = .none, },
4694 .{ .cp = 0xFF7C, .status = .mapped, .mapping = &.{0x30B7}, .status2 = .none, },
4695 .{ .cp = 0xFF7D, .status = .mapped, .mapping = &.{0x30B9}, .status2 = .none, },
4696 .{ .cp = 0xFF7E, .status = .mapped, .mapping = &.{0x30BB}, .status2 = .none, },
4697 .{ .cp = 0xFF7F, .status = .mapped, .mapping = &.{0x30BD}, .status2 = .none, },
4698 .{ .cp = 0xFF80, .status = .mapped, .mapping = &.{0x30BF}, .status2 = .none, },
4699 .{ .cp = 0xFF81, .status = .mapped, .mapping = &.{0x30C1}, .status2 = .none, },
4700 .{ .cp = 0xFF82, .status = .mapped, .mapping = &.{0x30C4}, .status2 = .none, },
4701 .{ .cp = 0xFF83, .status = .mapped, .mapping = &.{0x30C6}, .status2 = .none, },
4702 .{ .cp = 0xFF84, .status = .mapped, .mapping = &.{0x30C8}, .status2 = .none, },
4703 .{ .cp = 0xFF85, .status = .mapped, .mapping = &.{0x30CA}, .status2 = .none, },
4704 .{ .cp = 0xFF86, .status = .mapped, .mapping = &.{0x30CB}, .status2 = .none, },
4705 .{ .cp = 0xFF87, .status = .mapped, .mapping = &.{0x30CC}, .status2 = .none, },
4706 .{ .cp = 0xFF88, .status = .mapped, .mapping = &.{0x30CD}, .status2 = .none, },
4707 .{ .cp = 0xFF89, .status = .mapped, .mapping = &.{0x30CE}, .status2 = .none, },
4708 .{ .cp = 0xFF8A, .status = .mapped, .mapping = &.{0x30CF}, .status2 = .none, },
4709 .{ .cp = 0xFF8B, .status = .mapped, .mapping = &.{0x30D2}, .status2 = .none, },
4710 .{ .cp = 0xFF8C, .status = .mapped, .mapping = &.{0x30D5}, .status2 = .none, },
4711 .{ .cp = 0xFF8D, .status = .mapped, .mapping = &.{0x30D8}, .status2 = .none, },
4712 .{ .cp = 0xFF8E, .status = .mapped, .mapping = &.{0x30DB}, .status2 = .none, },
4713 .{ .cp = 0xFF8F, .status = .mapped, .mapping = &.{0x30DE}, .status2 = .none, },
4714 .{ .cp = 0xFF90, .status = .mapped, .mapping = &.{0x30DF}, .status2 = .none, },
4715 .{ .cp = 0xFF91, .status = .mapped, .mapping = &.{0x30E0}, .status2 = .none, },
4716 .{ .cp = 0xFF92, .status = .mapped, .mapping = &.{0x30E1}, .status2 = .none, },
4717 .{ .cp = 0xFF93, .status = .mapped, .mapping = &.{0x30E2}, .status2 = .none, },
4718 .{ .cp = 0xFF94, .status = .mapped, .mapping = &.{0x30E4}, .status2 = .none, },
4719 .{ .cp = 0xFF95, .status = .mapped, .mapping = &.{0x30E6}, .status2 = .none, },
4720 .{ .cp = 0xFF96, .status = .mapped, .mapping = &.{0x30E8}, .status2 = .none, },
4721 .{ .cp = 0xFF97, .status = .mapped, .mapping = &.{0x30E9}, .status2 = .none, },
4722 .{ .cp = 0xFF98, .status = .mapped, .mapping = &.{0x30EA}, .status2 = .none, },
4723 .{ .cp = 0xFF99, .status = .mapped, .mapping = &.{0x30EB}, .status2 = .none, },
4724 .{ .cp = 0xFF9A, .status = .mapped, .mapping = &.{0x30EC}, .status2 = .none, },
4725 .{ .cp = 0xFF9B, .status = .mapped, .mapping = &.{0x30ED}, .status2 = .none, },
4726 .{ .cp = 0xFF9C, .status = .mapped, .mapping = &.{0x30EF}, .status2 = .none, },
4727 .{ .cp = 0xFF9D, .status = .mapped, .mapping = &.{0x30F3}, .status2 = .none, },
4728 .{ .cp = 0xFF9E, .status = .mapped, .mapping = &.{0x3099}, .status2 = .none, },
4729 .{ .cp = 0xFF9F, .status = .mapped, .mapping = &.{0x309A}, .status2 = .none, },
4730 .{ .cp = 0xFFA0, .status = .ignored, .mapping = &.{}, .status2 = .none, },
4731 .{ .cp = 0xFFA1, .status = .mapped, .mapping = &.{0x1100}, .status2 = .none, },
4732 .{ .cp = 0xFFA2, .status = .mapped, .mapping = &.{0x1101}, .status2 = .none, },
4733 .{ .cp = 0xFFA3, .status = .mapped, .mapping = &.{0x11AA}, .status2 = .none, },
4734 .{ .cp = 0xFFA4, .status = .mapped, .mapping = &.{0x1102}, .status2 = .none, },
4735 .{ .cp = 0xFFA5, .status = .mapped, .mapping = &.{0x11AC}, .status2 = .none, },
4736 .{ .cp = 0xFFA6, .status = .mapped, .mapping = &.{0x11AD}, .status2 = .none, },
4737 .{ .cp = 0xFFA7, .status = .mapped, .mapping = &.{0x1103}, .status2 = .none, },
4738 .{ .cp = 0xFFA8, .status = .mapped, .mapping = &.{0x1104}, .status2 = .none, },
4739 .{ .cp = 0xFFA9, .status = .mapped, .mapping = &.{0x1105}, .status2 = .none, },
4740 .{ .cp = 0xFFAA, .status = .mapped, .mapping = &.{0x11B0}, .status2 = .none, },
4741 .{ .cp = 0xFFAB, .status = .mapped, .mapping = &.{0x11B1}, .status2 = .none, },
4742 .{ .cp = 0xFFAC, .status = .mapped, .mapping = &.{0x11B2}, .status2 = .none, },
4743 .{ .cp = 0xFFAD, .status = .mapped, .mapping = &.{0x11B3}, .status2 = .none, },
4744 .{ .cp = 0xFFAE, .status = .mapped, .mapping = &.{0x11B4}, .status2 = .none, },
4745 .{ .cp = 0xFFAF, .status = .mapped, .mapping = &.{0x11B5}, .status2 = .none, },
4746 .{ .cp = 0xFFB0, .status = .mapped, .mapping = &.{0x111A}, .status2 = .none, },
4747 .{ .cp = 0xFFB1, .status = .mapped, .mapping = &.{0x1106}, .status2 = .none, },
4748 .{ .cp = 0xFFB2, .status = .mapped, .mapping = &.{0x1107}, .status2 = .none, },
4749 .{ .cp = 0xFFB3, .status = .mapped, .mapping = &.{0x1108}, .status2 = .none, },
4750 .{ .cp = 0xFFB4, .status = .mapped, .mapping = &.{0x1121}, .status2 = .none, },
4751 .{ .cp = 0xFFB5, .status = .mapped, .mapping = &.{0x1109}, .status2 = .none, },
4752 .{ .cp = 0xFFB6, .status = .mapped, .mapping = &.{0x110A}, .status2 = .none, },
4753 .{ .cp = 0xFFB7, .status = .mapped, .mapping = &.{0x110B}, .status2 = .none, },
4754 .{ .cp = 0xFFB8, .status = .mapped, .mapping = &.{0x110C}, .status2 = .none, },
4755 .{ .cp = 0xFFB9, .status = .mapped, .mapping = &.{0x110D}, .status2 = .none, },
4756 .{ .cp = 0xFFBA, .status = .mapped, .mapping = &.{0x110E}, .status2 = .none, },
4757 .{ .cp = 0xFFBB, .status = .mapped, .mapping = &.{0x110F}, .status2 = .none, },
4758 .{ .cp = 0xFFBC, .status = .mapped, .mapping = &.{0x1110}, .status2 = .none, },
4759 .{ .cp = 0xFFBD, .status = .mapped, .mapping = &.{0x1111}, .status2 = .none, },
4760 .{ .cp = 0xFFBE, .status = .mapped, .mapping = &.{0x1112}, .status2 = .none, },
4761 .{ .cp = 0xFFC2, .status = .mapped, .mapping = &.{0x1161}, .status2 = .none, },
4762 .{ .cp = 0xFFC3, .status = .mapped, .mapping = &.{0x1162}, .status2 = .none, },
4763 .{ .cp = 0xFFC4, .status = .mapped, .mapping = &.{0x1163}, .status2 = .none, },
4764 .{ .cp = 0xFFC5, .status = .mapped, .mapping = &.{0x1164}, .status2 = .none, },
4765 .{ .cp = 0xFFC6, .status = .mapped, .mapping = &.{0x1165}, .status2 = .none, },
4766 .{ .cp = 0xFFC7, .status = .mapped, .mapping = &.{0x1166}, .status2 = .none, },
4767 .{ .cp = 0xFFCA, .status = .mapped, .mapping = &.{0x1167}, .status2 = .none, },
4768 .{ .cp = 0xFFCB, .status = .mapped, .mapping = &.{0x1168}, .status2 = .none, },
4769 .{ .cp = 0xFFCC, .status = .mapped, .mapping = &.{0x1169}, .status2 = .none, },
4770 .{ .cp = 0xFFCD, .status = .mapped, .mapping = &.{0x116A}, .status2 = .none, },
4771 .{ .cp = 0xFFCE, .status = .mapped, .mapping = &.{0x116B}, .status2 = .none, },
4772 .{ .cp = 0xFFCF, .status = .mapped, .mapping = &.{0x116C}, .status2 = .none, },
4773 .{ .cp = 0xFFD2, .status = .mapped, .mapping = &.{0x116D}, .status2 = .none, },
4774 .{ .cp = 0xFFD3, .status = .mapped, .mapping = &.{0x116E}, .status2 = .none, },
4775 .{ .cp = 0xFFD4, .status = .mapped, .mapping = &.{0x116F}, .status2 = .none, },
4776 .{ .cp = 0xFFD5, .status = .mapped, .mapping = &.{0x1170}, .status2 = .none, },
4777 .{ .cp = 0xFFD6, .status = .mapped, .mapping = &.{0x1171}, .status2 = .none, },
4778 .{ .cp = 0xFFD7, .status = .mapped, .mapping = &.{0x1172}, .status2 = .none, },
4779 .{ .cp = 0xFFDA, .status = .mapped, .mapping = &.{0x1173}, .status2 = .none, },
4780 .{ .cp = 0xFFDB, .status = .mapped, .mapping = &.{0x1174}, .status2 = .none, },
4781 .{ .cp = 0xFFDC, .status = .mapped, .mapping = &.{0x1175}, .status2 = .none, },
4782 .{ .cp = 0xFFE0, .status = .mapped, .mapping = &.{0x00A2}, .status2 = .none, },
4783 .{ .cp = 0xFFE1, .status = .mapped, .mapping = &.{0x00A3}, .status2 = .none, },
4784 .{ .cp = 0xFFE2, .status = .mapped, .mapping = &.{0x00AC}, .status2 = .none, },
4785 .{ .cp = 0xFFE3, .status = .mapped, .mapping = &.{0x0020,0x0304}, .status2 = .none, },
4786 .{ .cp = 0xFFE4, .status = .mapped, .mapping = &.{0x00A6}, .status2 = .none, },
4787 .{ .cp = 0xFFE5, .status = .mapped, .mapping = &.{0x00A5}, .status2 = .none, },
4788 .{ .cp = 0xFFE6, .status = .mapped, .mapping = &.{0x20A9}, .status2 = .none, },
4789 .{ .cp = 0xFFE7, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
4790 .{ .cp = 0xFFE8, .status = .mapped, .mapping = &.{0x2502}, .status2 = .none, },
4791 .{ .cp = 0xFFE9, .status = .mapped, .mapping = &.{0x2190}, .status2 = .none, },
4792 .{ .cp = 0xFFEA, .status = .mapped, .mapping = &.{0x2191}, .status2 = .none, },
4793 .{ .cp = 0xFFEB, .status = .mapped, .mapping = &.{0x2192}, .status2 = .none, },
4794 .{ .cp = 0xFFEC, .status = .mapped, .mapping = &.{0x2193}, .status2 = .none, },
4795 .{ .cp = 0xFFED, .status = .mapped, .mapping = &.{0x25A0}, .status2 = .none, },
4796 .{ .cp = 0xFFEE, .status = .mapped, .mapping = &.{0x25CB}, .status2 = .none, },
4797 .{ .cp = 0xFFFC, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
4798 .{ .cp = 0xFFFD, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
4799 .{ .cp = 0x1000C, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
4800 .{ .cp = 0x10027, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
4801 .{ .cp = 0x1003B, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
4802 .{ .cp = 0x1003E, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
4803 .{ .cp = 0x1018F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
4804 .{ .cp = 0x1019C, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
4805 .{ .cp = 0x101A0, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
4806 .{ .cp = 0x101FD, .status = .valid, .mapping = &.{}, .status2 = .none, },
4807 .{ .cp = 0x102E0, .status = .valid, .mapping = &.{}, .status2 = .none, },
4808 .{ .cp = 0x1031F, .status = .valid, .mapping = &.{}, .status2 = .none, },
4809 .{ .cp = 0x10341, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
4810 .{ .cp = 0x1034A, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
4811 .{ .cp = 0x1039E, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
4812 .{ .cp = 0x1039F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
4813 .{ .cp = 0x10400, .status = .mapped, .mapping = &.{0x10428}, .status2 = .none, },
4814 .{ .cp = 0x10401, .status = .mapped, .mapping = &.{0x10429}, .status2 = .none, },
4815 .{ .cp = 0x10402, .status = .mapped, .mapping = &.{0x1042A}, .status2 = .none, },
4816 .{ .cp = 0x10403, .status = .mapped, .mapping = &.{0x1042B}, .status2 = .none, },
4817 .{ .cp = 0x10404, .status = .mapped, .mapping = &.{0x1042C}, .status2 = .none, },
4818 .{ .cp = 0x10405, .status = .mapped, .mapping = &.{0x1042D}, .status2 = .none, },
4819 .{ .cp = 0x10406, .status = .mapped, .mapping = &.{0x1042E}, .status2 = .none, },
4820 .{ .cp = 0x10407, .status = .mapped, .mapping = &.{0x1042F}, .status2 = .none, },
4821 .{ .cp = 0x10408, .status = .mapped, .mapping = &.{0x10430}, .status2 = .none, },
4822 .{ .cp = 0x10409, .status = .mapped, .mapping = &.{0x10431}, .status2 = .none, },
4823 .{ .cp = 0x1040A, .status = .mapped, .mapping = &.{0x10432}, .status2 = .none, },
4824 .{ .cp = 0x1040B, .status = .mapped, .mapping = &.{0x10433}, .status2 = .none, },
4825 .{ .cp = 0x1040C, .status = .mapped, .mapping = &.{0x10434}, .status2 = .none, },
4826 .{ .cp = 0x1040D, .status = .mapped, .mapping = &.{0x10435}, .status2 = .none, },
4827 .{ .cp = 0x1040E, .status = .mapped, .mapping = &.{0x10436}, .status2 = .none, },
4828 .{ .cp = 0x1040F, .status = .mapped, .mapping = &.{0x10437}, .status2 = .none, },
4829 .{ .cp = 0x10410, .status = .mapped, .mapping = &.{0x10438}, .status2 = .none, },
4830 .{ .cp = 0x10411, .status = .mapped, .mapping = &.{0x10439}, .status2 = .none, },
4831 .{ .cp = 0x10412, .status = .mapped, .mapping = &.{0x1043A}, .status2 = .none, },
4832 .{ .cp = 0x10413, .status = .mapped, .mapping = &.{0x1043B}, .status2 = .none, },
4833 .{ .cp = 0x10414, .status = .mapped, .mapping = &.{0x1043C}, .status2 = .none, },
4834 .{ .cp = 0x10415, .status = .mapped, .mapping = &.{0x1043D}, .status2 = .none, },
4835 .{ .cp = 0x10416, .status = .mapped, .mapping = &.{0x1043E}, .status2 = .none, },
4836 .{ .cp = 0x10417, .status = .mapped, .mapping = &.{0x1043F}, .status2 = .none, },
4837 .{ .cp = 0x10418, .status = .mapped, .mapping = &.{0x10440}, .status2 = .none, },
4838 .{ .cp = 0x10419, .status = .mapped, .mapping = &.{0x10441}, .status2 = .none, },
4839 .{ .cp = 0x1041A, .status = .mapped, .mapping = &.{0x10442}, .status2 = .none, },
4840 .{ .cp = 0x1041B, .status = .mapped, .mapping = &.{0x10443}, .status2 = .none, },
4841 .{ .cp = 0x1041C, .status = .mapped, .mapping = &.{0x10444}, .status2 = .none, },
4842 .{ .cp = 0x1041D, .status = .mapped, .mapping = &.{0x10445}, .status2 = .none, },
4843 .{ .cp = 0x1041E, .status = .mapped, .mapping = &.{0x10446}, .status2 = .none, },
4844 .{ .cp = 0x1041F, .status = .mapped, .mapping = &.{0x10447}, .status2 = .none, },
4845 .{ .cp = 0x10420, .status = .mapped, .mapping = &.{0x10448}, .status2 = .none, },
4846 .{ .cp = 0x10421, .status = .mapped, .mapping = &.{0x10449}, .status2 = .none, },
4847 .{ .cp = 0x10422, .status = .mapped, .mapping = &.{0x1044A}, .status2 = .none, },
4848 .{ .cp = 0x10423, .status = .mapped, .mapping = &.{0x1044B}, .status2 = .none, },
4849 .{ .cp = 0x10424, .status = .mapped, .mapping = &.{0x1044C}, .status2 = .none, },
4850 .{ .cp = 0x10425, .status = .mapped, .mapping = &.{0x1044D}, .status2 = .none, },
4851 .{ .cp = 0x10426, .status = .mapped, .mapping = &.{0x1044E}, .status2 = .none, },
4852 .{ .cp = 0x10427, .status = .mapped, .mapping = &.{0x1044F}, .status2 = .none, },
4853 .{ .cp = 0x104B0, .status = .mapped, .mapping = &.{0x104D8}, .status2 = .none, },
4854 .{ .cp = 0x104B1, .status = .mapped, .mapping = &.{0x104D9}, .status2 = .none, },
4855 .{ .cp = 0x104B2, .status = .mapped, .mapping = &.{0x104DA}, .status2 = .none, },
4856 .{ .cp = 0x104B3, .status = .mapped, .mapping = &.{0x104DB}, .status2 = .none, },
4857 .{ .cp = 0x104B4, .status = .mapped, .mapping = &.{0x104DC}, .status2 = .none, },
4858 .{ .cp = 0x104B5, .status = .mapped, .mapping = &.{0x104DD}, .status2 = .none, },
4859 .{ .cp = 0x104B6, .status = .mapped, .mapping = &.{0x104DE}, .status2 = .none, },
4860 .{ .cp = 0x104B7, .status = .mapped, .mapping = &.{0x104DF}, .status2 = .none, },
4861 .{ .cp = 0x104B8, .status = .mapped, .mapping = &.{0x104E0}, .status2 = .none, },
4862 .{ .cp = 0x104B9, .status = .mapped, .mapping = &.{0x104E1}, .status2 = .none, },
4863 .{ .cp = 0x104BA, .status = .mapped, .mapping = &.{0x104E2}, .status2 = .none, },
4864 .{ .cp = 0x104BB, .status = .mapped, .mapping = &.{0x104E3}, .status2 = .none, },
4865 .{ .cp = 0x104BC, .status = .mapped, .mapping = &.{0x104E4}, .status2 = .none, },
4866 .{ .cp = 0x104BD, .status = .mapped, .mapping = &.{0x104E5}, .status2 = .none, },
4867 .{ .cp = 0x104BE, .status = .mapped, .mapping = &.{0x104E6}, .status2 = .none, },
4868 .{ .cp = 0x104BF, .status = .mapped, .mapping = &.{0x104E7}, .status2 = .none, },
4869 .{ .cp = 0x104C0, .status = .mapped, .mapping = &.{0x104E8}, .status2 = .none, },
4870 .{ .cp = 0x104C1, .status = .mapped, .mapping = &.{0x104E9}, .status2 = .none, },
4871 .{ .cp = 0x104C2, .status = .mapped, .mapping = &.{0x104EA}, .status2 = .none, },
4872 .{ .cp = 0x104C3, .status = .mapped, .mapping = &.{0x104EB}, .status2 = .none, },
4873 .{ .cp = 0x104C4, .status = .mapped, .mapping = &.{0x104EC}, .status2 = .none, },
4874 .{ .cp = 0x104C5, .status = .mapped, .mapping = &.{0x104ED}, .status2 = .none, },
4875 .{ .cp = 0x104C6, .status = .mapped, .mapping = &.{0x104EE}, .status2 = .none, },
4876 .{ .cp = 0x104C7, .status = .mapped, .mapping = &.{0x104EF}, .status2 = .none, },
4877 .{ .cp = 0x104C8, .status = .mapped, .mapping = &.{0x104F0}, .status2 = .none, },
4878 .{ .cp = 0x104C9, .status = .mapped, .mapping = &.{0x104F1}, .status2 = .none, },
4879 .{ .cp = 0x104CA, .status = .mapped, .mapping = &.{0x104F2}, .status2 = .none, },
4880 .{ .cp = 0x104CB, .status = .mapped, .mapping = &.{0x104F3}, .status2 = .none, },
4881 .{ .cp = 0x104CC, .status = .mapped, .mapping = &.{0x104F4}, .status2 = .none, },
4882 .{ .cp = 0x104CD, .status = .mapped, .mapping = &.{0x104F5}, .status2 = .none, },
4883 .{ .cp = 0x104CE, .status = .mapped, .mapping = &.{0x104F6}, .status2 = .none, },
4884 .{ .cp = 0x104CF, .status = .mapped, .mapping = &.{0x104F7}, .status2 = .none, },
4885 .{ .cp = 0x104D0, .status = .mapped, .mapping = &.{0x104F8}, .status2 = .none, },
4886 .{ .cp = 0x104D1, .status = .mapped, .mapping = &.{0x104F9}, .status2 = .none, },
4887 .{ .cp = 0x104D2, .status = .mapped, .mapping = &.{0x104FA}, .status2 = .none, },
4888 .{ .cp = 0x104D3, .status = .mapped, .mapping = &.{0x104FB}, .status2 = .none, },
4889 .{ .cp = 0x1056F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
4890 .{ .cp = 0x10570, .status = .mapped, .mapping = &.{0x10597}, .status2 = .none, },
4891 .{ .cp = 0x10571, .status = .mapped, .mapping = &.{0x10598}, .status2 = .none, },
4892 .{ .cp = 0x10572, .status = .mapped, .mapping = &.{0x10599}, .status2 = .none, },
4893 .{ .cp = 0x10573, .status = .mapped, .mapping = &.{0x1059A}, .status2 = .none, },
4894 .{ .cp = 0x10574, .status = .mapped, .mapping = &.{0x1059B}, .status2 = .none, },
4895 .{ .cp = 0x10575, .status = .mapped, .mapping = &.{0x1059C}, .status2 = .none, },
4896 .{ .cp = 0x10576, .status = .mapped, .mapping = &.{0x1059D}, .status2 = .none, },
4897 .{ .cp = 0x10577, .status = .mapped, .mapping = &.{0x1059E}, .status2 = .none, },
4898 .{ .cp = 0x10578, .status = .mapped, .mapping = &.{0x1059F}, .status2 = .none, },
4899 .{ .cp = 0x10579, .status = .mapped, .mapping = &.{0x105A0}, .status2 = .none, },
4900 .{ .cp = 0x1057A, .status = .mapped, .mapping = &.{0x105A1}, .status2 = .none, },
4901 .{ .cp = 0x1057B, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
4902 .{ .cp = 0x1057C, .status = .mapped, .mapping = &.{0x105A3}, .status2 = .none, },
4903 .{ .cp = 0x1057D, .status = .mapped, .mapping = &.{0x105A4}, .status2 = .none, },
4904 .{ .cp = 0x1057E, .status = .mapped, .mapping = &.{0x105A5}, .status2 = .none, },
4905 .{ .cp = 0x1057F, .status = .mapped, .mapping = &.{0x105A6}, .status2 = .none, },
4906 .{ .cp = 0x10580, .status = .mapped, .mapping = &.{0x105A7}, .status2 = .none, },
4907 .{ .cp = 0x10581, .status = .mapped, .mapping = &.{0x105A8}, .status2 = .none, },
4908 .{ .cp = 0x10582, .status = .mapped, .mapping = &.{0x105A9}, .status2 = .none, },
4909 .{ .cp = 0x10583, .status = .mapped, .mapping = &.{0x105AA}, .status2 = .none, },
4910 .{ .cp = 0x10584, .status = .mapped, .mapping = &.{0x105AB}, .status2 = .none, },
4911 .{ .cp = 0x10585, .status = .mapped, .mapping = &.{0x105AC}, .status2 = .none, },
4912 .{ .cp = 0x10586, .status = .mapped, .mapping = &.{0x105AD}, .status2 = .none, },
4913 .{ .cp = 0x10587, .status = .mapped, .mapping = &.{0x105AE}, .status2 = .none, },
4914 .{ .cp = 0x10588, .status = .mapped, .mapping = &.{0x105AF}, .status2 = .none, },
4915 .{ .cp = 0x10589, .status = .mapped, .mapping = &.{0x105B0}, .status2 = .none, },
4916 .{ .cp = 0x1058A, .status = .mapped, .mapping = &.{0x105B1}, .status2 = .none, },
4917 .{ .cp = 0x1058B, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
4918 .{ .cp = 0x1058C, .status = .mapped, .mapping = &.{0x105B3}, .status2 = .none, },
4919 .{ .cp = 0x1058D, .status = .mapped, .mapping = &.{0x105B4}, .status2 = .none, },
4920 .{ .cp = 0x1058E, .status = .mapped, .mapping = &.{0x105B5}, .status2 = .none, },
4921 .{ .cp = 0x1058F, .status = .mapped, .mapping = &.{0x105B6}, .status2 = .none, },
4922 .{ .cp = 0x10590, .status = .mapped, .mapping = &.{0x105B7}, .status2 = .none, },
4923 .{ .cp = 0x10591, .status = .mapped, .mapping = &.{0x105B8}, .status2 = .none, },
4924 .{ .cp = 0x10592, .status = .mapped, .mapping = &.{0x105B9}, .status2 = .none, },
4925 .{ .cp = 0x10593, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
4926 .{ .cp = 0x10594, .status = .mapped, .mapping = &.{0x105BB}, .status2 = .none, },
4927 .{ .cp = 0x10595, .status = .mapped, .mapping = &.{0x105BC}, .status2 = .none, },
4928 .{ .cp = 0x10596, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
4929 .{ .cp = 0x105A2, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
4930 .{ .cp = 0x105B2, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
4931 .{ .cp = 0x105BA, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
4932 .{ .cp = 0x10780, .status = .valid, .mapping = &.{}, .status2 = .none, },
4933 .{ .cp = 0x10781, .status = .mapped, .mapping = &.{0x02D0}, .status2 = .none, },
4934 .{ .cp = 0x10782, .status = .mapped, .mapping = &.{0x02D1}, .status2 = .none, },
4935 .{ .cp = 0x10783, .status = .mapped, .mapping = &.{0x00E6}, .status2 = .none, },
4936 .{ .cp = 0x10784, .status = .mapped, .mapping = &.{0x0299}, .status2 = .none, },
4937 .{ .cp = 0x10785, .status = .mapped, .mapping = &.{0x0253}, .status2 = .none, },
4938 .{ .cp = 0x10786, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
4939 .{ .cp = 0x10787, .status = .mapped, .mapping = &.{0x02A3}, .status2 = .none, },
4940 .{ .cp = 0x10788, .status = .mapped, .mapping = &.{0xAB66}, .status2 = .none, },
4941 .{ .cp = 0x10789, .status = .mapped, .mapping = &.{0x02A5}, .status2 = .none, },
4942 .{ .cp = 0x1078A, .status = .mapped, .mapping = &.{0x02A4}, .status2 = .none, },
4943 .{ .cp = 0x1078B, .status = .mapped, .mapping = &.{0x0256}, .status2 = .none, },
4944 .{ .cp = 0x1078C, .status = .mapped, .mapping = &.{0x0257}, .status2 = .none, },
4945 .{ .cp = 0x1078D, .status = .mapped, .mapping = &.{0x1D91}, .status2 = .none, },
4946 .{ .cp = 0x1078E, .status = .mapped, .mapping = &.{0x0258}, .status2 = .none, },
4947 .{ .cp = 0x1078F, .status = .mapped, .mapping = &.{0x025E}, .status2 = .none, },
4948 .{ .cp = 0x10790, .status = .mapped, .mapping = &.{0x02A9}, .status2 = .none, },
4949 .{ .cp = 0x10791, .status = .mapped, .mapping = &.{0x0264}, .status2 = .none, },
4950 .{ .cp = 0x10792, .status = .mapped, .mapping = &.{0x0262}, .status2 = .none, },
4951 .{ .cp = 0x10793, .status = .mapped, .mapping = &.{0x0260}, .status2 = .none, },
4952 .{ .cp = 0x10794, .status = .mapped, .mapping = &.{0x029B}, .status2 = .none, },
4953 .{ .cp = 0x10795, .status = .mapped, .mapping = &.{0x0127}, .status2 = .none, },
4954 .{ .cp = 0x10796, .status = .mapped, .mapping = &.{0x029C}, .status2 = .none, },
4955 .{ .cp = 0x10797, .status = .mapped, .mapping = &.{0x0267}, .status2 = .none, },
4956 .{ .cp = 0x10798, .status = .mapped, .mapping = &.{0x0284}, .status2 = .none, },
4957 .{ .cp = 0x10799, .status = .mapped, .mapping = &.{0x02AA}, .status2 = .none, },
4958 .{ .cp = 0x1079A, .status = .mapped, .mapping = &.{0x02AB}, .status2 = .none, },
4959 .{ .cp = 0x1079B, .status = .mapped, .mapping = &.{0x026C}, .status2 = .none, },
4960 .{ .cp = 0x1079C, .status = .mapped, .mapping = &.{0x1DF04}, .status2 = .none, },
4961 .{ .cp = 0x1079D, .status = .mapped, .mapping = &.{0xA78E}, .status2 = .none, },
4962 .{ .cp = 0x1079E, .status = .mapped, .mapping = &.{0x026E}, .status2 = .none, },
4963 .{ .cp = 0x1079F, .status = .mapped, .mapping = &.{0x1DF05}, .status2 = .none, },
4964 .{ .cp = 0x107A0, .status = .mapped, .mapping = &.{0x028E}, .status2 = .none, },
4965 .{ .cp = 0x107A1, .status = .mapped, .mapping = &.{0x1DF06}, .status2 = .none, },
4966 .{ .cp = 0x107A2, .status = .mapped, .mapping = &.{0x00F8}, .status2 = .none, },
4967 .{ .cp = 0x107A3, .status = .mapped, .mapping = &.{0x0276}, .status2 = .none, },
4968 .{ .cp = 0x107A4, .status = .mapped, .mapping = &.{0x0277}, .status2 = .none, },
4969 .{ .cp = 0x107A5, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, },
4970 .{ .cp = 0x107A6, .status = .mapped, .mapping = &.{0x027A}, .status2 = .none, },
4971 .{ .cp = 0x107A7, .status = .mapped, .mapping = &.{0x1DF08}, .status2 = .none, },
4972 .{ .cp = 0x107A8, .status = .mapped, .mapping = &.{0x027D}, .status2 = .none, },
4973 .{ .cp = 0x107A9, .status = .mapped, .mapping = &.{0x027E}, .status2 = .none, },
4974 .{ .cp = 0x107AA, .status = .mapped, .mapping = &.{0x0280}, .status2 = .none, },
4975 .{ .cp = 0x107AB, .status = .mapped, .mapping = &.{0x02A8}, .status2 = .none, },
4976 .{ .cp = 0x107AC, .status = .mapped, .mapping = &.{0x02A6}, .status2 = .none, },
4977 .{ .cp = 0x107AD, .status = .mapped, .mapping = &.{0xAB67}, .status2 = .none, },
4978 .{ .cp = 0x107AE, .status = .mapped, .mapping = &.{0x02A7}, .status2 = .none, },
4979 .{ .cp = 0x107AF, .status = .mapped, .mapping = &.{0x0288}, .status2 = .none, },
4980 .{ .cp = 0x107B0, .status = .mapped, .mapping = &.{0x2C71}, .status2 = .none, },
4981 .{ .cp = 0x107B1, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
4982 .{ .cp = 0x107B2, .status = .mapped, .mapping = &.{0x028F}, .status2 = .none, },
4983 .{ .cp = 0x107B3, .status = .mapped, .mapping = &.{0x02A1}, .status2 = .none, },
4984 .{ .cp = 0x107B4, .status = .mapped, .mapping = &.{0x02A2}, .status2 = .none, },
4985 .{ .cp = 0x107B5, .status = .mapped, .mapping = &.{0x0298}, .status2 = .none, },
4986 .{ .cp = 0x107B6, .status = .mapped, .mapping = &.{0x01C0}, .status2 = .none, },
4987 .{ .cp = 0x107B7, .status = .mapped, .mapping = &.{0x01C1}, .status2 = .none, },
4988 .{ .cp = 0x107B8, .status = .mapped, .mapping = &.{0x01C2}, .status2 = .none, },
4989 .{ .cp = 0x107B9, .status = .mapped, .mapping = &.{0x1DF0A}, .status2 = .none, },
4990 .{ .cp = 0x107BA, .status = .mapped, .mapping = &.{0x1DF1E}, .status2 = .none, },
4991 .{ .cp = 0x10808, .status = .valid, .mapping = &.{}, .status2 = .none, },
4992 .{ .cp = 0x10809, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
4993 .{ .cp = 0x10836, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
4994 .{ .cp = 0x1083C, .status = .valid, .mapping = &.{}, .status2 = .none, },
4995 .{ .cp = 0x1083F, .status = .valid, .mapping = &.{}, .status2 = .none, },
4996 .{ .cp = 0x10856, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
4997 .{ .cp = 0x108F3, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
4998 .{ .cp = 0x1091F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
4999 .{ .cp = 0x1093F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
5000 .{ .cp = 0x10A04, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
5001 .{ .cp = 0x10A14, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
5002 .{ .cp = 0x10A18, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
5003 .{ .cp = 0x10A3F, .status = .valid, .mapping = &.{}, .status2 = .none, },
5004 .{ .cp = 0x10A48, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
5005 .{ .cp = 0x10AC8, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
5006 .{ .cp = 0x10C80, .status = .mapped, .mapping = &.{0x10CC0}, .status2 = .none, },
5007 .{ .cp = 0x10C81, .status = .mapped, .mapping = &.{0x10CC1}, .status2 = .none, },
5008 .{ .cp = 0x10C82, .status = .mapped, .mapping = &.{0x10CC2}, .status2 = .none, },
5009 .{ .cp = 0x10C83, .status = .mapped, .mapping = &.{0x10CC3}, .status2 = .none, },
5010 .{ .cp = 0x10C84, .status = .mapped, .mapping = &.{0x10CC4}, .status2 = .none, },
5011 .{ .cp = 0x10C85, .status = .mapped, .mapping = &.{0x10CC5}, .status2 = .none, },
5012 .{ .cp = 0x10C86, .status = .mapped, .mapping = &.{0x10CC6}, .status2 = .none, },
5013 .{ .cp = 0x10C87, .status = .mapped, .mapping = &.{0x10CC7}, .status2 = .none, },
5014 .{ .cp = 0x10C88, .status = .mapped, .mapping = &.{0x10CC8}, .status2 = .none, },
5015 .{ .cp = 0x10C89, .status = .mapped, .mapping = &.{0x10CC9}, .status2 = .none, },
5016 .{ .cp = 0x10C8A, .status = .mapped, .mapping = &.{0x10CCA}, .status2 = .none, },
5017 .{ .cp = 0x10C8B, .status = .mapped, .mapping = &.{0x10CCB}, .status2 = .none, },
5018 .{ .cp = 0x10C8C, .status = .mapped, .mapping = &.{0x10CCC}, .status2 = .none, },
5019 .{ .cp = 0x10C8D, .status = .mapped, .mapping = &.{0x10CCD}, .status2 = .none, },
5020 .{ .cp = 0x10C8E, .status = .mapped, .mapping = &.{0x10CCE}, .status2 = .none, },
5021 .{ .cp = 0x10C8F, .status = .mapped, .mapping = &.{0x10CCF}, .status2 = .none, },
5022 .{ .cp = 0x10C90, .status = .mapped, .mapping = &.{0x10CD0}, .status2 = .none, },
5023 .{ .cp = 0x10C91, .status = .mapped, .mapping = &.{0x10CD1}, .status2 = .none, },
5024 .{ .cp = 0x10C92, .status = .mapped, .mapping = &.{0x10CD2}, .status2 = .none, },
5025 .{ .cp = 0x10C93, .status = .mapped, .mapping = &.{0x10CD3}, .status2 = .none, },
5026 .{ .cp = 0x10C94, .status = .mapped, .mapping = &.{0x10CD4}, .status2 = .none, },
5027 .{ .cp = 0x10C95, .status = .mapped, .mapping = &.{0x10CD5}, .status2 = .none, },
5028 .{ .cp = 0x10C96, .status = .mapped, .mapping = &.{0x10CD6}, .status2 = .none, },
5029 .{ .cp = 0x10C97, .status = .mapped, .mapping = &.{0x10CD7}, .status2 = .none, },
5030 .{ .cp = 0x10C98, .status = .mapped, .mapping = &.{0x10CD8}, .status2 = .none, },
5031 .{ .cp = 0x10C99, .status = .mapped, .mapping = &.{0x10CD9}, .status2 = .none, },
5032 .{ .cp = 0x10C9A, .status = .mapped, .mapping = &.{0x10CDA}, .status2 = .none, },
5033 .{ .cp = 0x10C9B, .status = .mapped, .mapping = &.{0x10CDB}, .status2 = .none, },
5034 .{ .cp = 0x10C9C, .status = .mapped, .mapping = &.{0x10CDC}, .status2 = .none, },
5035 .{ .cp = 0x10C9D, .status = .mapped, .mapping = &.{0x10CDD}, .status2 = .none, },
5036 .{ .cp = 0x10C9E, .status = .mapped, .mapping = &.{0x10CDE}, .status2 = .none, },
5037 .{ .cp = 0x10C9F, .status = .mapped, .mapping = &.{0x10CDF}, .status2 = .none, },
5038 .{ .cp = 0x10CA0, .status = .mapped, .mapping = &.{0x10CE0}, .status2 = .none, },
5039 .{ .cp = 0x10CA1, .status = .mapped, .mapping = &.{0x10CE1}, .status2 = .none, },
5040 .{ .cp = 0x10CA2, .status = .mapped, .mapping = &.{0x10CE2}, .status2 = .none, },
5041 .{ .cp = 0x10CA3, .status = .mapped, .mapping = &.{0x10CE3}, .status2 = .none, },
5042 .{ .cp = 0x10CA4, .status = .mapped, .mapping = &.{0x10CE4}, .status2 = .none, },
5043 .{ .cp = 0x10CA5, .status = .mapped, .mapping = &.{0x10CE5}, .status2 = .none, },
5044 .{ .cp = 0x10CA6, .status = .mapped, .mapping = &.{0x10CE6}, .status2 = .none, },
5045 .{ .cp = 0x10CA7, .status = .mapped, .mapping = &.{0x10CE7}, .status2 = .none, },
5046 .{ .cp = 0x10CA8, .status = .mapped, .mapping = &.{0x10CE8}, .status2 = .none, },
5047 .{ .cp = 0x10CA9, .status = .mapped, .mapping = &.{0x10CE9}, .status2 = .none, },
5048 .{ .cp = 0x10CAA, .status = .mapped, .mapping = &.{0x10CEA}, .status2 = .none, },
5049 .{ .cp = 0x10CAB, .status = .mapped, .mapping = &.{0x10CEB}, .status2 = .none, },
5050 .{ .cp = 0x10CAC, .status = .mapped, .mapping = &.{0x10CEC}, .status2 = .none, },
5051 .{ .cp = 0x10CAD, .status = .mapped, .mapping = &.{0x10CED}, .status2 = .none, },
5052 .{ .cp = 0x10CAE, .status = .mapped, .mapping = &.{0x10CEE}, .status2 = .none, },
5053 .{ .cp = 0x10CAF, .status = .mapped, .mapping = &.{0x10CEF}, .status2 = .none, },
5054 .{ .cp = 0x10CB0, .status = .mapped, .mapping = &.{0x10CF0}, .status2 = .none, },
5055 .{ .cp = 0x10CB1, .status = .mapped, .mapping = &.{0x10CF1}, .status2 = .none, },
5056 .{ .cp = 0x10CB2, .status = .mapped, .mapping = &.{0x10CF2}, .status2 = .none, },
5057 .{ .cp = 0x10D50, .status = .mapped, .mapping = &.{0x10D70}, .status2 = .none, },
5058 .{ .cp = 0x10D51, .status = .mapped, .mapping = &.{0x10D71}, .status2 = .none, },
5059 .{ .cp = 0x10D52, .status = .mapped, .mapping = &.{0x10D72}, .status2 = .none, },
5060 .{ .cp = 0x10D53, .status = .mapped, .mapping = &.{0x10D73}, .status2 = .none, },
5061 .{ .cp = 0x10D54, .status = .mapped, .mapping = &.{0x10D74}, .status2 = .none, },
5062 .{ .cp = 0x10D55, .status = .mapped, .mapping = &.{0x10D75}, .status2 = .none, },
5063 .{ .cp = 0x10D56, .status = .mapped, .mapping = &.{0x10D76}, .status2 = .none, },
5064 .{ .cp = 0x10D57, .status = .mapped, .mapping = &.{0x10D77}, .status2 = .none, },
5065 .{ .cp = 0x10D58, .status = .mapped, .mapping = &.{0x10D78}, .status2 = .none, },
5066 .{ .cp = 0x10D59, .status = .mapped, .mapping = &.{0x10D79}, .status2 = .none, },
5067 .{ .cp = 0x10D5A, .status = .mapped, .mapping = &.{0x10D7A}, .status2 = .none, },
5068 .{ .cp = 0x10D5B, .status = .mapped, .mapping = &.{0x10D7B}, .status2 = .none, },
5069 .{ .cp = 0x10D5C, .status = .mapped, .mapping = &.{0x10D7C}, .status2 = .none, },
5070 .{ .cp = 0x10D5D, .status = .mapped, .mapping = &.{0x10D7D}, .status2 = .none, },
5071 .{ .cp = 0x10D5E, .status = .mapped, .mapping = &.{0x10D7E}, .status2 = .none, },
5072 .{ .cp = 0x10D5F, .status = .mapped, .mapping = &.{0x10D7F}, .status2 = .none, },
5073 .{ .cp = 0x10D60, .status = .mapped, .mapping = &.{0x10D80}, .status2 = .none, },
5074 .{ .cp = 0x10D61, .status = .mapped, .mapping = &.{0x10D81}, .status2 = .none, },
5075 .{ .cp = 0x10D62, .status = .mapped, .mapping = &.{0x10D82}, .status2 = .none, },
5076 .{ .cp = 0x10D63, .status = .mapped, .mapping = &.{0x10D83}, .status2 = .none, },
5077 .{ .cp = 0x10D64, .status = .mapped, .mapping = &.{0x10D84}, .status2 = .none, },
5078 .{ .cp = 0x10D65, .status = .mapped, .mapping = &.{0x10D85}, .status2 = .none, },
5079 .{ .cp = 0x10D6E, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
5080 .{ .cp = 0x10E7F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
5081 .{ .cp = 0x10EAA, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
5082 .{ .cp = 0x10EAD, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
5083 .{ .cp = 0x10EFC, .status = .valid, .mapping = &.{}, .status2 = .none, },
5084 .{ .cp = 0x10F27, .status = .valid, .mapping = &.{}, .status2 = .none, },
5085 .{ .cp = 0x1107F, .status = .valid, .mapping = &.{}, .status2 = .none, },
5086 .{ .cp = 0x110BD, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
5087 .{ .cp = 0x110C2, .status = .valid, .mapping = &.{}, .status2 = .none, },
5088 .{ .cp = 0x110CD, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
5089 .{ .cp = 0x11135, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
5090 .{ .cp = 0x11147, .status = .valid, .mapping = &.{}, .status2 = .none, },
5091 .{ .cp = 0x11176, .status = .valid, .mapping = &.{}, .status2 = .none, },
5092 .{ .cp = 0x111CD, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
5093 .{ .cp = 0x111DA, .status = .valid, .mapping = &.{}, .status2 = .none, },
5094 .{ .cp = 0x111DB, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
5095 .{ .cp = 0x111DC, .status = .valid, .mapping = &.{}, .status2 = .none, },
5096 .{ .cp = 0x111E0, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
5097 .{ .cp = 0x11212, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
5098 .{ .cp = 0x1123E, .status = .valid, .mapping = &.{}, .status2 = .none, },
5099 .{ .cp = 0x11287, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
5100 .{ .cp = 0x11288, .status = .valid, .mapping = &.{}, .status2 = .none, },
5101 .{ .cp = 0x11289, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
5102 .{ .cp = 0x1128E, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
5103 .{ .cp = 0x1129E, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
5104 .{ .cp = 0x112A9, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
5105 .{ .cp = 0x11300, .status = .valid, .mapping = &.{}, .status2 = .none, },
5106 .{ .cp = 0x11304, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
5107 .{ .cp = 0x11329, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
5108 .{ .cp = 0x11331, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
5109 .{ .cp = 0x11334, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
5110 .{ .cp = 0x1133A, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
5111 .{ .cp = 0x1133B, .status = .valid, .mapping = &.{}, .status2 = .none, },
5112 .{ .cp = 0x11350, .status = .valid, .mapping = &.{}, .status2 = .none, },
5113 .{ .cp = 0x11357, .status = .valid, .mapping = &.{}, .status2 = .none, },
5114 .{ .cp = 0x1138A, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
5115 .{ .cp = 0x1138B, .status = .valid, .mapping = &.{}, .status2 = .none, },
5116 .{ .cp = 0x1138E, .status = .valid, .mapping = &.{}, .status2 = .none, },
5117 .{ .cp = 0x1138F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
5118 .{ .cp = 0x113B6, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
5119 .{ .cp = 0x113C1, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
5120 .{ .cp = 0x113C2, .status = .valid, .mapping = &.{}, .status2 = .none, },
5121 .{ .cp = 0x113C5, .status = .valid, .mapping = &.{}, .status2 = .none, },
5122 .{ .cp = 0x113C6, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
5123 .{ .cp = 0x113CB, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
5124 .{ .cp = 0x113D6, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
5125 .{ .cp = 0x1145A, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
5126 .{ .cp = 0x1145B, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
5127 .{ .cp = 0x1145C, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
5128 .{ .cp = 0x1145D, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
5129 .{ .cp = 0x1145E, .status = .valid, .mapping = &.{}, .status2 = .none, },
5130 .{ .cp = 0x1145F, .status = .valid, .mapping = &.{}, .status2 = .none, },
5131 .{ .cp = 0x114C6, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
5132 .{ .cp = 0x114C7, .status = .valid, .mapping = &.{}, .status2 = .none, },
5133 .{ .cp = 0x11644, .status = .valid, .mapping = &.{}, .status2 = .none, },
5134 .{ .cp = 0x116B8, .status = .valid, .mapping = &.{}, .status2 = .none, },
5135 .{ .cp = 0x116B9, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
5136 .{ .cp = 0x1171A, .status = .valid, .mapping = &.{}, .status2 = .none, },
5137 .{ .cp = 0x1183B, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
5138 .{ .cp = 0x118A0, .status = .mapped, .mapping = &.{0x118C0}, .status2 = .none, },
5139 .{ .cp = 0x118A1, .status = .mapped, .mapping = &.{0x118C1}, .status2 = .none, },
5140 .{ .cp = 0x118A2, .status = .mapped, .mapping = &.{0x118C2}, .status2 = .none, },
5141 .{ .cp = 0x118A3, .status = .mapped, .mapping = &.{0x118C3}, .status2 = .none, },
5142 .{ .cp = 0x118A4, .status = .mapped, .mapping = &.{0x118C4}, .status2 = .none, },
5143 .{ .cp = 0x118A5, .status = .mapped, .mapping = &.{0x118C5}, .status2 = .none, },
5144 .{ .cp = 0x118A6, .status = .mapped, .mapping = &.{0x118C6}, .status2 = .none, },
5145 .{ .cp = 0x118A7, .status = .mapped, .mapping = &.{0x118C7}, .status2 = .none, },
5146 .{ .cp = 0x118A8, .status = .mapped, .mapping = &.{0x118C8}, .status2 = .none, },
5147 .{ .cp = 0x118A9, .status = .mapped, .mapping = &.{0x118C9}, .status2 = .none, },
5148 .{ .cp = 0x118AA, .status = .mapped, .mapping = &.{0x118CA}, .status2 = .none, },
5149 .{ .cp = 0x118AB, .status = .mapped, .mapping = &.{0x118CB}, .status2 = .none, },
5150 .{ .cp = 0x118AC, .status = .mapped, .mapping = &.{0x118CC}, .status2 = .none, },
5151 .{ .cp = 0x118AD, .status = .mapped, .mapping = &.{0x118CD}, .status2 = .none, },
5152 .{ .cp = 0x118AE, .status = .mapped, .mapping = &.{0x118CE}, .status2 = .none, },
5153 .{ .cp = 0x118AF, .status = .mapped, .mapping = &.{0x118CF}, .status2 = .none, },
5154 .{ .cp = 0x118B0, .status = .mapped, .mapping = &.{0x118D0}, .status2 = .none, },
5155 .{ .cp = 0x118B1, .status = .mapped, .mapping = &.{0x118D1}, .status2 = .none, },
5156 .{ .cp = 0x118B2, .status = .mapped, .mapping = &.{0x118D2}, .status2 = .none, },
5157 .{ .cp = 0x118B3, .status = .mapped, .mapping = &.{0x118D3}, .status2 = .none, },
5158 .{ .cp = 0x118B4, .status = .mapped, .mapping = &.{0x118D4}, .status2 = .none, },
5159 .{ .cp = 0x118B5, .status = .mapped, .mapping = &.{0x118D5}, .status2 = .none, },
5160 .{ .cp = 0x118B6, .status = .mapped, .mapping = &.{0x118D6}, .status2 = .none, },
5161 .{ .cp = 0x118B7, .status = .mapped, .mapping = &.{0x118D7}, .status2 = .none, },
5162 .{ .cp = 0x118B8, .status = .mapped, .mapping = &.{0x118D8}, .status2 = .none, },
5163 .{ .cp = 0x118B9, .status = .mapped, .mapping = &.{0x118D9}, .status2 = .none, },
5164 .{ .cp = 0x118BA, .status = .mapped, .mapping = &.{0x118DA}, .status2 = .none, },
5165 .{ .cp = 0x118BB, .status = .mapped, .mapping = &.{0x118DB}, .status2 = .none, },
5166 .{ .cp = 0x118BC, .status = .mapped, .mapping = &.{0x118DC}, .status2 = .none, },
5167 .{ .cp = 0x118BD, .status = .mapped, .mapping = &.{0x118DD}, .status2 = .none, },
5168 .{ .cp = 0x118BE, .status = .mapped, .mapping = &.{0x118DE}, .status2 = .none, },
5169 .{ .cp = 0x118BF, .status = .mapped, .mapping = &.{0x118DF}, .status2 = .none, },
5170 .{ .cp = 0x118FF, .status = .valid, .mapping = &.{}, .status2 = .none, },
5171 .{ .cp = 0x11909, .status = .valid, .mapping = &.{}, .status2 = .none, },
5172 .{ .cp = 0x11914, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
5173 .{ .cp = 0x11917, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
5174 .{ .cp = 0x11936, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
5175 .{ .cp = 0x119E2, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
5176 .{ .cp = 0x11A47, .status = .valid, .mapping = &.{}, .status2 = .none, },
5177 .{ .cp = 0x11A9D, .status = .valid, .mapping = &.{}, .status2 = .none, },
5178 .{ .cp = 0x11BE1, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
5179 .{ .cp = 0x11C09, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
5180 .{ .cp = 0x11C37, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
5181 .{ .cp = 0x11CA8, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
5182 .{ .cp = 0x11D07, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
5183 .{ .cp = 0x11D0A, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
5184 .{ .cp = 0x11D3A, .status = .valid, .mapping = &.{}, .status2 = .none, },
5185 .{ .cp = 0x11D3B, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
5186 .{ .cp = 0x11D3E, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
5187 .{ .cp = 0x11D66, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
5188 .{ .cp = 0x11D69, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
5189 .{ .cp = 0x11D8F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
5190 .{ .cp = 0x11D92, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
5191 .{ .cp = 0x11F11, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
5192 .{ .cp = 0x11F5A, .status = .valid, .mapping = &.{}, .status2 = .none, },
5193 .{ .cp = 0x11FB0, .status = .valid, .mapping = &.{}, .status2 = .none, },
5194 .{ .cp = 0x11FFF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
5195 .{ .cp = 0x12399, .status = .valid, .mapping = &.{}, .status2 = .none, },
5196 .{ .cp = 0x1246F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
5197 .{ .cp = 0x12474, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
5198 .{ .cp = 0x1342F, .status = .valid, .mapping = &.{}, .status2 = .none, },
5199 .{ .cp = 0x16A5F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
5200 .{ .cp = 0x16ABF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
5201 .{ .cp = 0x16AF5, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
5202 .{ .cp = 0x16B5A, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
5203 .{ .cp = 0x16B62, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
5204 .{ .cp = 0x16E40, .status = .mapped, .mapping = &.{0x16E60}, .status2 = .none, },
5205 .{ .cp = 0x16E41, .status = .mapped, .mapping = &.{0x16E61}, .status2 = .none, },
5206 .{ .cp = 0x16E42, .status = .mapped, .mapping = &.{0x16E62}, .status2 = .none, },
5207 .{ .cp = 0x16E43, .status = .mapped, .mapping = &.{0x16E63}, .status2 = .none, },
5208 .{ .cp = 0x16E44, .status = .mapped, .mapping = &.{0x16E64}, .status2 = .none, },
5209 .{ .cp = 0x16E45, .status = .mapped, .mapping = &.{0x16E65}, .status2 = .none, },
5210 .{ .cp = 0x16E46, .status = .mapped, .mapping = &.{0x16E66}, .status2 = .none, },
5211 .{ .cp = 0x16E47, .status = .mapped, .mapping = &.{0x16E67}, .status2 = .none, },
5212 .{ .cp = 0x16E48, .status = .mapped, .mapping = &.{0x16E68}, .status2 = .none, },
5213 .{ .cp = 0x16E49, .status = .mapped, .mapping = &.{0x16E69}, .status2 = .none, },
5214 .{ .cp = 0x16E4A, .status = .mapped, .mapping = &.{0x16E6A}, .status2 = .none, },
5215 .{ .cp = 0x16E4B, .status = .mapped, .mapping = &.{0x16E6B}, .status2 = .none, },
5216 .{ .cp = 0x16E4C, .status = .mapped, .mapping = &.{0x16E6C}, .status2 = .none, },
5217 .{ .cp = 0x16E4D, .status = .mapped, .mapping = &.{0x16E6D}, .status2 = .none, },
5218 .{ .cp = 0x16E4E, .status = .mapped, .mapping = &.{0x16E6E}, .status2 = .none, },
5219 .{ .cp = 0x16E4F, .status = .mapped, .mapping = &.{0x16E6F}, .status2 = .none, },
5220 .{ .cp = 0x16E50, .status = .mapped, .mapping = &.{0x16E70}, .status2 = .none, },
5221 .{ .cp = 0x16E51, .status = .mapped, .mapping = &.{0x16E71}, .status2 = .none, },
5222 .{ .cp = 0x16E52, .status = .mapped, .mapping = &.{0x16E72}, .status2 = .none, },
5223 .{ .cp = 0x16E53, .status = .mapped, .mapping = &.{0x16E73}, .status2 = .none, },
5224 .{ .cp = 0x16E54, .status = .mapped, .mapping = &.{0x16E74}, .status2 = .none, },
5225 .{ .cp = 0x16E55, .status = .mapped, .mapping = &.{0x16E75}, .status2 = .none, },
5226 .{ .cp = 0x16E56, .status = .mapped, .mapping = &.{0x16E76}, .status2 = .none, },
5227 .{ .cp = 0x16E57, .status = .mapped, .mapping = &.{0x16E77}, .status2 = .none, },
5228 .{ .cp = 0x16E58, .status = .mapped, .mapping = &.{0x16E78}, .status2 = .none, },
5229 .{ .cp = 0x16E59, .status = .mapped, .mapping = &.{0x16E79}, .status2 = .none, },
5230 .{ .cp = 0x16E5A, .status = .mapped, .mapping = &.{0x16E7A}, .status2 = .none, },
5231 .{ .cp = 0x16E5B, .status = .mapped, .mapping = &.{0x16E7B}, .status2 = .none, },
5232 .{ .cp = 0x16E5C, .status = .mapped, .mapping = &.{0x16E7C}, .status2 = .none, },
5233 .{ .cp = 0x16E5D, .status = .mapped, .mapping = &.{0x16E7D}, .status2 = .none, },
5234 .{ .cp = 0x16E5E, .status = .mapped, .mapping = &.{0x16E7E}, .status2 = .none, },
5235 .{ .cp = 0x16E5F, .status = .mapped, .mapping = &.{0x16E7F}, .status2 = .none, },
5236 .{ .cp = 0x16EA0, .status = .mapped, .mapping = &.{0x16EBB}, .status2 = .none, },
5237 .{ .cp = 0x16EA1, .status = .mapped, .mapping = &.{0x16EBC}, .status2 = .none, },
5238 .{ .cp = 0x16EA2, .status = .mapped, .mapping = &.{0x16EBD}, .status2 = .none, },
5239 .{ .cp = 0x16EA3, .status = .mapped, .mapping = &.{0x16EBE}, .status2 = .none, },
5240 .{ .cp = 0x16EA4, .status = .mapped, .mapping = &.{0x16EBF}, .status2 = .none, },
5241 .{ .cp = 0x16EA5, .status = .mapped, .mapping = &.{0x16EC0}, .status2 = .none, },
5242 .{ .cp = 0x16EA6, .status = .mapped, .mapping = &.{0x16EC1}, .status2 = .none, },
5243 .{ .cp = 0x16EA7, .status = .mapped, .mapping = &.{0x16EC2}, .status2 = .none, },
5244 .{ .cp = 0x16EA8, .status = .mapped, .mapping = &.{0x16EC3}, .status2 = .none, },
5245 .{ .cp = 0x16EA9, .status = .mapped, .mapping = &.{0x16EC4}, .status2 = .none, },
5246 .{ .cp = 0x16EAA, .status = .mapped, .mapping = &.{0x16EC5}, .status2 = .none, },
5247 .{ .cp = 0x16EAB, .status = .mapped, .mapping = &.{0x16EC6}, .status2 = .none, },
5248 .{ .cp = 0x16EAC, .status = .mapped, .mapping = &.{0x16EC7}, .status2 = .none, },
5249 .{ .cp = 0x16EAD, .status = .mapped, .mapping = &.{0x16EC8}, .status2 = .none, },
5250 .{ .cp = 0x16EAE, .status = .mapped, .mapping = &.{0x16EC9}, .status2 = .none, },
5251 .{ .cp = 0x16EAF, .status = .mapped, .mapping = &.{0x16ECA}, .status2 = .none, },
5252 .{ .cp = 0x16EB0, .status = .mapped, .mapping = &.{0x16ECB}, .status2 = .none, },
5253 .{ .cp = 0x16EB1, .status = .mapped, .mapping = &.{0x16ECC}, .status2 = .none, },
5254 .{ .cp = 0x16EB2, .status = .mapped, .mapping = &.{0x16ECD}, .status2 = .none, },
5255 .{ .cp = 0x16EB3, .status = .mapped, .mapping = &.{0x16ECE}, .status2 = .none, },
5256 .{ .cp = 0x16EB4, .status = .mapped, .mapping = &.{0x16ECF}, .status2 = .none, },
5257 .{ .cp = 0x16EB5, .status = .mapped, .mapping = &.{0x16ED0}, .status2 = .none, },
5258 .{ .cp = 0x16EB6, .status = .mapped, .mapping = &.{0x16ED1}, .status2 = .none, },
5259 .{ .cp = 0x16EB7, .status = .mapped, .mapping = &.{0x16ED2}, .status2 = .none, },
5260 .{ .cp = 0x16EB8, .status = .mapped, .mapping = &.{0x16ED3}, .status2 = .none, },
5261 .{ .cp = 0x16F4F, .status = .valid, .mapping = &.{}, .status2 = .none, },
5262 .{ .cp = 0x16FE0, .status = .valid, .mapping = &.{}, .status2 = .none, },
5263 .{ .cp = 0x16FE1, .status = .valid, .mapping = &.{}, .status2 = .none, },
5264 .{ .cp = 0x16FE2, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
5265 .{ .cp = 0x16FE3, .status = .valid, .mapping = &.{}, .status2 = .none, },
5266 .{ .cp = 0x16FE4, .status = .valid, .mapping = &.{}, .status2 = .none, },
5267 .{ .cp = 0x18CFF, .status = .valid, .mapping = &.{}, .status2 = .none, },
5268 .{ .cp = 0x1AFF4, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
5269 .{ .cp = 0x1AFFC, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
5270 .{ .cp = 0x1AFFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
5271 .{ .cp = 0x1B132, .status = .valid, .mapping = &.{}, .status2 = .none, },
5272 .{ .cp = 0x1B155, .status = .valid, .mapping = &.{}, .status2 = .none, },
5273 .{ .cp = 0x1BC9C, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
5274 .{ .cp = 0x1BC9F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
5275 .{ .cp = 0x1CCD6, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, },
5276 .{ .cp = 0x1CCD7, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, },
5277 .{ .cp = 0x1CCD8, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, },
5278 .{ .cp = 0x1CCD9, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, },
5279 .{ .cp = 0x1CCDA, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, },
5280 .{ .cp = 0x1CCDB, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, },
5281 .{ .cp = 0x1CCDC, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, },
5282 .{ .cp = 0x1CCDD, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, },
5283 .{ .cp = 0x1CCDE, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, },
5284 .{ .cp = 0x1CCDF, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, },
5285 .{ .cp = 0x1CCE0, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, },
5286 .{ .cp = 0x1CCE1, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, },
5287 .{ .cp = 0x1CCE2, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, },
5288 .{ .cp = 0x1CCE3, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, },
5289 .{ .cp = 0x1CCE4, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, },
5290 .{ .cp = 0x1CCE5, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, },
5291 .{ .cp = 0x1CCE6, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, },
5292 .{ .cp = 0x1CCE7, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, },
5293 .{ .cp = 0x1CCE8, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, },
5294 .{ .cp = 0x1CCE9, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, },
5295 .{ .cp = 0x1CCEA, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, },
5296 .{ .cp = 0x1CCEB, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, },
5297 .{ .cp = 0x1CCEC, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, },
5298 .{ .cp = 0x1CCED, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, },
5299 .{ .cp = 0x1CCEE, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, },
5300 .{ .cp = 0x1CCEF, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, },
5301 .{ .cp = 0x1CCF0, .status = .mapped, .mapping = &.{0x0030}, .status2 = .none, },
5302 .{ .cp = 0x1CCF1, .status = .mapped, .mapping = &.{0x0031}, .status2 = .none, },
5303 .{ .cp = 0x1CCF2, .status = .mapped, .mapping = &.{0x0032}, .status2 = .none, },
5304 .{ .cp = 0x1CCF3, .status = .mapped, .mapping = &.{0x0033}, .status2 = .none, },
5305 .{ .cp = 0x1CCF4, .status = .mapped, .mapping = &.{0x0034}, .status2 = .none, },
5306 .{ .cp = 0x1CCF5, .status = .mapped, .mapping = &.{0x0035}, .status2 = .none, },
5307 .{ .cp = 0x1CCF6, .status = .mapped, .mapping = &.{0x0036}, .status2 = .none, },
5308 .{ .cp = 0x1CCF7, .status = .mapped, .mapping = &.{0x0037}, .status2 = .none, },
5309 .{ .cp = 0x1CCF8, .status = .mapped, .mapping = &.{0x0038}, .status2 = .none, },
5310 .{ .cp = 0x1CCF9, .status = .mapped, .mapping = &.{0x0039}, .status2 = .none, },
5311 .{ .cp = 0x1D129, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
5312 .{ .cp = 0x1D15E, .status = .mapped, .mapping = &.{0x1D157,0x1D165}, .status2 = .none, },
5313 .{ .cp = 0x1D15F, .status = .mapped, .mapping = &.{0x1D158,0x1D165}, .status2 = .none, },
5314 .{ .cp = 0x1D160, .status = .mapped, .mapping = &.{0x1D158,0x1D165,0x1D16E}, .status2 = .none, },
5315 .{ .cp = 0x1D161, .status = .mapped, .mapping = &.{0x1D158,0x1D165,0x1D16F}, .status2 = .none, },
5316 .{ .cp = 0x1D162, .status = .mapped, .mapping = &.{0x1D158,0x1D165,0x1D170}, .status2 = .none, },
5317 .{ .cp = 0x1D163, .status = .mapped, .mapping = &.{0x1D158,0x1D165,0x1D171}, .status2 = .none, },
5318 .{ .cp = 0x1D164, .status = .mapped, .mapping = &.{0x1D158,0x1D165,0x1D172}, .status2 = .none, },
5319 .{ .cp = 0x1D1BB, .status = .mapped, .mapping = &.{0x1D1B9,0x1D165}, .status2 = .none, },
5320 .{ .cp = 0x1D1BC, .status = .mapped, .mapping = &.{0x1D1BA,0x1D165}, .status2 = .none, },
5321 .{ .cp = 0x1D1BD, .status = .mapped, .mapping = &.{0x1D1B9,0x1D165,0x1D16E}, .status2 = .none, },
5322 .{ .cp = 0x1D1BE, .status = .mapped, .mapping = &.{0x1D1BA,0x1D165,0x1D16E}, .status2 = .none, },
5323 .{ .cp = 0x1D1BF, .status = .mapped, .mapping = &.{0x1D1B9,0x1D165,0x1D16F}, .status2 = .none, },
5324 .{ .cp = 0x1D1C0, .status = .mapped, .mapping = &.{0x1D1BA,0x1D165,0x1D16F}, .status2 = .none, },
5325 .{ .cp = 0x1D400, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, },
5326 .{ .cp = 0x1D401, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, },
5327 .{ .cp = 0x1D402, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, },
5328 .{ .cp = 0x1D403, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, },
5329 .{ .cp = 0x1D404, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, },
5330 .{ .cp = 0x1D405, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, },
5331 .{ .cp = 0x1D406, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, },
5332 .{ .cp = 0x1D407, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, },
5333 .{ .cp = 0x1D408, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, },
5334 .{ .cp = 0x1D409, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, },
5335 .{ .cp = 0x1D40A, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, },
5336 .{ .cp = 0x1D40B, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, },
5337 .{ .cp = 0x1D40C, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, },
5338 .{ .cp = 0x1D40D, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, },
5339 .{ .cp = 0x1D40E, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, },
5340 .{ .cp = 0x1D40F, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, },
5341 .{ .cp = 0x1D410, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, },
5342 .{ .cp = 0x1D411, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, },
5343 .{ .cp = 0x1D412, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, },
5344 .{ .cp = 0x1D413, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, },
5345 .{ .cp = 0x1D414, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, },
5346 .{ .cp = 0x1D415, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, },
5347 .{ .cp = 0x1D416, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, },
5348 .{ .cp = 0x1D417, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, },
5349 .{ .cp = 0x1D418, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, },
5350 .{ .cp = 0x1D419, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, },
5351 .{ .cp = 0x1D41A, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, },
5352 .{ .cp = 0x1D41B, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, },
5353 .{ .cp = 0x1D41C, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, },
5354 .{ .cp = 0x1D41D, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, },
5355 .{ .cp = 0x1D41E, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, },
5356 .{ .cp = 0x1D41F, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, },
5357 .{ .cp = 0x1D420, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, },
5358 .{ .cp = 0x1D421, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, },
5359 .{ .cp = 0x1D422, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, },
5360 .{ .cp = 0x1D423, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, },
5361 .{ .cp = 0x1D424, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, },
5362 .{ .cp = 0x1D425, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, },
5363 .{ .cp = 0x1D426, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, },
5364 .{ .cp = 0x1D427, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, },
5365 .{ .cp = 0x1D428, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, },
5366 .{ .cp = 0x1D429, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, },
5367 .{ .cp = 0x1D42A, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, },
5368 .{ .cp = 0x1D42B, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, },
5369 .{ .cp = 0x1D42C, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, },
5370 .{ .cp = 0x1D42D, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, },
5371 .{ .cp = 0x1D42E, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, },
5372 .{ .cp = 0x1D42F, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, },
5373 .{ .cp = 0x1D430, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, },
5374 .{ .cp = 0x1D431, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, },
5375 .{ .cp = 0x1D432, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, },
5376 .{ .cp = 0x1D433, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, },
5377 .{ .cp = 0x1D434, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, },
5378 .{ .cp = 0x1D435, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, },
5379 .{ .cp = 0x1D436, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, },
5380 .{ .cp = 0x1D437, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, },
5381 .{ .cp = 0x1D438, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, },
5382 .{ .cp = 0x1D439, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, },
5383 .{ .cp = 0x1D43A, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, },
5384 .{ .cp = 0x1D43B, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, },
5385 .{ .cp = 0x1D43C, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, },
5386 .{ .cp = 0x1D43D, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, },
5387 .{ .cp = 0x1D43E, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, },
5388 .{ .cp = 0x1D43F, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, },
5389 .{ .cp = 0x1D440, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, },
5390 .{ .cp = 0x1D441, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, },
5391 .{ .cp = 0x1D442, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, },
5392 .{ .cp = 0x1D443, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, },
5393 .{ .cp = 0x1D444, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, },
5394 .{ .cp = 0x1D445, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, },
5395 .{ .cp = 0x1D446, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, },
5396 .{ .cp = 0x1D447, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, },
5397 .{ .cp = 0x1D448, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, },
5398 .{ .cp = 0x1D449, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, },
5399 .{ .cp = 0x1D44A, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, },
5400 .{ .cp = 0x1D44B, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, },
5401 .{ .cp = 0x1D44C, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, },
5402 .{ .cp = 0x1D44D, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, },
5403 .{ .cp = 0x1D44E, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, },
5404 .{ .cp = 0x1D44F, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, },
5405 .{ .cp = 0x1D450, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, },
5406 .{ .cp = 0x1D451, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, },
5407 .{ .cp = 0x1D452, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, },
5408 .{ .cp = 0x1D453, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, },
5409 .{ .cp = 0x1D454, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, },
5410 .{ .cp = 0x1D455, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
5411 .{ .cp = 0x1D456, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, },
5412 .{ .cp = 0x1D457, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, },
5413 .{ .cp = 0x1D458, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, },
5414 .{ .cp = 0x1D459, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, },
5415 .{ .cp = 0x1D45A, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, },
5416 .{ .cp = 0x1D45B, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, },
5417 .{ .cp = 0x1D45C, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, },
5418 .{ .cp = 0x1D45D, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, },
5419 .{ .cp = 0x1D45E, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, },
5420 .{ .cp = 0x1D45F, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, },
5421 .{ .cp = 0x1D460, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, },
5422 .{ .cp = 0x1D461, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, },
5423 .{ .cp = 0x1D462, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, },
5424 .{ .cp = 0x1D463, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, },
5425 .{ .cp = 0x1D464, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, },
5426 .{ .cp = 0x1D465, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, },
5427 .{ .cp = 0x1D466, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, },
5428 .{ .cp = 0x1D467, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, },
5429 .{ .cp = 0x1D468, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, },
5430 .{ .cp = 0x1D469, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, },
5431 .{ .cp = 0x1D46A, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, },
5432 .{ .cp = 0x1D46B, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, },
5433 .{ .cp = 0x1D46C, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, },
5434 .{ .cp = 0x1D46D, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, },
5435 .{ .cp = 0x1D46E, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, },
5436 .{ .cp = 0x1D46F, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, },
5437 .{ .cp = 0x1D470, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, },
5438 .{ .cp = 0x1D471, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, },
5439 .{ .cp = 0x1D472, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, },
5440 .{ .cp = 0x1D473, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, },
5441 .{ .cp = 0x1D474, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, },
5442 .{ .cp = 0x1D475, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, },
5443 .{ .cp = 0x1D476, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, },
5444 .{ .cp = 0x1D477, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, },
5445 .{ .cp = 0x1D478, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, },
5446 .{ .cp = 0x1D479, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, },
5447 .{ .cp = 0x1D47A, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, },
5448 .{ .cp = 0x1D47B, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, },
5449 .{ .cp = 0x1D47C, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, },
5450 .{ .cp = 0x1D47D, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, },
5451 .{ .cp = 0x1D47E, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, },
5452 .{ .cp = 0x1D47F, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, },
5453 .{ .cp = 0x1D480, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, },
5454 .{ .cp = 0x1D481, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, },
5455 .{ .cp = 0x1D482, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, },
5456 .{ .cp = 0x1D483, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, },
5457 .{ .cp = 0x1D484, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, },
5458 .{ .cp = 0x1D485, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, },
5459 .{ .cp = 0x1D486, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, },
5460 .{ .cp = 0x1D487, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, },
5461 .{ .cp = 0x1D488, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, },
5462 .{ .cp = 0x1D489, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, },
5463 .{ .cp = 0x1D48A, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, },
5464 .{ .cp = 0x1D48B, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, },
5465 .{ .cp = 0x1D48C, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, },
5466 .{ .cp = 0x1D48D, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, },
5467 .{ .cp = 0x1D48E, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, },
5468 .{ .cp = 0x1D48F, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, },
5469 .{ .cp = 0x1D490, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, },
5470 .{ .cp = 0x1D491, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, },
5471 .{ .cp = 0x1D492, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, },
5472 .{ .cp = 0x1D493, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, },
5473 .{ .cp = 0x1D494, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, },
5474 .{ .cp = 0x1D495, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, },
5475 .{ .cp = 0x1D496, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, },
5476 .{ .cp = 0x1D497, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, },
5477 .{ .cp = 0x1D498, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, },
5478 .{ .cp = 0x1D499, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, },
5479 .{ .cp = 0x1D49A, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, },
5480 .{ .cp = 0x1D49B, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, },
5481 .{ .cp = 0x1D49C, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, },
5482 .{ .cp = 0x1D49D, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
5483 .{ .cp = 0x1D49E, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, },
5484 .{ .cp = 0x1D49F, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, },
5485 .{ .cp = 0x1D4A2, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, },
5486 .{ .cp = 0x1D4A5, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, },
5487 .{ .cp = 0x1D4A6, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, },
5488 .{ .cp = 0x1D4A9, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, },
5489 .{ .cp = 0x1D4AA, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, },
5490 .{ .cp = 0x1D4AB, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, },
5491 .{ .cp = 0x1D4AC, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, },
5492 .{ .cp = 0x1D4AD, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
5493 .{ .cp = 0x1D4AE, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, },
5494 .{ .cp = 0x1D4AF, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, },
5495 .{ .cp = 0x1D4B0, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, },
5496 .{ .cp = 0x1D4B1, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, },
5497 .{ .cp = 0x1D4B2, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, },
5498 .{ .cp = 0x1D4B3, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, },
5499 .{ .cp = 0x1D4B4, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, },
5500 .{ .cp = 0x1D4B5, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, },
5501 .{ .cp = 0x1D4B6, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, },
5502 .{ .cp = 0x1D4B7, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, },
5503 .{ .cp = 0x1D4B8, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, },
5504 .{ .cp = 0x1D4B9, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, },
5505 .{ .cp = 0x1D4BA, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
5506 .{ .cp = 0x1D4BB, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, },
5507 .{ .cp = 0x1D4BC, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
5508 .{ .cp = 0x1D4BD, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, },
5509 .{ .cp = 0x1D4BE, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, },
5510 .{ .cp = 0x1D4BF, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, },
5511 .{ .cp = 0x1D4C0, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, },
5512 .{ .cp = 0x1D4C1, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, },
5513 .{ .cp = 0x1D4C2, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, },
5514 .{ .cp = 0x1D4C3, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, },
5515 .{ .cp = 0x1D4C4, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
5516 .{ .cp = 0x1D4C5, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, },
5517 .{ .cp = 0x1D4C6, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, },
5518 .{ .cp = 0x1D4C7, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, },
5519 .{ .cp = 0x1D4C8, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, },
5520 .{ .cp = 0x1D4C9, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, },
5521 .{ .cp = 0x1D4CA, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, },
5522 .{ .cp = 0x1D4CB, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, },
5523 .{ .cp = 0x1D4CC, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, },
5524 .{ .cp = 0x1D4CD, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, },
5525 .{ .cp = 0x1D4CE, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, },
5526 .{ .cp = 0x1D4CF, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, },
5527 .{ .cp = 0x1D4D0, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, },
5528 .{ .cp = 0x1D4D1, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, },
5529 .{ .cp = 0x1D4D2, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, },
5530 .{ .cp = 0x1D4D3, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, },
5531 .{ .cp = 0x1D4D4, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, },
5532 .{ .cp = 0x1D4D5, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, },
5533 .{ .cp = 0x1D4D6, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, },
5534 .{ .cp = 0x1D4D7, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, },
5535 .{ .cp = 0x1D4D8, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, },
5536 .{ .cp = 0x1D4D9, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, },
5537 .{ .cp = 0x1D4DA, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, },
5538 .{ .cp = 0x1D4DB, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, },
5539 .{ .cp = 0x1D4DC, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, },
5540 .{ .cp = 0x1D4DD, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, },
5541 .{ .cp = 0x1D4DE, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, },
5542 .{ .cp = 0x1D4DF, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, },
5543 .{ .cp = 0x1D4E0, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, },
5544 .{ .cp = 0x1D4E1, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, },
5545 .{ .cp = 0x1D4E2, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, },
5546 .{ .cp = 0x1D4E3, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, },
5547 .{ .cp = 0x1D4E4, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, },
5548 .{ .cp = 0x1D4E5, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, },
5549 .{ .cp = 0x1D4E6, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, },
5550 .{ .cp = 0x1D4E7, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, },
5551 .{ .cp = 0x1D4E8, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, },
5552 .{ .cp = 0x1D4E9, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, },
5553 .{ .cp = 0x1D4EA, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, },
5554 .{ .cp = 0x1D4EB, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, },
5555 .{ .cp = 0x1D4EC, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, },
5556 .{ .cp = 0x1D4ED, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, },
5557 .{ .cp = 0x1D4EE, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, },
5558 .{ .cp = 0x1D4EF, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, },
5559 .{ .cp = 0x1D4F0, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, },
5560 .{ .cp = 0x1D4F1, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, },
5561 .{ .cp = 0x1D4F2, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, },
5562 .{ .cp = 0x1D4F3, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, },
5563 .{ .cp = 0x1D4F4, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, },
5564 .{ .cp = 0x1D4F5, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, },
5565 .{ .cp = 0x1D4F6, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, },
5566 .{ .cp = 0x1D4F7, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, },
5567 .{ .cp = 0x1D4F8, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, },
5568 .{ .cp = 0x1D4F9, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, },
5569 .{ .cp = 0x1D4FA, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, },
5570 .{ .cp = 0x1D4FB, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, },
5571 .{ .cp = 0x1D4FC, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, },
5572 .{ .cp = 0x1D4FD, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, },
5573 .{ .cp = 0x1D4FE, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, },
5574 .{ .cp = 0x1D4FF, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, },
5575 .{ .cp = 0x1D500, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, },
5576 .{ .cp = 0x1D501, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, },
5577 .{ .cp = 0x1D502, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, },
5578 .{ .cp = 0x1D503, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, },
5579 .{ .cp = 0x1D504, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, },
5580 .{ .cp = 0x1D505, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, },
5581 .{ .cp = 0x1D506, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
5582 .{ .cp = 0x1D507, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, },
5583 .{ .cp = 0x1D508, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, },
5584 .{ .cp = 0x1D509, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, },
5585 .{ .cp = 0x1D50A, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, },
5586 .{ .cp = 0x1D50D, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, },
5587 .{ .cp = 0x1D50E, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, },
5588 .{ .cp = 0x1D50F, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, },
5589 .{ .cp = 0x1D510, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, },
5590 .{ .cp = 0x1D511, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, },
5591 .{ .cp = 0x1D512, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, },
5592 .{ .cp = 0x1D513, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, },
5593 .{ .cp = 0x1D514, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, },
5594 .{ .cp = 0x1D515, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
5595 .{ .cp = 0x1D516, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, },
5596 .{ .cp = 0x1D517, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, },
5597 .{ .cp = 0x1D518, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, },
5598 .{ .cp = 0x1D519, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, },
5599 .{ .cp = 0x1D51A, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, },
5600 .{ .cp = 0x1D51B, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, },
5601 .{ .cp = 0x1D51C, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, },
5602 .{ .cp = 0x1D51D, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
5603 .{ .cp = 0x1D51E, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, },
5604 .{ .cp = 0x1D51F, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, },
5605 .{ .cp = 0x1D520, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, },
5606 .{ .cp = 0x1D521, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, },
5607 .{ .cp = 0x1D522, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, },
5608 .{ .cp = 0x1D523, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, },
5609 .{ .cp = 0x1D524, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, },
5610 .{ .cp = 0x1D525, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, },
5611 .{ .cp = 0x1D526, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, },
5612 .{ .cp = 0x1D527, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, },
5613 .{ .cp = 0x1D528, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, },
5614 .{ .cp = 0x1D529, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, },
5615 .{ .cp = 0x1D52A, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, },
5616 .{ .cp = 0x1D52B, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, },
5617 .{ .cp = 0x1D52C, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, },
5618 .{ .cp = 0x1D52D, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, },
5619 .{ .cp = 0x1D52E, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, },
5620 .{ .cp = 0x1D52F, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, },
5621 .{ .cp = 0x1D530, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, },
5622 .{ .cp = 0x1D531, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, },
5623 .{ .cp = 0x1D532, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, },
5624 .{ .cp = 0x1D533, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, },
5625 .{ .cp = 0x1D534, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, },
5626 .{ .cp = 0x1D535, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, },
5627 .{ .cp = 0x1D536, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, },
5628 .{ .cp = 0x1D537, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, },
5629 .{ .cp = 0x1D538, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, },
5630 .{ .cp = 0x1D539, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, },
5631 .{ .cp = 0x1D53A, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
5632 .{ .cp = 0x1D53B, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, },
5633 .{ .cp = 0x1D53C, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, },
5634 .{ .cp = 0x1D53D, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, },
5635 .{ .cp = 0x1D53E, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, },
5636 .{ .cp = 0x1D53F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
5637 .{ .cp = 0x1D540, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, },
5638 .{ .cp = 0x1D541, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, },
5639 .{ .cp = 0x1D542, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, },
5640 .{ .cp = 0x1D543, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, },
5641 .{ .cp = 0x1D544, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, },
5642 .{ .cp = 0x1D545, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
5643 .{ .cp = 0x1D546, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, },
5644 .{ .cp = 0x1D54A, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, },
5645 .{ .cp = 0x1D54B, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, },
5646 .{ .cp = 0x1D54C, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, },
5647 .{ .cp = 0x1D54D, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, },
5648 .{ .cp = 0x1D54E, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, },
5649 .{ .cp = 0x1D54F, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, },
5650 .{ .cp = 0x1D550, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, },
5651 .{ .cp = 0x1D551, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
5652 .{ .cp = 0x1D552, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, },
5653 .{ .cp = 0x1D553, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, },
5654 .{ .cp = 0x1D554, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, },
5655 .{ .cp = 0x1D555, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, },
5656 .{ .cp = 0x1D556, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, },
5657 .{ .cp = 0x1D557, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, },
5658 .{ .cp = 0x1D558, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, },
5659 .{ .cp = 0x1D559, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, },
5660 .{ .cp = 0x1D55A, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, },
5661 .{ .cp = 0x1D55B, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, },
5662 .{ .cp = 0x1D55C, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, },
5663 .{ .cp = 0x1D55D, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, },
5664 .{ .cp = 0x1D55E, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, },
5665 .{ .cp = 0x1D55F, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, },
5666 .{ .cp = 0x1D560, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, },
5667 .{ .cp = 0x1D561, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, },
5668 .{ .cp = 0x1D562, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, },
5669 .{ .cp = 0x1D563, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, },
5670 .{ .cp = 0x1D564, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, },
5671 .{ .cp = 0x1D565, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, },
5672 .{ .cp = 0x1D566, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, },
5673 .{ .cp = 0x1D567, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, },
5674 .{ .cp = 0x1D568, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, },
5675 .{ .cp = 0x1D569, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, },
5676 .{ .cp = 0x1D56A, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, },
5677 .{ .cp = 0x1D56B, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, },
5678 .{ .cp = 0x1D56C, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, },
5679 .{ .cp = 0x1D56D, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, },
5680 .{ .cp = 0x1D56E, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, },
5681 .{ .cp = 0x1D56F, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, },
5682 .{ .cp = 0x1D570, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, },
5683 .{ .cp = 0x1D571, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, },
5684 .{ .cp = 0x1D572, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, },
5685 .{ .cp = 0x1D573, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, },
5686 .{ .cp = 0x1D574, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, },
5687 .{ .cp = 0x1D575, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, },
5688 .{ .cp = 0x1D576, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, },
5689 .{ .cp = 0x1D577, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, },
5690 .{ .cp = 0x1D578, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, },
5691 .{ .cp = 0x1D579, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, },
5692 .{ .cp = 0x1D57A, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, },
5693 .{ .cp = 0x1D57B, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, },
5694 .{ .cp = 0x1D57C, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, },
5695 .{ .cp = 0x1D57D, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, },
5696 .{ .cp = 0x1D57E, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, },
5697 .{ .cp = 0x1D57F, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, },
5698 .{ .cp = 0x1D580, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, },
5699 .{ .cp = 0x1D581, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, },
5700 .{ .cp = 0x1D582, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, },
5701 .{ .cp = 0x1D583, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, },
5702 .{ .cp = 0x1D584, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, },
5703 .{ .cp = 0x1D585, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, },
5704 .{ .cp = 0x1D586, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, },
5705 .{ .cp = 0x1D587, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, },
5706 .{ .cp = 0x1D588, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, },
5707 .{ .cp = 0x1D589, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, },
5708 .{ .cp = 0x1D58A, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, },
5709 .{ .cp = 0x1D58B, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, },
5710 .{ .cp = 0x1D58C, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, },
5711 .{ .cp = 0x1D58D, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, },
5712 .{ .cp = 0x1D58E, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, },
5713 .{ .cp = 0x1D58F, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, },
5714 .{ .cp = 0x1D590, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, },
5715 .{ .cp = 0x1D591, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, },
5716 .{ .cp = 0x1D592, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, },
5717 .{ .cp = 0x1D593, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, },
5718 .{ .cp = 0x1D594, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, },
5719 .{ .cp = 0x1D595, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, },
5720 .{ .cp = 0x1D596, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, },
5721 .{ .cp = 0x1D597, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, },
5722 .{ .cp = 0x1D598, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, },
5723 .{ .cp = 0x1D599, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, },
5724 .{ .cp = 0x1D59A, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, },
5725 .{ .cp = 0x1D59B, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, },
5726 .{ .cp = 0x1D59C, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, },
5727 .{ .cp = 0x1D59D, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, },
5728 .{ .cp = 0x1D59E, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, },
5729 .{ .cp = 0x1D59F, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, },
5730 .{ .cp = 0x1D5A0, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, },
5731 .{ .cp = 0x1D5A1, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, },
5732 .{ .cp = 0x1D5A2, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, },
5733 .{ .cp = 0x1D5A3, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, },
5734 .{ .cp = 0x1D5A4, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, },
5735 .{ .cp = 0x1D5A5, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, },
5736 .{ .cp = 0x1D5A6, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, },
5737 .{ .cp = 0x1D5A7, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, },
5738 .{ .cp = 0x1D5A8, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, },
5739 .{ .cp = 0x1D5A9, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, },
5740 .{ .cp = 0x1D5AA, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, },
5741 .{ .cp = 0x1D5AB, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, },
5742 .{ .cp = 0x1D5AC, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, },
5743 .{ .cp = 0x1D5AD, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, },
5744 .{ .cp = 0x1D5AE, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, },
5745 .{ .cp = 0x1D5AF, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, },
5746 .{ .cp = 0x1D5B0, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, },
5747 .{ .cp = 0x1D5B1, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, },
5748 .{ .cp = 0x1D5B2, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, },
5749 .{ .cp = 0x1D5B3, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, },
5750 .{ .cp = 0x1D5B4, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, },
5751 .{ .cp = 0x1D5B5, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, },
5752 .{ .cp = 0x1D5B6, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, },
5753 .{ .cp = 0x1D5B7, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, },
5754 .{ .cp = 0x1D5B8, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, },
5755 .{ .cp = 0x1D5B9, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, },
5756 .{ .cp = 0x1D5BA, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, },
5757 .{ .cp = 0x1D5BB, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, },
5758 .{ .cp = 0x1D5BC, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, },
5759 .{ .cp = 0x1D5BD, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, },
5760 .{ .cp = 0x1D5BE, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, },
5761 .{ .cp = 0x1D5BF, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, },
5762 .{ .cp = 0x1D5C0, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, },
5763 .{ .cp = 0x1D5C1, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, },
5764 .{ .cp = 0x1D5C2, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, },
5765 .{ .cp = 0x1D5C3, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, },
5766 .{ .cp = 0x1D5C4, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, },
5767 .{ .cp = 0x1D5C5, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, },
5768 .{ .cp = 0x1D5C6, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, },
5769 .{ .cp = 0x1D5C7, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, },
5770 .{ .cp = 0x1D5C8, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, },
5771 .{ .cp = 0x1D5C9, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, },
5772 .{ .cp = 0x1D5CA, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, },
5773 .{ .cp = 0x1D5CB, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, },
5774 .{ .cp = 0x1D5CC, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, },
5775 .{ .cp = 0x1D5CD, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, },
5776 .{ .cp = 0x1D5CE, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, },
5777 .{ .cp = 0x1D5CF, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, },
5778 .{ .cp = 0x1D5D0, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, },
5779 .{ .cp = 0x1D5D1, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, },
5780 .{ .cp = 0x1D5D2, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, },
5781 .{ .cp = 0x1D5D3, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, },
5782 .{ .cp = 0x1D5D4, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, },
5783 .{ .cp = 0x1D5D5, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, },
5784 .{ .cp = 0x1D5D6, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, },
5785 .{ .cp = 0x1D5D7, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, },
5786 .{ .cp = 0x1D5D8, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, },
5787 .{ .cp = 0x1D5D9, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, },
5788 .{ .cp = 0x1D5DA, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, },
5789 .{ .cp = 0x1D5DB, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, },
5790 .{ .cp = 0x1D5DC, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, },
5791 .{ .cp = 0x1D5DD, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, },
5792 .{ .cp = 0x1D5DE, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, },
5793 .{ .cp = 0x1D5DF, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, },
5794 .{ .cp = 0x1D5E0, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, },
5795 .{ .cp = 0x1D5E1, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, },
5796 .{ .cp = 0x1D5E2, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, },
5797 .{ .cp = 0x1D5E3, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, },
5798 .{ .cp = 0x1D5E4, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, },
5799 .{ .cp = 0x1D5E5, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, },
5800 .{ .cp = 0x1D5E6, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, },
5801 .{ .cp = 0x1D5E7, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, },
5802 .{ .cp = 0x1D5E8, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, },
5803 .{ .cp = 0x1D5E9, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, },
5804 .{ .cp = 0x1D5EA, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, },
5805 .{ .cp = 0x1D5EB, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, },
5806 .{ .cp = 0x1D5EC, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, },
5807 .{ .cp = 0x1D5ED, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, },
5808 .{ .cp = 0x1D5EE, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, },
5809 .{ .cp = 0x1D5EF, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, },
5810 .{ .cp = 0x1D5F0, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, },
5811 .{ .cp = 0x1D5F1, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, },
5812 .{ .cp = 0x1D5F2, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, },
5813 .{ .cp = 0x1D5F3, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, },
5814 .{ .cp = 0x1D5F4, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, },
5815 .{ .cp = 0x1D5F5, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, },
5816 .{ .cp = 0x1D5F6, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, },
5817 .{ .cp = 0x1D5F7, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, },
5818 .{ .cp = 0x1D5F8, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, },
5819 .{ .cp = 0x1D5F9, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, },
5820 .{ .cp = 0x1D5FA, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, },
5821 .{ .cp = 0x1D5FB, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, },
5822 .{ .cp = 0x1D5FC, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, },
5823 .{ .cp = 0x1D5FD, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, },
5824 .{ .cp = 0x1D5FE, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, },
5825 .{ .cp = 0x1D5FF, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, },
5826 .{ .cp = 0x1D600, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, },
5827 .{ .cp = 0x1D601, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, },
5828 .{ .cp = 0x1D602, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, },
5829 .{ .cp = 0x1D603, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, },
5830 .{ .cp = 0x1D604, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, },
5831 .{ .cp = 0x1D605, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, },
5832 .{ .cp = 0x1D606, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, },
5833 .{ .cp = 0x1D607, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, },
5834 .{ .cp = 0x1D608, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, },
5835 .{ .cp = 0x1D609, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, },
5836 .{ .cp = 0x1D60A, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, },
5837 .{ .cp = 0x1D60B, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, },
5838 .{ .cp = 0x1D60C, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, },
5839 .{ .cp = 0x1D60D, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, },
5840 .{ .cp = 0x1D60E, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, },
5841 .{ .cp = 0x1D60F, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, },
5842 .{ .cp = 0x1D610, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, },
5843 .{ .cp = 0x1D611, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, },
5844 .{ .cp = 0x1D612, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, },
5845 .{ .cp = 0x1D613, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, },
5846 .{ .cp = 0x1D614, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, },
5847 .{ .cp = 0x1D615, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, },
5848 .{ .cp = 0x1D616, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, },
5849 .{ .cp = 0x1D617, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, },
5850 .{ .cp = 0x1D618, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, },
5851 .{ .cp = 0x1D619, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, },
5852 .{ .cp = 0x1D61A, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, },
5853 .{ .cp = 0x1D61B, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, },
5854 .{ .cp = 0x1D61C, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, },
5855 .{ .cp = 0x1D61D, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, },
5856 .{ .cp = 0x1D61E, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, },
5857 .{ .cp = 0x1D61F, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, },
5858 .{ .cp = 0x1D620, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, },
5859 .{ .cp = 0x1D621, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, },
5860 .{ .cp = 0x1D622, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, },
5861 .{ .cp = 0x1D623, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, },
5862 .{ .cp = 0x1D624, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, },
5863 .{ .cp = 0x1D625, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, },
5864 .{ .cp = 0x1D626, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, },
5865 .{ .cp = 0x1D627, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, },
5866 .{ .cp = 0x1D628, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, },
5867 .{ .cp = 0x1D629, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, },
5868 .{ .cp = 0x1D62A, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, },
5869 .{ .cp = 0x1D62B, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, },
5870 .{ .cp = 0x1D62C, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, },
5871 .{ .cp = 0x1D62D, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, },
5872 .{ .cp = 0x1D62E, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, },
5873 .{ .cp = 0x1D62F, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, },
5874 .{ .cp = 0x1D630, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, },
5875 .{ .cp = 0x1D631, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, },
5876 .{ .cp = 0x1D632, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, },
5877 .{ .cp = 0x1D633, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, },
5878 .{ .cp = 0x1D634, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, },
5879 .{ .cp = 0x1D635, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, },
5880 .{ .cp = 0x1D636, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, },
5881 .{ .cp = 0x1D637, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, },
5882 .{ .cp = 0x1D638, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, },
5883 .{ .cp = 0x1D639, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, },
5884 .{ .cp = 0x1D63A, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, },
5885 .{ .cp = 0x1D63B, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, },
5886 .{ .cp = 0x1D63C, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, },
5887 .{ .cp = 0x1D63D, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, },
5888 .{ .cp = 0x1D63E, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, },
5889 .{ .cp = 0x1D63F, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, },
5890 .{ .cp = 0x1D640, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, },
5891 .{ .cp = 0x1D641, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, },
5892 .{ .cp = 0x1D642, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, },
5893 .{ .cp = 0x1D643, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, },
5894 .{ .cp = 0x1D644, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, },
5895 .{ .cp = 0x1D645, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, },
5896 .{ .cp = 0x1D646, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, },
5897 .{ .cp = 0x1D647, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, },
5898 .{ .cp = 0x1D648, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, },
5899 .{ .cp = 0x1D649, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, },
5900 .{ .cp = 0x1D64A, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, },
5901 .{ .cp = 0x1D64B, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, },
5902 .{ .cp = 0x1D64C, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, },
5903 .{ .cp = 0x1D64D, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, },
5904 .{ .cp = 0x1D64E, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, },
5905 .{ .cp = 0x1D64F, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, },
5906 .{ .cp = 0x1D650, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, },
5907 .{ .cp = 0x1D651, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, },
5908 .{ .cp = 0x1D652, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, },
5909 .{ .cp = 0x1D653, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, },
5910 .{ .cp = 0x1D654, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, },
5911 .{ .cp = 0x1D655, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, },
5912 .{ .cp = 0x1D656, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, },
5913 .{ .cp = 0x1D657, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, },
5914 .{ .cp = 0x1D658, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, },
5915 .{ .cp = 0x1D659, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, },
5916 .{ .cp = 0x1D65A, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, },
5917 .{ .cp = 0x1D65B, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, },
5918 .{ .cp = 0x1D65C, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, },
5919 .{ .cp = 0x1D65D, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, },
5920 .{ .cp = 0x1D65E, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, },
5921 .{ .cp = 0x1D65F, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, },
5922 .{ .cp = 0x1D660, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, },
5923 .{ .cp = 0x1D661, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, },
5924 .{ .cp = 0x1D662, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, },
5925 .{ .cp = 0x1D663, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, },
5926 .{ .cp = 0x1D664, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, },
5927 .{ .cp = 0x1D665, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, },
5928 .{ .cp = 0x1D666, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, },
5929 .{ .cp = 0x1D667, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, },
5930 .{ .cp = 0x1D668, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, },
5931 .{ .cp = 0x1D669, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, },
5932 .{ .cp = 0x1D66A, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, },
5933 .{ .cp = 0x1D66B, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, },
5934 .{ .cp = 0x1D66C, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, },
5935 .{ .cp = 0x1D66D, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, },
5936 .{ .cp = 0x1D66E, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, },
5937 .{ .cp = 0x1D66F, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, },
5938 .{ .cp = 0x1D670, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, },
5939 .{ .cp = 0x1D671, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, },
5940 .{ .cp = 0x1D672, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, },
5941 .{ .cp = 0x1D673, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, },
5942 .{ .cp = 0x1D674, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, },
5943 .{ .cp = 0x1D675, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, },
5944 .{ .cp = 0x1D676, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, },
5945 .{ .cp = 0x1D677, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, },
5946 .{ .cp = 0x1D678, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, },
5947 .{ .cp = 0x1D679, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, },
5948 .{ .cp = 0x1D67A, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, },
5949 .{ .cp = 0x1D67B, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, },
5950 .{ .cp = 0x1D67C, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, },
5951 .{ .cp = 0x1D67D, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, },
5952 .{ .cp = 0x1D67E, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, },
5953 .{ .cp = 0x1D67F, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, },
5954 .{ .cp = 0x1D680, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, },
5955 .{ .cp = 0x1D681, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, },
5956 .{ .cp = 0x1D682, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, },
5957 .{ .cp = 0x1D683, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, },
5958 .{ .cp = 0x1D684, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, },
5959 .{ .cp = 0x1D685, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, },
5960 .{ .cp = 0x1D686, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, },
5961 .{ .cp = 0x1D687, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, },
5962 .{ .cp = 0x1D688, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, },
5963 .{ .cp = 0x1D689, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, },
5964 .{ .cp = 0x1D68A, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, },
5965 .{ .cp = 0x1D68B, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, },
5966 .{ .cp = 0x1D68C, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, },
5967 .{ .cp = 0x1D68D, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, },
5968 .{ .cp = 0x1D68E, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, },
5969 .{ .cp = 0x1D68F, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, },
5970 .{ .cp = 0x1D690, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, },
5971 .{ .cp = 0x1D691, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, },
5972 .{ .cp = 0x1D692, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, },
5973 .{ .cp = 0x1D693, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, },
5974 .{ .cp = 0x1D694, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, },
5975 .{ .cp = 0x1D695, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, },
5976 .{ .cp = 0x1D696, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, },
5977 .{ .cp = 0x1D697, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, },
5978 .{ .cp = 0x1D698, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, },
5979 .{ .cp = 0x1D699, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, },
5980 .{ .cp = 0x1D69A, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, },
5981 .{ .cp = 0x1D69B, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, },
5982 .{ .cp = 0x1D69C, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, },
5983 .{ .cp = 0x1D69D, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, },
5984 .{ .cp = 0x1D69E, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, },
5985 .{ .cp = 0x1D69F, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, },
5986 .{ .cp = 0x1D6A0, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, },
5987 .{ .cp = 0x1D6A1, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, },
5988 .{ .cp = 0x1D6A2, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, },
5989 .{ .cp = 0x1D6A3, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, },
5990 .{ .cp = 0x1D6A4, .status = .mapped, .mapping = &.{0x0131}, .status2 = .none, },
5991 .{ .cp = 0x1D6A5, .status = .mapped, .mapping = &.{0x0237}, .status2 = .none, },
5992 .{ .cp = 0x1D6A8, .status = .mapped, .mapping = &.{0x03B1}, .status2 = .none, },
5993 .{ .cp = 0x1D6A9, .status = .mapped, .mapping = &.{0x03B2}, .status2 = .none, },
5994 .{ .cp = 0x1D6AA, .status = .mapped, .mapping = &.{0x03B3}, .status2 = .none, },
5995 .{ .cp = 0x1D6AB, .status = .mapped, .mapping = &.{0x03B4}, .status2 = .none, },
5996 .{ .cp = 0x1D6AC, .status = .mapped, .mapping = &.{0x03B5}, .status2 = .none, },
5997 .{ .cp = 0x1D6AD, .status = .mapped, .mapping = &.{0x03B6}, .status2 = .none, },
5998 .{ .cp = 0x1D6AE, .status = .mapped, .mapping = &.{0x03B7}, .status2 = .none, },
5999 .{ .cp = 0x1D6AF, .status = .mapped, .mapping = &.{0x03B8}, .status2 = .none, },
6000 .{ .cp = 0x1D6B0, .status = .mapped, .mapping = &.{0x03B9}, .status2 = .none, },
6001 .{ .cp = 0x1D6B1, .status = .mapped, .mapping = &.{0x03BA}, .status2 = .none, },
6002 .{ .cp = 0x1D6B2, .status = .mapped, .mapping = &.{0x03BB}, .status2 = .none, },
6003 .{ .cp = 0x1D6B3, .status = .mapped, .mapping = &.{0x03BC}, .status2 = .none, },
6004 .{ .cp = 0x1D6B4, .status = .mapped, .mapping = &.{0x03BD}, .status2 = .none, },
6005 .{ .cp = 0x1D6B5, .status = .mapped, .mapping = &.{0x03BE}, .status2 = .none, },
6006 .{ .cp = 0x1D6B6, .status = .mapped, .mapping = &.{0x03BF}, .status2 = .none, },
6007 .{ .cp = 0x1D6B7, .status = .mapped, .mapping = &.{0x03C0}, .status2 = .none, },
6008 .{ .cp = 0x1D6B8, .status = .mapped, .mapping = &.{0x03C1}, .status2 = .none, },
6009 .{ .cp = 0x1D6B9, .status = .mapped, .mapping = &.{0x03B8}, .status2 = .none, },
6010 .{ .cp = 0x1D6BA, .status = .mapped, .mapping = &.{0x03C3}, .status2 = .none, },
6011 .{ .cp = 0x1D6BB, .status = .mapped, .mapping = &.{0x03C4}, .status2 = .none, },
6012 .{ .cp = 0x1D6BC, .status = .mapped, .mapping = &.{0x03C5}, .status2 = .none, },
6013 .{ .cp = 0x1D6BD, .status = .mapped, .mapping = &.{0x03C6}, .status2 = .none, },
6014 .{ .cp = 0x1D6BE, .status = .mapped, .mapping = &.{0x03C7}, .status2 = .none, },
6015 .{ .cp = 0x1D6BF, .status = .mapped, .mapping = &.{0x03C8}, .status2 = .none, },
6016 .{ .cp = 0x1D6C0, .status = .mapped, .mapping = &.{0x03C9}, .status2 = .none, },
6017 .{ .cp = 0x1D6C1, .status = .mapped, .mapping = &.{0x2207}, .status2 = .none, },
6018 .{ .cp = 0x1D6C2, .status = .mapped, .mapping = &.{0x03B1}, .status2 = .none, },
6019 .{ .cp = 0x1D6C3, .status = .mapped, .mapping = &.{0x03B2}, .status2 = .none, },
6020 .{ .cp = 0x1D6C4, .status = .mapped, .mapping = &.{0x03B3}, .status2 = .none, },
6021 .{ .cp = 0x1D6C5, .status = .mapped, .mapping = &.{0x03B4}, .status2 = .none, },
6022 .{ .cp = 0x1D6C6, .status = .mapped, .mapping = &.{0x03B5}, .status2 = .none, },
6023 .{ .cp = 0x1D6C7, .status = .mapped, .mapping = &.{0x03B6}, .status2 = .none, },
6024 .{ .cp = 0x1D6C8, .status = .mapped, .mapping = &.{0x03B7}, .status2 = .none, },
6025 .{ .cp = 0x1D6C9, .status = .mapped, .mapping = &.{0x03B8}, .status2 = .none, },
6026 .{ .cp = 0x1D6CA, .status = .mapped, .mapping = &.{0x03B9}, .status2 = .none, },
6027 .{ .cp = 0x1D6CB, .status = .mapped, .mapping = &.{0x03BA}, .status2 = .none, },
6028 .{ .cp = 0x1D6CC, .status = .mapped, .mapping = &.{0x03BB}, .status2 = .none, },
6029 .{ .cp = 0x1D6CD, .status = .mapped, .mapping = &.{0x03BC}, .status2 = .none, },
6030 .{ .cp = 0x1D6CE, .status = .mapped, .mapping = &.{0x03BD}, .status2 = .none, },
6031 .{ .cp = 0x1D6CF, .status = .mapped, .mapping = &.{0x03BE}, .status2 = .none, },
6032 .{ .cp = 0x1D6D0, .status = .mapped, .mapping = &.{0x03BF}, .status2 = .none, },
6033 .{ .cp = 0x1D6D1, .status = .mapped, .mapping = &.{0x03C0}, .status2 = .none, },
6034 .{ .cp = 0x1D6D2, .status = .mapped, .mapping = &.{0x03C1}, .status2 = .none, },
6035 .{ .cp = 0x1D6D5, .status = .mapped, .mapping = &.{0x03C4}, .status2 = .none, },
6036 .{ .cp = 0x1D6D6, .status = .mapped, .mapping = &.{0x03C5}, .status2 = .none, },
6037 .{ .cp = 0x1D6D7, .status = .mapped, .mapping = &.{0x03C6}, .status2 = .none, },
6038 .{ .cp = 0x1D6D8, .status = .mapped, .mapping = &.{0x03C7}, .status2 = .none, },
6039 .{ .cp = 0x1D6D9, .status = .mapped, .mapping = &.{0x03C8}, .status2 = .none, },
6040 .{ .cp = 0x1D6DA, .status = .mapped, .mapping = &.{0x03C9}, .status2 = .none, },
6041 .{ .cp = 0x1D6DB, .status = .mapped, .mapping = &.{0x2202}, .status2 = .none, },
6042 .{ .cp = 0x1D6DC, .status = .mapped, .mapping = &.{0x03B5}, .status2 = .none, },
6043 .{ .cp = 0x1D6DD, .status = .mapped, .mapping = &.{0x03B8}, .status2 = .none, },
6044 .{ .cp = 0x1D6DE, .status = .mapped, .mapping = &.{0x03BA}, .status2 = .none, },
6045 .{ .cp = 0x1D6DF, .status = .mapped, .mapping = &.{0x03C6}, .status2 = .none, },
6046 .{ .cp = 0x1D6E0, .status = .mapped, .mapping = &.{0x03C1}, .status2 = .none, },
6047 .{ .cp = 0x1D6E1, .status = .mapped, .mapping = &.{0x03C0}, .status2 = .none, },
6048 .{ .cp = 0x1D6E2, .status = .mapped, .mapping = &.{0x03B1}, .status2 = .none, },
6049 .{ .cp = 0x1D6E3, .status = .mapped, .mapping = &.{0x03B2}, .status2 = .none, },
6050 .{ .cp = 0x1D6E4, .status = .mapped, .mapping = &.{0x03B3}, .status2 = .none, },
6051 .{ .cp = 0x1D6E5, .status = .mapped, .mapping = &.{0x03B4}, .status2 = .none, },
6052 .{ .cp = 0x1D6E6, .status = .mapped, .mapping = &.{0x03B5}, .status2 = .none, },
6053 .{ .cp = 0x1D6E7, .status = .mapped, .mapping = &.{0x03B6}, .status2 = .none, },
6054 .{ .cp = 0x1D6E8, .status = .mapped, .mapping = &.{0x03B7}, .status2 = .none, },
6055 .{ .cp = 0x1D6E9, .status = .mapped, .mapping = &.{0x03B8}, .status2 = .none, },
6056 .{ .cp = 0x1D6EA, .status = .mapped, .mapping = &.{0x03B9}, .status2 = .none, },
6057 .{ .cp = 0x1D6EB, .status = .mapped, .mapping = &.{0x03BA}, .status2 = .none, },
6058 .{ .cp = 0x1D6EC, .status = .mapped, .mapping = &.{0x03BB}, .status2 = .none, },
6059 .{ .cp = 0x1D6ED, .status = .mapped, .mapping = &.{0x03BC}, .status2 = .none, },
6060 .{ .cp = 0x1D6EE, .status = .mapped, .mapping = &.{0x03BD}, .status2 = .none, },
6061 .{ .cp = 0x1D6EF, .status = .mapped, .mapping = &.{0x03BE}, .status2 = .none, },
6062 .{ .cp = 0x1D6F0, .status = .mapped, .mapping = &.{0x03BF}, .status2 = .none, },
6063 .{ .cp = 0x1D6F1, .status = .mapped, .mapping = &.{0x03C0}, .status2 = .none, },
6064 .{ .cp = 0x1D6F2, .status = .mapped, .mapping = &.{0x03C1}, .status2 = .none, },
6065 .{ .cp = 0x1D6F3, .status = .mapped, .mapping = &.{0x03B8}, .status2 = .none, },
6066 .{ .cp = 0x1D6F4, .status = .mapped, .mapping = &.{0x03C3}, .status2 = .none, },
6067 .{ .cp = 0x1D6F5, .status = .mapped, .mapping = &.{0x03C4}, .status2 = .none, },
6068 .{ .cp = 0x1D6F6, .status = .mapped, .mapping = &.{0x03C5}, .status2 = .none, },
6069 .{ .cp = 0x1D6F7, .status = .mapped, .mapping = &.{0x03C6}, .status2 = .none, },
6070 .{ .cp = 0x1D6F8, .status = .mapped, .mapping = &.{0x03C7}, .status2 = .none, },
6071 .{ .cp = 0x1D6F9, .status = .mapped, .mapping = &.{0x03C8}, .status2 = .none, },
6072 .{ .cp = 0x1D6FA, .status = .mapped, .mapping = &.{0x03C9}, .status2 = .none, },
6073 .{ .cp = 0x1D6FB, .status = .mapped, .mapping = &.{0x2207}, .status2 = .none, },
6074 .{ .cp = 0x1D6FC, .status = .mapped, .mapping = &.{0x03B1}, .status2 = .none, },
6075 .{ .cp = 0x1D6FD, .status = .mapped, .mapping = &.{0x03B2}, .status2 = .none, },
6076 .{ .cp = 0x1D6FE, .status = .mapped, .mapping = &.{0x03B3}, .status2 = .none, },
6077 .{ .cp = 0x1D6FF, .status = .mapped, .mapping = &.{0x03B4}, .status2 = .none, },
6078 .{ .cp = 0x1D700, .status = .mapped, .mapping = &.{0x03B5}, .status2 = .none, },
6079 .{ .cp = 0x1D701, .status = .mapped, .mapping = &.{0x03B6}, .status2 = .none, },
6080 .{ .cp = 0x1D702, .status = .mapped, .mapping = &.{0x03B7}, .status2 = .none, },
6081 .{ .cp = 0x1D703, .status = .mapped, .mapping = &.{0x03B8}, .status2 = .none, },
6082 .{ .cp = 0x1D704, .status = .mapped, .mapping = &.{0x03B9}, .status2 = .none, },
6083 .{ .cp = 0x1D705, .status = .mapped, .mapping = &.{0x03BA}, .status2 = .none, },
6084 .{ .cp = 0x1D706, .status = .mapped, .mapping = &.{0x03BB}, .status2 = .none, },
6085 .{ .cp = 0x1D707, .status = .mapped, .mapping = &.{0x03BC}, .status2 = .none, },
6086 .{ .cp = 0x1D708, .status = .mapped, .mapping = &.{0x03BD}, .status2 = .none, },
6087 .{ .cp = 0x1D709, .status = .mapped, .mapping = &.{0x03BE}, .status2 = .none, },
6088 .{ .cp = 0x1D70A, .status = .mapped, .mapping = &.{0x03BF}, .status2 = .none, },
6089 .{ .cp = 0x1D70B, .status = .mapped, .mapping = &.{0x03C0}, .status2 = .none, },
6090 .{ .cp = 0x1D70C, .status = .mapped, .mapping = &.{0x03C1}, .status2 = .none, },
6091 .{ .cp = 0x1D70F, .status = .mapped, .mapping = &.{0x03C4}, .status2 = .none, },
6092 .{ .cp = 0x1D710, .status = .mapped, .mapping = &.{0x03C5}, .status2 = .none, },
6093 .{ .cp = 0x1D711, .status = .mapped, .mapping = &.{0x03C6}, .status2 = .none, },
6094 .{ .cp = 0x1D712, .status = .mapped, .mapping = &.{0x03C7}, .status2 = .none, },
6095 .{ .cp = 0x1D713, .status = .mapped, .mapping = &.{0x03C8}, .status2 = .none, },
6096 .{ .cp = 0x1D714, .status = .mapped, .mapping = &.{0x03C9}, .status2 = .none, },
6097 .{ .cp = 0x1D715, .status = .mapped, .mapping = &.{0x2202}, .status2 = .none, },
6098 .{ .cp = 0x1D716, .status = .mapped, .mapping = &.{0x03B5}, .status2 = .none, },
6099 .{ .cp = 0x1D717, .status = .mapped, .mapping = &.{0x03B8}, .status2 = .none, },
6100 .{ .cp = 0x1D718, .status = .mapped, .mapping = &.{0x03BA}, .status2 = .none, },
6101 .{ .cp = 0x1D719, .status = .mapped, .mapping = &.{0x03C6}, .status2 = .none, },
6102 .{ .cp = 0x1D71A, .status = .mapped, .mapping = &.{0x03C1}, .status2 = .none, },
6103 .{ .cp = 0x1D71B, .status = .mapped, .mapping = &.{0x03C0}, .status2 = .none, },
6104 .{ .cp = 0x1D71C, .status = .mapped, .mapping = &.{0x03B1}, .status2 = .none, },
6105 .{ .cp = 0x1D71D, .status = .mapped, .mapping = &.{0x03B2}, .status2 = .none, },
6106 .{ .cp = 0x1D71E, .status = .mapped, .mapping = &.{0x03B3}, .status2 = .none, },
6107 .{ .cp = 0x1D71F, .status = .mapped, .mapping = &.{0x03B4}, .status2 = .none, },
6108 .{ .cp = 0x1D720, .status = .mapped, .mapping = &.{0x03B5}, .status2 = .none, },
6109 .{ .cp = 0x1D721, .status = .mapped, .mapping = &.{0x03B6}, .status2 = .none, },
6110 .{ .cp = 0x1D722, .status = .mapped, .mapping = &.{0x03B7}, .status2 = .none, },
6111 .{ .cp = 0x1D723, .status = .mapped, .mapping = &.{0x03B8}, .status2 = .none, },
6112 .{ .cp = 0x1D724, .status = .mapped, .mapping = &.{0x03B9}, .status2 = .none, },
6113 .{ .cp = 0x1D725, .status = .mapped, .mapping = &.{0x03BA}, .status2 = .none, },
6114 .{ .cp = 0x1D726, .status = .mapped, .mapping = &.{0x03BB}, .status2 = .none, },
6115 .{ .cp = 0x1D727, .status = .mapped, .mapping = &.{0x03BC}, .status2 = .none, },
6116 .{ .cp = 0x1D728, .status = .mapped, .mapping = &.{0x03BD}, .status2 = .none, },
6117 .{ .cp = 0x1D729, .status = .mapped, .mapping = &.{0x03BE}, .status2 = .none, },
6118 .{ .cp = 0x1D72A, .status = .mapped, .mapping = &.{0x03BF}, .status2 = .none, },
6119 .{ .cp = 0x1D72B, .status = .mapped, .mapping = &.{0x03C0}, .status2 = .none, },
6120 .{ .cp = 0x1D72C, .status = .mapped, .mapping = &.{0x03C1}, .status2 = .none, },
6121 .{ .cp = 0x1D72D, .status = .mapped, .mapping = &.{0x03B8}, .status2 = .none, },
6122 .{ .cp = 0x1D72E, .status = .mapped, .mapping = &.{0x03C3}, .status2 = .none, },
6123 .{ .cp = 0x1D72F, .status = .mapped, .mapping = &.{0x03C4}, .status2 = .none, },
6124 .{ .cp = 0x1D730, .status = .mapped, .mapping = &.{0x03C5}, .status2 = .none, },
6125 .{ .cp = 0x1D731, .status = .mapped, .mapping = &.{0x03C6}, .status2 = .none, },
6126 .{ .cp = 0x1D732, .status = .mapped, .mapping = &.{0x03C7}, .status2 = .none, },
6127 .{ .cp = 0x1D733, .status = .mapped, .mapping = &.{0x03C8}, .status2 = .none, },
6128 .{ .cp = 0x1D734, .status = .mapped, .mapping = &.{0x03C9}, .status2 = .none, },
6129 .{ .cp = 0x1D735, .status = .mapped, .mapping = &.{0x2207}, .status2 = .none, },
6130 .{ .cp = 0x1D736, .status = .mapped, .mapping = &.{0x03B1}, .status2 = .none, },
6131 .{ .cp = 0x1D737, .status = .mapped, .mapping = &.{0x03B2}, .status2 = .none, },
6132 .{ .cp = 0x1D738, .status = .mapped, .mapping = &.{0x03B3}, .status2 = .none, },
6133 .{ .cp = 0x1D739, .status = .mapped, .mapping = &.{0x03B4}, .status2 = .none, },
6134 .{ .cp = 0x1D73A, .status = .mapped, .mapping = &.{0x03B5}, .status2 = .none, },
6135 .{ .cp = 0x1D73B, .status = .mapped, .mapping = &.{0x03B6}, .status2 = .none, },
6136 .{ .cp = 0x1D73C, .status = .mapped, .mapping = &.{0x03B7}, .status2 = .none, },
6137 .{ .cp = 0x1D73D, .status = .mapped, .mapping = &.{0x03B8}, .status2 = .none, },
6138 .{ .cp = 0x1D73E, .status = .mapped, .mapping = &.{0x03B9}, .status2 = .none, },
6139 .{ .cp = 0x1D73F, .status = .mapped, .mapping = &.{0x03BA}, .status2 = .none, },
6140 .{ .cp = 0x1D740, .status = .mapped, .mapping = &.{0x03BB}, .status2 = .none, },
6141 .{ .cp = 0x1D741, .status = .mapped, .mapping = &.{0x03BC}, .status2 = .none, },
6142 .{ .cp = 0x1D742, .status = .mapped, .mapping = &.{0x03BD}, .status2 = .none, },
6143 .{ .cp = 0x1D743, .status = .mapped, .mapping = &.{0x03BE}, .status2 = .none, },
6144 .{ .cp = 0x1D744, .status = .mapped, .mapping = &.{0x03BF}, .status2 = .none, },
6145 .{ .cp = 0x1D745, .status = .mapped, .mapping = &.{0x03C0}, .status2 = .none, },
6146 .{ .cp = 0x1D746, .status = .mapped, .mapping = &.{0x03C1}, .status2 = .none, },
6147 .{ .cp = 0x1D749, .status = .mapped, .mapping = &.{0x03C4}, .status2 = .none, },
6148 .{ .cp = 0x1D74A, .status = .mapped, .mapping = &.{0x03C5}, .status2 = .none, },
6149 .{ .cp = 0x1D74B, .status = .mapped, .mapping = &.{0x03C6}, .status2 = .none, },
6150 .{ .cp = 0x1D74C, .status = .mapped, .mapping = &.{0x03C7}, .status2 = .none, },
6151 .{ .cp = 0x1D74D, .status = .mapped, .mapping = &.{0x03C8}, .status2 = .none, },
6152 .{ .cp = 0x1D74E, .status = .mapped, .mapping = &.{0x03C9}, .status2 = .none, },
6153 .{ .cp = 0x1D74F, .status = .mapped, .mapping = &.{0x2202}, .status2 = .none, },
6154 .{ .cp = 0x1D750, .status = .mapped, .mapping = &.{0x03B5}, .status2 = .none, },
6155 .{ .cp = 0x1D751, .status = .mapped, .mapping = &.{0x03B8}, .status2 = .none, },
6156 .{ .cp = 0x1D752, .status = .mapped, .mapping = &.{0x03BA}, .status2 = .none, },
6157 .{ .cp = 0x1D753, .status = .mapped, .mapping = &.{0x03C6}, .status2 = .none, },
6158 .{ .cp = 0x1D754, .status = .mapped, .mapping = &.{0x03C1}, .status2 = .none, },
6159 .{ .cp = 0x1D755, .status = .mapped, .mapping = &.{0x03C0}, .status2 = .none, },
6160 .{ .cp = 0x1D756, .status = .mapped, .mapping = &.{0x03B1}, .status2 = .none, },
6161 .{ .cp = 0x1D757, .status = .mapped, .mapping = &.{0x03B2}, .status2 = .none, },
6162 .{ .cp = 0x1D758, .status = .mapped, .mapping = &.{0x03B3}, .status2 = .none, },
6163 .{ .cp = 0x1D759, .status = .mapped, .mapping = &.{0x03B4}, .status2 = .none, },
6164 .{ .cp = 0x1D75A, .status = .mapped, .mapping = &.{0x03B5}, .status2 = .none, },
6165 .{ .cp = 0x1D75B, .status = .mapped, .mapping = &.{0x03B6}, .status2 = .none, },
6166 .{ .cp = 0x1D75C, .status = .mapped, .mapping = &.{0x03B7}, .status2 = .none, },
6167 .{ .cp = 0x1D75D, .status = .mapped, .mapping = &.{0x03B8}, .status2 = .none, },
6168 .{ .cp = 0x1D75E, .status = .mapped, .mapping = &.{0x03B9}, .status2 = .none, },
6169 .{ .cp = 0x1D75F, .status = .mapped, .mapping = &.{0x03BA}, .status2 = .none, },
6170 .{ .cp = 0x1D760, .status = .mapped, .mapping = &.{0x03BB}, .status2 = .none, },
6171 .{ .cp = 0x1D761, .status = .mapped, .mapping = &.{0x03BC}, .status2 = .none, },
6172 .{ .cp = 0x1D762, .status = .mapped, .mapping = &.{0x03BD}, .status2 = .none, },
6173 .{ .cp = 0x1D763, .status = .mapped, .mapping = &.{0x03BE}, .status2 = .none, },
6174 .{ .cp = 0x1D764, .status = .mapped, .mapping = &.{0x03BF}, .status2 = .none, },
6175 .{ .cp = 0x1D765, .status = .mapped, .mapping = &.{0x03C0}, .status2 = .none, },
6176 .{ .cp = 0x1D766, .status = .mapped, .mapping = &.{0x03C1}, .status2 = .none, },
6177 .{ .cp = 0x1D767, .status = .mapped, .mapping = &.{0x03B8}, .status2 = .none, },
6178 .{ .cp = 0x1D768, .status = .mapped, .mapping = &.{0x03C3}, .status2 = .none, },
6179 .{ .cp = 0x1D769, .status = .mapped, .mapping = &.{0x03C4}, .status2 = .none, },
6180 .{ .cp = 0x1D76A, .status = .mapped, .mapping = &.{0x03C5}, .status2 = .none, },
6181 .{ .cp = 0x1D76B, .status = .mapped, .mapping = &.{0x03C6}, .status2 = .none, },
6182 .{ .cp = 0x1D76C, .status = .mapped, .mapping = &.{0x03C7}, .status2 = .none, },
6183 .{ .cp = 0x1D76D, .status = .mapped, .mapping = &.{0x03C8}, .status2 = .none, },
6184 .{ .cp = 0x1D76E, .status = .mapped, .mapping = &.{0x03C9}, .status2 = .none, },
6185 .{ .cp = 0x1D76F, .status = .mapped, .mapping = &.{0x2207}, .status2 = .none, },
6186 .{ .cp = 0x1D770, .status = .mapped, .mapping = &.{0x03B1}, .status2 = .none, },
6187 .{ .cp = 0x1D771, .status = .mapped, .mapping = &.{0x03B2}, .status2 = .none, },
6188 .{ .cp = 0x1D772, .status = .mapped, .mapping = &.{0x03B3}, .status2 = .none, },
6189 .{ .cp = 0x1D773, .status = .mapped, .mapping = &.{0x03B4}, .status2 = .none, },
6190 .{ .cp = 0x1D774, .status = .mapped, .mapping = &.{0x03B5}, .status2 = .none, },
6191 .{ .cp = 0x1D775, .status = .mapped, .mapping = &.{0x03B6}, .status2 = .none, },
6192 .{ .cp = 0x1D776, .status = .mapped, .mapping = &.{0x03B7}, .status2 = .none, },
6193 .{ .cp = 0x1D777, .status = .mapped, .mapping = &.{0x03B8}, .status2 = .none, },
6194 .{ .cp = 0x1D778, .status = .mapped, .mapping = &.{0x03B9}, .status2 = .none, },
6195 .{ .cp = 0x1D779, .status = .mapped, .mapping = &.{0x03BA}, .status2 = .none, },
6196 .{ .cp = 0x1D77A, .status = .mapped, .mapping = &.{0x03BB}, .status2 = .none, },
6197 .{ .cp = 0x1D77B, .status = .mapped, .mapping = &.{0x03BC}, .status2 = .none, },
6198 .{ .cp = 0x1D77C, .status = .mapped, .mapping = &.{0x03BD}, .status2 = .none, },
6199 .{ .cp = 0x1D77D, .status = .mapped, .mapping = &.{0x03BE}, .status2 = .none, },
6200 .{ .cp = 0x1D77E, .status = .mapped, .mapping = &.{0x03BF}, .status2 = .none, },
6201 .{ .cp = 0x1D77F, .status = .mapped, .mapping = &.{0x03C0}, .status2 = .none, },
6202 .{ .cp = 0x1D780, .status = .mapped, .mapping = &.{0x03C1}, .status2 = .none, },
6203 .{ .cp = 0x1D783, .status = .mapped, .mapping = &.{0x03C4}, .status2 = .none, },
6204 .{ .cp = 0x1D784, .status = .mapped, .mapping = &.{0x03C5}, .status2 = .none, },
6205 .{ .cp = 0x1D785, .status = .mapped, .mapping = &.{0x03C6}, .status2 = .none, },
6206 .{ .cp = 0x1D786, .status = .mapped, .mapping = &.{0x03C7}, .status2 = .none, },
6207 .{ .cp = 0x1D787, .status = .mapped, .mapping = &.{0x03C8}, .status2 = .none, },
6208 .{ .cp = 0x1D788, .status = .mapped, .mapping = &.{0x03C9}, .status2 = .none, },
6209 .{ .cp = 0x1D789, .status = .mapped, .mapping = &.{0x2202}, .status2 = .none, },
6210 .{ .cp = 0x1D78A, .status = .mapped, .mapping = &.{0x03B5}, .status2 = .none, },
6211 .{ .cp = 0x1D78B, .status = .mapped, .mapping = &.{0x03B8}, .status2 = .none, },
6212 .{ .cp = 0x1D78C, .status = .mapped, .mapping = &.{0x03BA}, .status2 = .none, },
6213 .{ .cp = 0x1D78D, .status = .mapped, .mapping = &.{0x03C6}, .status2 = .none, },
6214 .{ .cp = 0x1D78E, .status = .mapped, .mapping = &.{0x03C1}, .status2 = .none, },
6215 .{ .cp = 0x1D78F, .status = .mapped, .mapping = &.{0x03C0}, .status2 = .none, },
6216 .{ .cp = 0x1D790, .status = .mapped, .mapping = &.{0x03B1}, .status2 = .none, },
6217 .{ .cp = 0x1D791, .status = .mapped, .mapping = &.{0x03B2}, .status2 = .none, },
6218 .{ .cp = 0x1D792, .status = .mapped, .mapping = &.{0x03B3}, .status2 = .none, },
6219 .{ .cp = 0x1D793, .status = .mapped, .mapping = &.{0x03B4}, .status2 = .none, },
6220 .{ .cp = 0x1D794, .status = .mapped, .mapping = &.{0x03B5}, .status2 = .none, },
6221 .{ .cp = 0x1D795, .status = .mapped, .mapping = &.{0x03B6}, .status2 = .none, },
6222 .{ .cp = 0x1D796, .status = .mapped, .mapping = &.{0x03B7}, .status2 = .none, },
6223 .{ .cp = 0x1D797, .status = .mapped, .mapping = &.{0x03B8}, .status2 = .none, },
6224 .{ .cp = 0x1D798, .status = .mapped, .mapping = &.{0x03B9}, .status2 = .none, },
6225 .{ .cp = 0x1D799, .status = .mapped, .mapping = &.{0x03BA}, .status2 = .none, },
6226 .{ .cp = 0x1D79A, .status = .mapped, .mapping = &.{0x03BB}, .status2 = .none, },
6227 .{ .cp = 0x1D79B, .status = .mapped, .mapping = &.{0x03BC}, .status2 = .none, },
6228 .{ .cp = 0x1D79C, .status = .mapped, .mapping = &.{0x03BD}, .status2 = .none, },
6229 .{ .cp = 0x1D79D, .status = .mapped, .mapping = &.{0x03BE}, .status2 = .none, },
6230 .{ .cp = 0x1D79E, .status = .mapped, .mapping = &.{0x03BF}, .status2 = .none, },
6231 .{ .cp = 0x1D79F, .status = .mapped, .mapping = &.{0x03C0}, .status2 = .none, },
6232 .{ .cp = 0x1D7A0, .status = .mapped, .mapping = &.{0x03C1}, .status2 = .none, },
6233 .{ .cp = 0x1D7A1, .status = .mapped, .mapping = &.{0x03B8}, .status2 = .none, },
6234 .{ .cp = 0x1D7A2, .status = .mapped, .mapping = &.{0x03C3}, .status2 = .none, },
6235 .{ .cp = 0x1D7A3, .status = .mapped, .mapping = &.{0x03C4}, .status2 = .none, },
6236 .{ .cp = 0x1D7A4, .status = .mapped, .mapping = &.{0x03C5}, .status2 = .none, },
6237 .{ .cp = 0x1D7A5, .status = .mapped, .mapping = &.{0x03C6}, .status2 = .none, },
6238 .{ .cp = 0x1D7A6, .status = .mapped, .mapping = &.{0x03C7}, .status2 = .none, },
6239 .{ .cp = 0x1D7A7, .status = .mapped, .mapping = &.{0x03C8}, .status2 = .none, },
6240 .{ .cp = 0x1D7A8, .status = .mapped, .mapping = &.{0x03C9}, .status2 = .none, },
6241 .{ .cp = 0x1D7A9, .status = .mapped, .mapping = &.{0x2207}, .status2 = .none, },
6242 .{ .cp = 0x1D7AA, .status = .mapped, .mapping = &.{0x03B1}, .status2 = .none, },
6243 .{ .cp = 0x1D7AB, .status = .mapped, .mapping = &.{0x03B2}, .status2 = .none, },
6244 .{ .cp = 0x1D7AC, .status = .mapped, .mapping = &.{0x03B3}, .status2 = .none, },
6245 .{ .cp = 0x1D7AD, .status = .mapped, .mapping = &.{0x03B4}, .status2 = .none, },
6246 .{ .cp = 0x1D7AE, .status = .mapped, .mapping = &.{0x03B5}, .status2 = .none, },
6247 .{ .cp = 0x1D7AF, .status = .mapped, .mapping = &.{0x03B6}, .status2 = .none, },
6248 .{ .cp = 0x1D7B0, .status = .mapped, .mapping = &.{0x03B7}, .status2 = .none, },
6249 .{ .cp = 0x1D7B1, .status = .mapped, .mapping = &.{0x03B8}, .status2 = .none, },
6250 .{ .cp = 0x1D7B2, .status = .mapped, .mapping = &.{0x03B9}, .status2 = .none, },
6251 .{ .cp = 0x1D7B3, .status = .mapped, .mapping = &.{0x03BA}, .status2 = .none, },
6252 .{ .cp = 0x1D7B4, .status = .mapped, .mapping = &.{0x03BB}, .status2 = .none, },
6253 .{ .cp = 0x1D7B5, .status = .mapped, .mapping = &.{0x03BC}, .status2 = .none, },
6254 .{ .cp = 0x1D7B6, .status = .mapped, .mapping = &.{0x03BD}, .status2 = .none, },
6255 .{ .cp = 0x1D7B7, .status = .mapped, .mapping = &.{0x03BE}, .status2 = .none, },
6256 .{ .cp = 0x1D7B8, .status = .mapped, .mapping = &.{0x03BF}, .status2 = .none, },
6257 .{ .cp = 0x1D7B9, .status = .mapped, .mapping = &.{0x03C0}, .status2 = .none, },
6258 .{ .cp = 0x1D7BA, .status = .mapped, .mapping = &.{0x03C1}, .status2 = .none, },
6259 .{ .cp = 0x1D7BD, .status = .mapped, .mapping = &.{0x03C4}, .status2 = .none, },
6260 .{ .cp = 0x1D7BE, .status = .mapped, .mapping = &.{0x03C5}, .status2 = .none, },
6261 .{ .cp = 0x1D7BF, .status = .mapped, .mapping = &.{0x03C6}, .status2 = .none, },
6262 .{ .cp = 0x1D7C0, .status = .mapped, .mapping = &.{0x03C7}, .status2 = .none, },
6263 .{ .cp = 0x1D7C1, .status = .mapped, .mapping = &.{0x03C8}, .status2 = .none, },
6264 .{ .cp = 0x1D7C2, .status = .mapped, .mapping = &.{0x03C9}, .status2 = .none, },
6265 .{ .cp = 0x1D7C3, .status = .mapped, .mapping = &.{0x2202}, .status2 = .none, },
6266 .{ .cp = 0x1D7C4, .status = .mapped, .mapping = &.{0x03B5}, .status2 = .none, },
6267 .{ .cp = 0x1D7C5, .status = .mapped, .mapping = &.{0x03B8}, .status2 = .none, },
6268 .{ .cp = 0x1D7C6, .status = .mapped, .mapping = &.{0x03BA}, .status2 = .none, },
6269 .{ .cp = 0x1D7C7, .status = .mapped, .mapping = &.{0x03C6}, .status2 = .none, },
6270 .{ .cp = 0x1D7C8, .status = .mapped, .mapping = &.{0x03C1}, .status2 = .none, },
6271 .{ .cp = 0x1D7C9, .status = .mapped, .mapping = &.{0x03C0}, .status2 = .none, },
6272 .{ .cp = 0x1D7CE, .status = .mapped, .mapping = &.{0x0030}, .status2 = .none, },
6273 .{ .cp = 0x1D7CF, .status = .mapped, .mapping = &.{0x0031}, .status2 = .none, },
6274 .{ .cp = 0x1D7D0, .status = .mapped, .mapping = &.{0x0032}, .status2 = .none, },
6275 .{ .cp = 0x1D7D1, .status = .mapped, .mapping = &.{0x0033}, .status2 = .none, },
6276 .{ .cp = 0x1D7D2, .status = .mapped, .mapping = &.{0x0034}, .status2 = .none, },
6277 .{ .cp = 0x1D7D3, .status = .mapped, .mapping = &.{0x0035}, .status2 = .none, },
6278 .{ .cp = 0x1D7D4, .status = .mapped, .mapping = &.{0x0036}, .status2 = .none, },
6279 .{ .cp = 0x1D7D5, .status = .mapped, .mapping = &.{0x0037}, .status2 = .none, },
6280 .{ .cp = 0x1D7D6, .status = .mapped, .mapping = &.{0x0038}, .status2 = .none, },
6281 .{ .cp = 0x1D7D7, .status = .mapped, .mapping = &.{0x0039}, .status2 = .none, },
6282 .{ .cp = 0x1D7D8, .status = .mapped, .mapping = &.{0x0030}, .status2 = .none, },
6283 .{ .cp = 0x1D7D9, .status = .mapped, .mapping = &.{0x0031}, .status2 = .none, },
6284 .{ .cp = 0x1D7DA, .status = .mapped, .mapping = &.{0x0032}, .status2 = .none, },
6285 .{ .cp = 0x1D7DB, .status = .mapped, .mapping = &.{0x0033}, .status2 = .none, },
6286 .{ .cp = 0x1D7DC, .status = .mapped, .mapping = &.{0x0034}, .status2 = .none, },
6287 .{ .cp = 0x1D7DD, .status = .mapped, .mapping = &.{0x0035}, .status2 = .none, },
6288 .{ .cp = 0x1D7DE, .status = .mapped, .mapping = &.{0x0036}, .status2 = .none, },
6289 .{ .cp = 0x1D7DF, .status = .mapped, .mapping = &.{0x0037}, .status2 = .none, },
6290 .{ .cp = 0x1D7E0, .status = .mapped, .mapping = &.{0x0038}, .status2 = .none, },
6291 .{ .cp = 0x1D7E1, .status = .mapped, .mapping = &.{0x0039}, .status2 = .none, },
6292 .{ .cp = 0x1D7E2, .status = .mapped, .mapping = &.{0x0030}, .status2 = .none, },
6293 .{ .cp = 0x1D7E3, .status = .mapped, .mapping = &.{0x0031}, .status2 = .none, },
6294 .{ .cp = 0x1D7E4, .status = .mapped, .mapping = &.{0x0032}, .status2 = .none, },
6295 .{ .cp = 0x1D7E5, .status = .mapped, .mapping = &.{0x0033}, .status2 = .none, },
6296 .{ .cp = 0x1D7E6, .status = .mapped, .mapping = &.{0x0034}, .status2 = .none, },
6297 .{ .cp = 0x1D7E7, .status = .mapped, .mapping = &.{0x0035}, .status2 = .none, },
6298 .{ .cp = 0x1D7E8, .status = .mapped, .mapping = &.{0x0036}, .status2 = .none, },
6299 .{ .cp = 0x1D7E9, .status = .mapped, .mapping = &.{0x0037}, .status2 = .none, },
6300 .{ .cp = 0x1D7EA, .status = .mapped, .mapping = &.{0x0038}, .status2 = .none, },
6301 .{ .cp = 0x1D7EB, .status = .mapped, .mapping = &.{0x0039}, .status2 = .none, },
6302 .{ .cp = 0x1D7EC, .status = .mapped, .mapping = &.{0x0030}, .status2 = .none, },
6303 .{ .cp = 0x1D7ED, .status = .mapped, .mapping = &.{0x0031}, .status2 = .none, },
6304 .{ .cp = 0x1D7EE, .status = .mapped, .mapping = &.{0x0032}, .status2 = .none, },
6305 .{ .cp = 0x1D7EF, .status = .mapped, .mapping = &.{0x0033}, .status2 = .none, },
6306 .{ .cp = 0x1D7F0, .status = .mapped, .mapping = &.{0x0034}, .status2 = .none, },
6307 .{ .cp = 0x1D7F1, .status = .mapped, .mapping = &.{0x0035}, .status2 = .none, },
6308 .{ .cp = 0x1D7F2, .status = .mapped, .mapping = &.{0x0036}, .status2 = .none, },
6309 .{ .cp = 0x1D7F3, .status = .mapped, .mapping = &.{0x0037}, .status2 = .none, },
6310 .{ .cp = 0x1D7F4, .status = .mapped, .mapping = &.{0x0038}, .status2 = .none, },
6311 .{ .cp = 0x1D7F5, .status = .mapped, .mapping = &.{0x0039}, .status2 = .none, },
6312 .{ .cp = 0x1D7F6, .status = .mapped, .mapping = &.{0x0030}, .status2 = .none, },
6313 .{ .cp = 0x1D7F7, .status = .mapped, .mapping = &.{0x0031}, .status2 = .none, },
6314 .{ .cp = 0x1D7F8, .status = .mapped, .mapping = &.{0x0032}, .status2 = .none, },
6315 .{ .cp = 0x1D7F9, .status = .mapped, .mapping = &.{0x0033}, .status2 = .none, },
6316 .{ .cp = 0x1D7FA, .status = .mapped, .mapping = &.{0x0034}, .status2 = .none, },
6317 .{ .cp = 0x1D7FB, .status = .mapped, .mapping = &.{0x0035}, .status2 = .none, },
6318 .{ .cp = 0x1D7FC, .status = .mapped, .mapping = &.{0x0036}, .status2 = .none, },
6319 .{ .cp = 0x1D7FD, .status = .mapped, .mapping = &.{0x0037}, .status2 = .none, },
6320 .{ .cp = 0x1D7FE, .status = .mapped, .mapping = &.{0x0038}, .status2 = .none, },
6321 .{ .cp = 0x1D7FF, .status = .mapped, .mapping = &.{0x0039}, .status2 = .none, },
6322 .{ .cp = 0x1DA75, .status = .valid, .mapping = &.{}, .status2 = .none, },
6323 .{ .cp = 0x1DA84, .status = .valid, .mapping = &.{}, .status2 = .none, },
6324 .{ .cp = 0x1DAA0, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
6325 .{ .cp = 0x1E007, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
6326 .{ .cp = 0x1E022, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
6327 .{ .cp = 0x1E025, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
6328 .{ .cp = 0x1E030, .status = .mapped, .mapping = &.{0x0430}, .status2 = .none, },
6329 .{ .cp = 0x1E031, .status = .mapped, .mapping = &.{0x0431}, .status2 = .none, },
6330 .{ .cp = 0x1E032, .status = .mapped, .mapping = &.{0x0432}, .status2 = .none, },
6331 .{ .cp = 0x1E033, .status = .mapped, .mapping = &.{0x0433}, .status2 = .none, },
6332 .{ .cp = 0x1E034, .status = .mapped, .mapping = &.{0x0434}, .status2 = .none, },
6333 .{ .cp = 0x1E035, .status = .mapped, .mapping = &.{0x0435}, .status2 = .none, },
6334 .{ .cp = 0x1E036, .status = .mapped, .mapping = &.{0x0436}, .status2 = .none, },
6335 .{ .cp = 0x1E037, .status = .mapped, .mapping = &.{0x0437}, .status2 = .none, },
6336 .{ .cp = 0x1E038, .status = .mapped, .mapping = &.{0x0438}, .status2 = .none, },
6337 .{ .cp = 0x1E039, .status = .mapped, .mapping = &.{0x043A}, .status2 = .none, },
6338 .{ .cp = 0x1E03A, .status = .mapped, .mapping = &.{0x043B}, .status2 = .none, },
6339 .{ .cp = 0x1E03B, .status = .mapped, .mapping = &.{0x043C}, .status2 = .none, },
6340 .{ .cp = 0x1E03C, .status = .mapped, .mapping = &.{0x043E}, .status2 = .none, },
6341 .{ .cp = 0x1E03D, .status = .mapped, .mapping = &.{0x043F}, .status2 = .none, },
6342 .{ .cp = 0x1E03E, .status = .mapped, .mapping = &.{0x0440}, .status2 = .none, },
6343 .{ .cp = 0x1E03F, .status = .mapped, .mapping = &.{0x0441}, .status2 = .none, },
6344 .{ .cp = 0x1E040, .status = .mapped, .mapping = &.{0x0442}, .status2 = .none, },
6345 .{ .cp = 0x1E041, .status = .mapped, .mapping = &.{0x0443}, .status2 = .none, },
6346 .{ .cp = 0x1E042, .status = .mapped, .mapping = &.{0x0444}, .status2 = .none, },
6347 .{ .cp = 0x1E043, .status = .mapped, .mapping = &.{0x0445}, .status2 = .none, },
6348 .{ .cp = 0x1E044, .status = .mapped, .mapping = &.{0x0446}, .status2 = .none, },
6349 .{ .cp = 0x1E045, .status = .mapped, .mapping = &.{0x0447}, .status2 = .none, },
6350 .{ .cp = 0x1E046, .status = .mapped, .mapping = &.{0x0448}, .status2 = .none, },
6351 .{ .cp = 0x1E047, .status = .mapped, .mapping = &.{0x044B}, .status2 = .none, },
6352 .{ .cp = 0x1E048, .status = .mapped, .mapping = &.{0x044D}, .status2 = .none, },
6353 .{ .cp = 0x1E049, .status = .mapped, .mapping = &.{0x044E}, .status2 = .none, },
6354 .{ .cp = 0x1E04A, .status = .mapped, .mapping = &.{0xA689}, .status2 = .none, },
6355 .{ .cp = 0x1E04B, .status = .mapped, .mapping = &.{0x04D9}, .status2 = .none, },
6356 .{ .cp = 0x1E04C, .status = .mapped, .mapping = &.{0x0456}, .status2 = .none, },
6357 .{ .cp = 0x1E04D, .status = .mapped, .mapping = &.{0x0458}, .status2 = .none, },
6358 .{ .cp = 0x1E04E, .status = .mapped, .mapping = &.{0x04E9}, .status2 = .none, },
6359 .{ .cp = 0x1E04F, .status = .mapped, .mapping = &.{0x04AF}, .status2 = .none, },
6360 .{ .cp = 0x1E050, .status = .mapped, .mapping = &.{0x04CF}, .status2 = .none, },
6361 .{ .cp = 0x1E051, .status = .mapped, .mapping = &.{0x0430}, .status2 = .none, },
6362 .{ .cp = 0x1E052, .status = .mapped, .mapping = &.{0x0431}, .status2 = .none, },
6363 .{ .cp = 0x1E053, .status = .mapped, .mapping = &.{0x0432}, .status2 = .none, },
6364 .{ .cp = 0x1E054, .status = .mapped, .mapping = &.{0x0433}, .status2 = .none, },
6365 .{ .cp = 0x1E055, .status = .mapped, .mapping = &.{0x0434}, .status2 = .none, },
6366 .{ .cp = 0x1E056, .status = .mapped, .mapping = &.{0x0435}, .status2 = .none, },
6367 .{ .cp = 0x1E057, .status = .mapped, .mapping = &.{0x0436}, .status2 = .none, },
6368 .{ .cp = 0x1E058, .status = .mapped, .mapping = &.{0x0437}, .status2 = .none, },
6369 .{ .cp = 0x1E059, .status = .mapped, .mapping = &.{0x0438}, .status2 = .none, },
6370 .{ .cp = 0x1E05A, .status = .mapped, .mapping = &.{0x043A}, .status2 = .none, },
6371 .{ .cp = 0x1E05B, .status = .mapped, .mapping = &.{0x043B}, .status2 = .none, },
6372 .{ .cp = 0x1E05C, .status = .mapped, .mapping = &.{0x043E}, .status2 = .none, },
6373 .{ .cp = 0x1E05D, .status = .mapped, .mapping = &.{0x043F}, .status2 = .none, },
6374 .{ .cp = 0x1E05E, .status = .mapped, .mapping = &.{0x0441}, .status2 = .none, },
6375 .{ .cp = 0x1E05F, .status = .mapped, .mapping = &.{0x0443}, .status2 = .none, },
6376 .{ .cp = 0x1E060, .status = .mapped, .mapping = &.{0x0444}, .status2 = .none, },
6377 .{ .cp = 0x1E061, .status = .mapped, .mapping = &.{0x0445}, .status2 = .none, },
6378 .{ .cp = 0x1E062, .status = .mapped, .mapping = &.{0x0446}, .status2 = .none, },
6379 .{ .cp = 0x1E063, .status = .mapped, .mapping = &.{0x0447}, .status2 = .none, },
6380 .{ .cp = 0x1E064, .status = .mapped, .mapping = &.{0x0448}, .status2 = .none, },
6381 .{ .cp = 0x1E065, .status = .mapped, .mapping = &.{0x044A}, .status2 = .none, },
6382 .{ .cp = 0x1E066, .status = .mapped, .mapping = &.{0x044B}, .status2 = .none, },
6383 .{ .cp = 0x1E067, .status = .mapped, .mapping = &.{0x0491}, .status2 = .none, },
6384 .{ .cp = 0x1E068, .status = .mapped, .mapping = &.{0x0456}, .status2 = .none, },
6385 .{ .cp = 0x1E069, .status = .mapped, .mapping = &.{0x0455}, .status2 = .none, },
6386 .{ .cp = 0x1E06A, .status = .mapped, .mapping = &.{0x045F}, .status2 = .none, },
6387 .{ .cp = 0x1E06B, .status = .mapped, .mapping = &.{0x04AB}, .status2 = .none, },
6388 .{ .cp = 0x1E06C, .status = .mapped, .mapping = &.{0xA651}, .status2 = .none, },
6389 .{ .cp = 0x1E06D, .status = .mapped, .mapping = &.{0x04B1}, .status2 = .none, },
6390 .{ .cp = 0x1E08F, .status = .valid, .mapping = &.{}, .status2 = .none, },
6391 .{ .cp = 0x1E14E, .status = .valid, .mapping = &.{}, .status2 = .none, },
6392 .{ .cp = 0x1E14F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6393 .{ .cp = 0x1E2FF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6394 .{ .cp = 0x1E5FF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6395 .{ .cp = 0x1E6DF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
6396 .{ .cp = 0x1E7E7, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
6397 .{ .cp = 0x1E7EC, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
6398 .{ .cp = 0x1E7EF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
6399 .{ .cp = 0x1E7FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
6400 .{ .cp = 0x1E900, .status = .mapped, .mapping = &.{0x1E922}, .status2 = .none, },
6401 .{ .cp = 0x1E901, .status = .mapped, .mapping = &.{0x1E923}, .status2 = .none, },
6402 .{ .cp = 0x1E902, .status = .mapped, .mapping = &.{0x1E924}, .status2 = .none, },
6403 .{ .cp = 0x1E903, .status = .mapped, .mapping = &.{0x1E925}, .status2 = .none, },
6404 .{ .cp = 0x1E904, .status = .mapped, .mapping = &.{0x1E926}, .status2 = .none, },
6405 .{ .cp = 0x1E905, .status = .mapped, .mapping = &.{0x1E927}, .status2 = .none, },
6406 .{ .cp = 0x1E906, .status = .mapped, .mapping = &.{0x1E928}, .status2 = .none, },
6407 .{ .cp = 0x1E907, .status = .mapped, .mapping = &.{0x1E929}, .status2 = .none, },
6408 .{ .cp = 0x1E908, .status = .mapped, .mapping = &.{0x1E92A}, .status2 = .none, },
6409 .{ .cp = 0x1E909, .status = .mapped, .mapping = &.{0x1E92B}, .status2 = .none, },
6410 .{ .cp = 0x1E90A, .status = .mapped, .mapping = &.{0x1E92C}, .status2 = .none, },
6411 .{ .cp = 0x1E90B, .status = .mapped, .mapping = &.{0x1E92D}, .status2 = .none, },
6412 .{ .cp = 0x1E90C, .status = .mapped, .mapping = &.{0x1E92E}, .status2 = .none, },
6413 .{ .cp = 0x1E90D, .status = .mapped, .mapping = &.{0x1E92F}, .status2 = .none, },
6414 .{ .cp = 0x1E90E, .status = .mapped, .mapping = &.{0x1E930}, .status2 = .none, },
6415 .{ .cp = 0x1E90F, .status = .mapped, .mapping = &.{0x1E931}, .status2 = .none, },
6416 .{ .cp = 0x1E910, .status = .mapped, .mapping = &.{0x1E932}, .status2 = .none, },
6417 .{ .cp = 0x1E911, .status = .mapped, .mapping = &.{0x1E933}, .status2 = .none, },
6418 .{ .cp = 0x1E912, .status = .mapped, .mapping = &.{0x1E934}, .status2 = .none, },
6419 .{ .cp = 0x1E913, .status = .mapped, .mapping = &.{0x1E935}, .status2 = .none, },
6420 .{ .cp = 0x1E914, .status = .mapped, .mapping = &.{0x1E936}, .status2 = .none, },
6421 .{ .cp = 0x1E915, .status = .mapped, .mapping = &.{0x1E937}, .status2 = .none, },
6422 .{ .cp = 0x1E916, .status = .mapped, .mapping = &.{0x1E938}, .status2 = .none, },
6423 .{ .cp = 0x1E917, .status = .mapped, .mapping = &.{0x1E939}, .status2 = .none, },
6424 .{ .cp = 0x1E918, .status = .mapped, .mapping = &.{0x1E93A}, .status2 = .none, },
6425 .{ .cp = 0x1E919, .status = .mapped, .mapping = &.{0x1E93B}, .status2 = .none, },
6426 .{ .cp = 0x1E91A, .status = .mapped, .mapping = &.{0x1E93C}, .status2 = .none, },
6427 .{ .cp = 0x1E91B, .status = .mapped, .mapping = &.{0x1E93D}, .status2 = .none, },
6428 .{ .cp = 0x1E91C, .status = .mapped, .mapping = &.{0x1E93E}, .status2 = .none, },
6429 .{ .cp = 0x1E91D, .status = .mapped, .mapping = &.{0x1E93F}, .status2 = .none, },
6430 .{ .cp = 0x1E91E, .status = .mapped, .mapping = &.{0x1E940}, .status2 = .none, },
6431 .{ .cp = 0x1E91F, .status = .mapped, .mapping = &.{0x1E941}, .status2 = .none, },
6432 .{ .cp = 0x1E920, .status = .mapped, .mapping = &.{0x1E942}, .status2 = .none, },
6433 .{ .cp = 0x1E921, .status = .mapped, .mapping = &.{0x1E943}, .status2 = .none, },
6434 .{ .cp = 0x1E94B, .status = .valid, .mapping = &.{}, .status2 = .none, },
6435 .{ .cp = 0x1EE00, .status = .mapped, .mapping = &.{0x0627}, .status2 = .none, },
6436 .{ .cp = 0x1EE01, .status = .mapped, .mapping = &.{0x0628}, .status2 = .none, },
6437 .{ .cp = 0x1EE02, .status = .mapped, .mapping = &.{0x062C}, .status2 = .none, },
6438 .{ .cp = 0x1EE03, .status = .mapped, .mapping = &.{0x062F}, .status2 = .none, },
6439 .{ .cp = 0x1EE04, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
6440 .{ .cp = 0x1EE05, .status = .mapped, .mapping = &.{0x0648}, .status2 = .none, },
6441 .{ .cp = 0x1EE06, .status = .mapped, .mapping = &.{0x0632}, .status2 = .none, },
6442 .{ .cp = 0x1EE07, .status = .mapped, .mapping = &.{0x062D}, .status2 = .none, },
6443 .{ .cp = 0x1EE08, .status = .mapped, .mapping = &.{0x0637}, .status2 = .none, },
6444 .{ .cp = 0x1EE09, .status = .mapped, .mapping = &.{0x064A}, .status2 = .none, },
6445 .{ .cp = 0x1EE0A, .status = .mapped, .mapping = &.{0x0643}, .status2 = .none, },
6446 .{ .cp = 0x1EE0B, .status = .mapped, .mapping = &.{0x0644}, .status2 = .none, },
6447 .{ .cp = 0x1EE0C, .status = .mapped, .mapping = &.{0x0645}, .status2 = .none, },
6448 .{ .cp = 0x1EE0D, .status = .mapped, .mapping = &.{0x0646}, .status2 = .none, },
6449 .{ .cp = 0x1EE0E, .status = .mapped, .mapping = &.{0x0633}, .status2 = .none, },
6450 .{ .cp = 0x1EE0F, .status = .mapped, .mapping = &.{0x0639}, .status2 = .none, },
6451 .{ .cp = 0x1EE10, .status = .mapped, .mapping = &.{0x0641}, .status2 = .none, },
6452 .{ .cp = 0x1EE11, .status = .mapped, .mapping = &.{0x0635}, .status2 = .none, },
6453 .{ .cp = 0x1EE12, .status = .mapped, .mapping = &.{0x0642}, .status2 = .none, },
6454 .{ .cp = 0x1EE13, .status = .mapped, .mapping = &.{0x0631}, .status2 = .none, },
6455 .{ .cp = 0x1EE14, .status = .mapped, .mapping = &.{0x0634}, .status2 = .none, },
6456 .{ .cp = 0x1EE15, .status = .mapped, .mapping = &.{0x062A}, .status2 = .none, },
6457 .{ .cp = 0x1EE16, .status = .mapped, .mapping = &.{0x062B}, .status2 = .none, },
6458 .{ .cp = 0x1EE17, .status = .mapped, .mapping = &.{0x062E}, .status2 = .none, },
6459 .{ .cp = 0x1EE18, .status = .mapped, .mapping = &.{0x0630}, .status2 = .none, },
6460 .{ .cp = 0x1EE19, .status = .mapped, .mapping = &.{0x0636}, .status2 = .none, },
6461 .{ .cp = 0x1EE1A, .status = .mapped, .mapping = &.{0x0638}, .status2 = .none, },
6462 .{ .cp = 0x1EE1B, .status = .mapped, .mapping = &.{0x063A}, .status2 = .none, },
6463 .{ .cp = 0x1EE1C, .status = .mapped, .mapping = &.{0x066E}, .status2 = .none, },
6464 .{ .cp = 0x1EE1D, .status = .mapped, .mapping = &.{0x06BA}, .status2 = .none, },
6465 .{ .cp = 0x1EE1E, .status = .mapped, .mapping = &.{0x06A1}, .status2 = .none, },
6466 .{ .cp = 0x1EE1F, .status = .mapped, .mapping = &.{0x066F}, .status2 = .none, },
6467 .{ .cp = 0x1EE20, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
6468 .{ .cp = 0x1EE21, .status = .mapped, .mapping = &.{0x0628}, .status2 = .none, },
6469 .{ .cp = 0x1EE22, .status = .mapped, .mapping = &.{0x062C}, .status2 = .none, },
6470 .{ .cp = 0x1EE23, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
6471 .{ .cp = 0x1EE24, .status = .mapped, .mapping = &.{0x0647}, .status2 = .none, },
6472 .{ .cp = 0x1EE27, .status = .mapped, .mapping = &.{0x062D}, .status2 = .none, },
6473 .{ .cp = 0x1EE28, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
6474 .{ .cp = 0x1EE29, .status = .mapped, .mapping = &.{0x064A}, .status2 = .none, },
6475 .{ .cp = 0x1EE2A, .status = .mapped, .mapping = &.{0x0643}, .status2 = .none, },
6476 .{ .cp = 0x1EE2B, .status = .mapped, .mapping = &.{0x0644}, .status2 = .none, },
6477 .{ .cp = 0x1EE2C, .status = .mapped, .mapping = &.{0x0645}, .status2 = .none, },
6478 .{ .cp = 0x1EE2D, .status = .mapped, .mapping = &.{0x0646}, .status2 = .none, },
6479 .{ .cp = 0x1EE2E, .status = .mapped, .mapping = &.{0x0633}, .status2 = .none, },
6480 .{ .cp = 0x1EE2F, .status = .mapped, .mapping = &.{0x0639}, .status2 = .none, },
6481 .{ .cp = 0x1EE30, .status = .mapped, .mapping = &.{0x0641}, .status2 = .none, },
6482 .{ .cp = 0x1EE31, .status = .mapped, .mapping = &.{0x0635}, .status2 = .none, },
6483 .{ .cp = 0x1EE32, .status = .mapped, .mapping = &.{0x0642}, .status2 = .none, },
6484 .{ .cp = 0x1EE33, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
6485 .{ .cp = 0x1EE34, .status = .mapped, .mapping = &.{0x0634}, .status2 = .none, },
6486 .{ .cp = 0x1EE35, .status = .mapped, .mapping = &.{0x062A}, .status2 = .none, },
6487 .{ .cp = 0x1EE36, .status = .mapped, .mapping = &.{0x062B}, .status2 = .none, },
6488 .{ .cp = 0x1EE37, .status = .mapped, .mapping = &.{0x062E}, .status2 = .none, },
6489 .{ .cp = 0x1EE38, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
6490 .{ .cp = 0x1EE39, .status = .mapped, .mapping = &.{0x0636}, .status2 = .none, },
6491 .{ .cp = 0x1EE3A, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
6492 .{ .cp = 0x1EE3B, .status = .mapped, .mapping = &.{0x063A}, .status2 = .none, },
6493 .{ .cp = 0x1EE42, .status = .mapped, .mapping = &.{0x062C}, .status2 = .none, },
6494 .{ .cp = 0x1EE47, .status = .mapped, .mapping = &.{0x062D}, .status2 = .none, },
6495 .{ .cp = 0x1EE48, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
6496 .{ .cp = 0x1EE49, .status = .mapped, .mapping = &.{0x064A}, .status2 = .none, },
6497 .{ .cp = 0x1EE4A, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
6498 .{ .cp = 0x1EE4B, .status = .mapped, .mapping = &.{0x0644}, .status2 = .none, },
6499 .{ .cp = 0x1EE4C, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
6500 .{ .cp = 0x1EE4D, .status = .mapped, .mapping = &.{0x0646}, .status2 = .none, },
6501 .{ .cp = 0x1EE4E, .status = .mapped, .mapping = &.{0x0633}, .status2 = .none, },
6502 .{ .cp = 0x1EE4F, .status = .mapped, .mapping = &.{0x0639}, .status2 = .none, },
6503 .{ .cp = 0x1EE50, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
6504 .{ .cp = 0x1EE51, .status = .mapped, .mapping = &.{0x0635}, .status2 = .none, },
6505 .{ .cp = 0x1EE52, .status = .mapped, .mapping = &.{0x0642}, .status2 = .none, },
6506 .{ .cp = 0x1EE53, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
6507 .{ .cp = 0x1EE54, .status = .mapped, .mapping = &.{0x0634}, .status2 = .none, },
6508 .{ .cp = 0x1EE57, .status = .mapped, .mapping = &.{0x062E}, .status2 = .none, },
6509 .{ .cp = 0x1EE58, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
6510 .{ .cp = 0x1EE59, .status = .mapped, .mapping = &.{0x0636}, .status2 = .none, },
6511 .{ .cp = 0x1EE5A, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
6512 .{ .cp = 0x1EE5B, .status = .mapped, .mapping = &.{0x063A}, .status2 = .none, },
6513 .{ .cp = 0x1EE5C, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
6514 .{ .cp = 0x1EE5D, .status = .mapped, .mapping = &.{0x06BA}, .status2 = .none, },
6515 .{ .cp = 0x1EE5E, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
6516 .{ .cp = 0x1EE5F, .status = .mapped, .mapping = &.{0x066F}, .status2 = .none, },
6517 .{ .cp = 0x1EE60, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
6518 .{ .cp = 0x1EE61, .status = .mapped, .mapping = &.{0x0628}, .status2 = .none, },
6519 .{ .cp = 0x1EE62, .status = .mapped, .mapping = &.{0x062C}, .status2 = .none, },
6520 .{ .cp = 0x1EE63, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
6521 .{ .cp = 0x1EE64, .status = .mapped, .mapping = &.{0x0647}, .status2 = .none, },
6522 .{ .cp = 0x1EE67, .status = .mapped, .mapping = &.{0x062D}, .status2 = .none, },
6523 .{ .cp = 0x1EE68, .status = .mapped, .mapping = &.{0x0637}, .status2 = .none, },
6524 .{ .cp = 0x1EE69, .status = .mapped, .mapping = &.{0x064A}, .status2 = .none, },
6525 .{ .cp = 0x1EE6A, .status = .mapped, .mapping = &.{0x0643}, .status2 = .none, },
6526 .{ .cp = 0x1EE6B, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
6527 .{ .cp = 0x1EE6C, .status = .mapped, .mapping = &.{0x0645}, .status2 = .none, },
6528 .{ .cp = 0x1EE6D, .status = .mapped, .mapping = &.{0x0646}, .status2 = .none, },
6529 .{ .cp = 0x1EE6E, .status = .mapped, .mapping = &.{0x0633}, .status2 = .none, },
6530 .{ .cp = 0x1EE6F, .status = .mapped, .mapping = &.{0x0639}, .status2 = .none, },
6531 .{ .cp = 0x1EE70, .status = .mapped, .mapping = &.{0x0641}, .status2 = .none, },
6532 .{ .cp = 0x1EE71, .status = .mapped, .mapping = &.{0x0635}, .status2 = .none, },
6533 .{ .cp = 0x1EE72, .status = .mapped, .mapping = &.{0x0642}, .status2 = .none, },
6534 .{ .cp = 0x1EE73, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
6535 .{ .cp = 0x1EE74, .status = .mapped, .mapping = &.{0x0634}, .status2 = .none, },
6536 .{ .cp = 0x1EE75, .status = .mapped, .mapping = &.{0x062A}, .status2 = .none, },
6537 .{ .cp = 0x1EE76, .status = .mapped, .mapping = &.{0x062B}, .status2 = .none, },
6538 .{ .cp = 0x1EE77, .status = .mapped, .mapping = &.{0x062E}, .status2 = .none, },
6539 .{ .cp = 0x1EE78, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
6540 .{ .cp = 0x1EE79, .status = .mapped, .mapping = &.{0x0636}, .status2 = .none, },
6541 .{ .cp = 0x1EE7A, .status = .mapped, .mapping = &.{0x0638}, .status2 = .none, },
6542 .{ .cp = 0x1EE7B, .status = .mapped, .mapping = &.{0x063A}, .status2 = .none, },
6543 .{ .cp = 0x1EE7C, .status = .mapped, .mapping = &.{0x066E}, .status2 = .none, },
6544 .{ .cp = 0x1EE7D, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
6545 .{ .cp = 0x1EE7E, .status = .mapped, .mapping = &.{0x06A1}, .status2 = .none, },
6546 .{ .cp = 0x1EE7F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
6547 .{ .cp = 0x1EE80, .status = .mapped, .mapping = &.{0x0627}, .status2 = .none, },
6548 .{ .cp = 0x1EE81, .status = .mapped, .mapping = &.{0x0628}, .status2 = .none, },
6549 .{ .cp = 0x1EE82, .status = .mapped, .mapping = &.{0x062C}, .status2 = .none, },
6550 .{ .cp = 0x1EE83, .status = .mapped, .mapping = &.{0x062F}, .status2 = .none, },
6551 .{ .cp = 0x1EE84, .status = .mapped, .mapping = &.{0x0647}, .status2 = .none, },
6552 .{ .cp = 0x1EE85, .status = .mapped, .mapping = &.{0x0648}, .status2 = .none, },
6553 .{ .cp = 0x1EE86, .status = .mapped, .mapping = &.{0x0632}, .status2 = .none, },
6554 .{ .cp = 0x1EE87, .status = .mapped, .mapping = &.{0x062D}, .status2 = .none, },
6555 .{ .cp = 0x1EE88, .status = .mapped, .mapping = &.{0x0637}, .status2 = .none, },
6556 .{ .cp = 0x1EE89, .status = .mapped, .mapping = &.{0x064A}, .status2 = .none, },
6557 .{ .cp = 0x1EE8A, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
6558 .{ .cp = 0x1EE8B, .status = .mapped, .mapping = &.{0x0644}, .status2 = .none, },
6559 .{ .cp = 0x1EE8C, .status = .mapped, .mapping = &.{0x0645}, .status2 = .none, },
6560 .{ .cp = 0x1EE8D, .status = .mapped, .mapping = &.{0x0646}, .status2 = .none, },
6561 .{ .cp = 0x1EE8E, .status = .mapped, .mapping = &.{0x0633}, .status2 = .none, },
6562 .{ .cp = 0x1EE8F, .status = .mapped, .mapping = &.{0x0639}, .status2 = .none, },
6563 .{ .cp = 0x1EE90, .status = .mapped, .mapping = &.{0x0641}, .status2 = .none, },
6564 .{ .cp = 0x1EE91, .status = .mapped, .mapping = &.{0x0635}, .status2 = .none, },
6565 .{ .cp = 0x1EE92, .status = .mapped, .mapping = &.{0x0642}, .status2 = .none, },
6566 .{ .cp = 0x1EE93, .status = .mapped, .mapping = &.{0x0631}, .status2 = .none, },
6567 .{ .cp = 0x1EE94, .status = .mapped, .mapping = &.{0x0634}, .status2 = .none, },
6568 .{ .cp = 0x1EE95, .status = .mapped, .mapping = &.{0x062A}, .status2 = .none, },
6569 .{ .cp = 0x1EE96, .status = .mapped, .mapping = &.{0x062B}, .status2 = .none, },
6570 .{ .cp = 0x1EE97, .status = .mapped, .mapping = &.{0x062E}, .status2 = .none, },
6571 .{ .cp = 0x1EE98, .status = .mapped, .mapping = &.{0x0630}, .status2 = .none, },
6572 .{ .cp = 0x1EE99, .status = .mapped, .mapping = &.{0x0636}, .status2 = .none, },
6573 .{ .cp = 0x1EE9A, .status = .mapped, .mapping = &.{0x0638}, .status2 = .none, },
6574 .{ .cp = 0x1EE9B, .status = .mapped, .mapping = &.{0x063A}, .status2 = .none, },
6575 .{ .cp = 0x1EEA1, .status = .mapped, .mapping = &.{0x0628}, .status2 = .none, },
6576 .{ .cp = 0x1EEA2, .status = .mapped, .mapping = &.{0x062C}, .status2 = .none, },
6577 .{ .cp = 0x1EEA3, .status = .mapped, .mapping = &.{0x062F}, .status2 = .none, },
6578 .{ .cp = 0x1EEA4, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
6579 .{ .cp = 0x1EEA5, .status = .mapped, .mapping = &.{0x0648}, .status2 = .none, },
6580 .{ .cp = 0x1EEA6, .status = .mapped, .mapping = &.{0x0632}, .status2 = .none, },
6581 .{ .cp = 0x1EEA7, .status = .mapped, .mapping = &.{0x062D}, .status2 = .none, },
6582 .{ .cp = 0x1EEA8, .status = .mapped, .mapping = &.{0x0637}, .status2 = .none, },
6583 .{ .cp = 0x1EEA9, .status = .mapped, .mapping = &.{0x064A}, .status2 = .none, },
6584 .{ .cp = 0x1EEAA, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
6585 .{ .cp = 0x1EEAB, .status = .mapped, .mapping = &.{0x0644}, .status2 = .none, },
6586 .{ .cp = 0x1EEAC, .status = .mapped, .mapping = &.{0x0645}, .status2 = .none, },
6587 .{ .cp = 0x1EEAD, .status = .mapped, .mapping = &.{0x0646}, .status2 = .none, },
6588 .{ .cp = 0x1EEAE, .status = .mapped, .mapping = &.{0x0633}, .status2 = .none, },
6589 .{ .cp = 0x1EEAF, .status = .mapped, .mapping = &.{0x0639}, .status2 = .none, },
6590 .{ .cp = 0x1EEB0, .status = .mapped, .mapping = &.{0x0641}, .status2 = .none, },
6591 .{ .cp = 0x1EEB1, .status = .mapped, .mapping = &.{0x0635}, .status2 = .none, },
6592 .{ .cp = 0x1EEB2, .status = .mapped, .mapping = &.{0x0642}, .status2 = .none, },
6593 .{ .cp = 0x1EEB3, .status = .mapped, .mapping = &.{0x0631}, .status2 = .none, },
6594 .{ .cp = 0x1EEB4, .status = .mapped, .mapping = &.{0x0634}, .status2 = .none, },
6595 .{ .cp = 0x1EEB5, .status = .mapped, .mapping = &.{0x062A}, .status2 = .none, },
6596 .{ .cp = 0x1EEB6, .status = .mapped, .mapping = &.{0x062B}, .status2 = .none, },
6597 .{ .cp = 0x1EEB7, .status = .mapped, .mapping = &.{0x062E}, .status2 = .none, },
6598 .{ .cp = 0x1EEB8, .status = .mapped, .mapping = &.{0x0630}, .status2 = .none, },
6599 .{ .cp = 0x1EEB9, .status = .mapped, .mapping = &.{0x0636}, .status2 = .none, },
6600 .{ .cp = 0x1EEBA, .status = .mapped, .mapping = &.{0x0638}, .status2 = .none, },
6601 .{ .cp = 0x1EEBB, .status = .mapped, .mapping = &.{0x063A}, .status2 = .none, },
6602 .{ .cp = 0x1F0BF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6603 .{ .cp = 0x1F0C0, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
6604 .{ .cp = 0x1F0D0, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
6605 .{ .cp = 0x1F100, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
6606 .{ .cp = 0x1F101, .status = .mapped, .mapping = &.{0x0030,0x002C}, .status2 = .none, },
6607 .{ .cp = 0x1F102, .status = .mapped, .mapping = &.{0x0031,0x002C}, .status2 = .none, },
6608 .{ .cp = 0x1F103, .status = .mapped, .mapping = &.{0x0032,0x002C}, .status2 = .none, },
6609 .{ .cp = 0x1F104, .status = .mapped, .mapping = &.{0x0033,0x002C}, .status2 = .none, },
6610 .{ .cp = 0x1F105, .status = .mapped, .mapping = &.{0x0034,0x002C}, .status2 = .none, },
6611 .{ .cp = 0x1F106, .status = .mapped, .mapping = &.{0x0035,0x002C}, .status2 = .none, },
6612 .{ .cp = 0x1F107, .status = .mapped, .mapping = &.{0x0036,0x002C}, .status2 = .none, },
6613 .{ .cp = 0x1F108, .status = .mapped, .mapping = &.{0x0037,0x002C}, .status2 = .none, },
6614 .{ .cp = 0x1F109, .status = .mapped, .mapping = &.{0x0038,0x002C}, .status2 = .none, },
6615 .{ .cp = 0x1F10A, .status = .mapped, .mapping = &.{0x0039,0x002C}, .status2 = .none, },
6616 .{ .cp = 0x1F110, .status = .mapped, .mapping = &.{0x0028,0x0061,0x0029}, .status2 = .none, },
6617 .{ .cp = 0x1F111, .status = .mapped, .mapping = &.{0x0028,0x0062,0x0029}, .status2 = .none, },
6618 .{ .cp = 0x1F112, .status = .mapped, .mapping = &.{0x0028,0x0063,0x0029}, .status2 = .none, },
6619 .{ .cp = 0x1F113, .status = .mapped, .mapping = &.{0x0028,0x0064,0x0029}, .status2 = .none, },
6620 .{ .cp = 0x1F114, .status = .mapped, .mapping = &.{0x0028,0x0065,0x0029}, .status2 = .none, },
6621 .{ .cp = 0x1F115, .status = .mapped, .mapping = &.{0x0028,0x0066,0x0029}, .status2 = .none, },
6622 .{ .cp = 0x1F116, .status = .mapped, .mapping = &.{0x0028,0x0067,0x0029}, .status2 = .none, },
6623 .{ .cp = 0x1F117, .status = .mapped, .mapping = &.{0x0028,0x0068,0x0029}, .status2 = .none, },
6624 .{ .cp = 0x1F118, .status = .mapped, .mapping = &.{0x0028,0x0069,0x0029}, .status2 = .none, },
6625 .{ .cp = 0x1F119, .status = .mapped, .mapping = &.{0x0028,0x006A,0x0029}, .status2 = .none, },
6626 .{ .cp = 0x1F11A, .status = .mapped, .mapping = &.{0x0028,0x006B,0x0029}, .status2 = .none, },
6627 .{ .cp = 0x1F11B, .status = .mapped, .mapping = &.{0x0028,0x006C,0x0029}, .status2 = .none, },
6628 .{ .cp = 0x1F11C, .status = .mapped, .mapping = &.{0x0028,0x006D,0x0029}, .status2 = .none, },
6629 .{ .cp = 0x1F11D, .status = .mapped, .mapping = &.{0x0028,0x006E,0x0029}, .status2 = .none, },
6630 .{ .cp = 0x1F11E, .status = .mapped, .mapping = &.{0x0028,0x006F,0x0029}, .status2 = .none, },
6631 .{ .cp = 0x1F11F, .status = .mapped, .mapping = &.{0x0028,0x0070,0x0029}, .status2 = .none, },
6632 .{ .cp = 0x1F120, .status = .mapped, .mapping = &.{0x0028,0x0071,0x0029}, .status2 = .none, },
6633 .{ .cp = 0x1F121, .status = .mapped, .mapping = &.{0x0028,0x0072,0x0029}, .status2 = .none, },
6634 .{ .cp = 0x1F122, .status = .mapped, .mapping = &.{0x0028,0x0073,0x0029}, .status2 = .none, },
6635 .{ .cp = 0x1F123, .status = .mapped, .mapping = &.{0x0028,0x0074,0x0029}, .status2 = .none, },
6636 .{ .cp = 0x1F124, .status = .mapped, .mapping = &.{0x0028,0x0075,0x0029}, .status2 = .none, },
6637 .{ .cp = 0x1F125, .status = .mapped, .mapping = &.{0x0028,0x0076,0x0029}, .status2 = .none, },
6638 .{ .cp = 0x1F126, .status = .mapped, .mapping = &.{0x0028,0x0077,0x0029}, .status2 = .none, },
6639 .{ .cp = 0x1F127, .status = .mapped, .mapping = &.{0x0028,0x0078,0x0029}, .status2 = .none, },
6640 .{ .cp = 0x1F128, .status = .mapped, .mapping = &.{0x0028,0x0079,0x0029}, .status2 = .none, },
6641 .{ .cp = 0x1F129, .status = .mapped, .mapping = &.{0x0028,0x007A,0x0029}, .status2 = .none, },
6642 .{ .cp = 0x1F12A, .status = .mapped, .mapping = &.{0x3014,0x0073,0x3015}, .status2 = .none, },
6643 .{ .cp = 0x1F12B, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, },
6644 .{ .cp = 0x1F12C, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, },
6645 .{ .cp = 0x1F12D, .status = .mapped, .mapping = &.{0x0063,0x0064}, .status2 = .none, },
6646 .{ .cp = 0x1F12E, .status = .mapped, .mapping = &.{0x0077,0x007A}, .status2 = .none, },
6647 .{ .cp = 0x1F12F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6648 .{ .cp = 0x1F130, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, },
6649 .{ .cp = 0x1F131, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, },
6650 .{ .cp = 0x1F132, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, },
6651 .{ .cp = 0x1F133, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, },
6652 .{ .cp = 0x1F134, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, },
6653 .{ .cp = 0x1F135, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, },
6654 .{ .cp = 0x1F136, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, },
6655 .{ .cp = 0x1F137, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, },
6656 .{ .cp = 0x1F138, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, },
6657 .{ .cp = 0x1F139, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, },
6658 .{ .cp = 0x1F13A, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, },
6659 .{ .cp = 0x1F13B, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, },
6660 .{ .cp = 0x1F13C, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, },
6661 .{ .cp = 0x1F13D, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, },
6662 .{ .cp = 0x1F13E, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, },
6663 .{ .cp = 0x1F13F, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, },
6664 .{ .cp = 0x1F140, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, },
6665 .{ .cp = 0x1F141, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, },
6666 .{ .cp = 0x1F142, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, },
6667 .{ .cp = 0x1F143, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, },
6668 .{ .cp = 0x1F144, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, },
6669 .{ .cp = 0x1F145, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, },
6670 .{ .cp = 0x1F146, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, },
6671 .{ .cp = 0x1F147, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, },
6672 .{ .cp = 0x1F148, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, },
6673 .{ .cp = 0x1F149, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, },
6674 .{ .cp = 0x1F14A, .status = .mapped, .mapping = &.{0x0068,0x0076}, .status2 = .none, },
6675 .{ .cp = 0x1F14B, .status = .mapped, .mapping = &.{0x006D,0x0076}, .status2 = .none, },
6676 .{ .cp = 0x1F14C, .status = .mapped, .mapping = &.{0x0073,0x0064}, .status2 = .none, },
6677 .{ .cp = 0x1F14D, .status = .mapped, .mapping = &.{0x0073,0x0073}, .status2 = .none, },
6678 .{ .cp = 0x1F14E, .status = .mapped, .mapping = &.{0x0070,0x0070,0x0076}, .status2 = .none, },
6679 .{ .cp = 0x1F14F, .status = .mapped, .mapping = &.{0x0077,0x0063}, .status2 = .none, },
6680 .{ .cp = 0x1F157, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6681 .{ .cp = 0x1F15F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6682 .{ .cp = 0x1F16A, .status = .mapped, .mapping = &.{0x006D,0x0063}, .status2 = .none, },
6683 .{ .cp = 0x1F16B, .status = .mapped, .mapping = &.{0x006D,0x0064}, .status2 = .none, },
6684 .{ .cp = 0x1F16C, .status = .mapped, .mapping = &.{0x006D,0x0072}, .status2 = .none, },
6685 .{ .cp = 0x1F179, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6686 .{ .cp = 0x1F17A, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6687 .{ .cp = 0x1F17F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6688 .{ .cp = 0x1F190, .status = .mapped, .mapping = &.{0x0064,0x006A}, .status2 = .none, },
6689 .{ .cp = 0x1F1AD, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6690 .{ .cp = 0x1F200, .status = .mapped, .mapping = &.{0x307B,0x304B}, .status2 = .none, },
6691 .{ .cp = 0x1F201, .status = .mapped, .mapping = &.{0x30B3,0x30B3}, .status2 = .none, },
6692 .{ .cp = 0x1F202, .status = .mapped, .mapping = &.{0x30B5}, .status2 = .none, },
6693 .{ .cp = 0x1F210, .status = .mapped, .mapping = &.{0x624B}, .status2 = .none, },
6694 .{ .cp = 0x1F211, .status = .mapped, .mapping = &.{0x5B57}, .status2 = .none, },
6695 .{ .cp = 0x1F212, .status = .mapped, .mapping = &.{0x53CC}, .status2 = .none, },
6696 .{ .cp = 0x1F213, .status = .mapped, .mapping = &.{0x30C7}, .status2 = .none, },
6697 .{ .cp = 0x1F214, .status = .mapped, .mapping = &.{0x4E8C}, .status2 = .none, },
6698 .{ .cp = 0x1F215, .status = .mapped, .mapping = &.{0x591A}, .status2 = .none, },
6699 .{ .cp = 0x1F216, .status = .mapped, .mapping = &.{0x89E3}, .status2 = .none, },
6700 .{ .cp = 0x1F217, .status = .mapped, .mapping = &.{0x5929}, .status2 = .none, },
6701 .{ .cp = 0x1F218, .status = .mapped, .mapping = &.{0x4EA4}, .status2 = .none, },
6702 .{ .cp = 0x1F219, .status = .mapped, .mapping = &.{0x6620}, .status2 = .none, },
6703 .{ .cp = 0x1F21A, .status = .mapped, .mapping = &.{0x7121}, .status2 = .none, },
6704 .{ .cp = 0x1F21B, .status = .mapped, .mapping = &.{0x6599}, .status2 = .none, },
6705 .{ .cp = 0x1F21C, .status = .mapped, .mapping = &.{0x524D}, .status2 = .none, },
6706 .{ .cp = 0x1F21D, .status = .mapped, .mapping = &.{0x5F8C}, .status2 = .none, },
6707 .{ .cp = 0x1F21E, .status = .mapped, .mapping = &.{0x518D}, .status2 = .none, },
6708 .{ .cp = 0x1F21F, .status = .mapped, .mapping = &.{0x65B0}, .status2 = .none, },
6709 .{ .cp = 0x1F220, .status = .mapped, .mapping = &.{0x521D}, .status2 = .none, },
6710 .{ .cp = 0x1F221, .status = .mapped, .mapping = &.{0x7D42}, .status2 = .none, },
6711 .{ .cp = 0x1F222, .status = .mapped, .mapping = &.{0x751F}, .status2 = .none, },
6712 .{ .cp = 0x1F223, .status = .mapped, .mapping = &.{0x8CA9}, .status2 = .none, },
6713 .{ .cp = 0x1F224, .status = .mapped, .mapping = &.{0x58F0}, .status2 = .none, },
6714 .{ .cp = 0x1F225, .status = .mapped, .mapping = &.{0x5439}, .status2 = .none, },
6715 .{ .cp = 0x1F226, .status = .mapped, .mapping = &.{0x6F14}, .status2 = .none, },
6716 .{ .cp = 0x1F227, .status = .mapped, .mapping = &.{0x6295}, .status2 = .none, },
6717 .{ .cp = 0x1F228, .status = .mapped, .mapping = &.{0x6355}, .status2 = .none, },
6718 .{ .cp = 0x1F229, .status = .mapped, .mapping = &.{0x4E00}, .status2 = .none, },
6719 .{ .cp = 0x1F22A, .status = .mapped, .mapping = &.{0x4E09}, .status2 = .none, },
6720 .{ .cp = 0x1F22B, .status = .mapped, .mapping = &.{0x904A}, .status2 = .none, },
6721 .{ .cp = 0x1F22C, .status = .mapped, .mapping = &.{0x5DE6}, .status2 = .none, },
6722 .{ .cp = 0x1F22D, .status = .mapped, .mapping = &.{0x4E2D}, .status2 = .none, },
6723 .{ .cp = 0x1F22E, .status = .mapped, .mapping = &.{0x53F3}, .status2 = .none, },
6724 .{ .cp = 0x1F22F, .status = .mapped, .mapping = &.{0x6307}, .status2 = .none, },
6725 .{ .cp = 0x1F230, .status = .mapped, .mapping = &.{0x8D70}, .status2 = .none, },
6726 .{ .cp = 0x1F231, .status = .mapped, .mapping = &.{0x6253}, .status2 = .none, },
6727 .{ .cp = 0x1F232, .status = .mapped, .mapping = &.{0x7981}, .status2 = .none, },
6728 .{ .cp = 0x1F233, .status = .mapped, .mapping = &.{0x7A7A}, .status2 = .none, },
6729 .{ .cp = 0x1F234, .status = .mapped, .mapping = &.{0x5408}, .status2 = .none, },
6730 .{ .cp = 0x1F235, .status = .mapped, .mapping = &.{0x6E80}, .status2 = .none, },
6731 .{ .cp = 0x1F236, .status = .mapped, .mapping = &.{0x6709}, .status2 = .none, },
6732 .{ .cp = 0x1F237, .status = .mapped, .mapping = &.{0x6708}, .status2 = .none, },
6733 .{ .cp = 0x1F238, .status = .mapped, .mapping = &.{0x7533}, .status2 = .none, },
6734 .{ .cp = 0x1F239, .status = .mapped, .mapping = &.{0x5272}, .status2 = .none, },
6735 .{ .cp = 0x1F23A, .status = .mapped, .mapping = &.{0x55B6}, .status2 = .none, },
6736 .{ .cp = 0x1F23B, .status = .mapped, .mapping = &.{0x914D}, .status2 = .none, },
6737 .{ .cp = 0x1F240, .status = .mapped, .mapping = &.{0x3014,0x672C,0x3015}, .status2 = .none, },
6738 .{ .cp = 0x1F241, .status = .mapped, .mapping = &.{0x3014,0x4E09,0x3015}, .status2 = .none, },
6739 .{ .cp = 0x1F242, .status = .mapped, .mapping = &.{0x3014,0x4E8C,0x3015}, .status2 = .none, },
6740 .{ .cp = 0x1F243, .status = .mapped, .mapping = &.{0x3014,0x5B89,0x3015}, .status2 = .none, },
6741 .{ .cp = 0x1F244, .status = .mapped, .mapping = &.{0x3014,0x70B9,0x3015}, .status2 = .none, },
6742 .{ .cp = 0x1F245, .status = .mapped, .mapping = &.{0x3014,0x6253,0x3015}, .status2 = .none, },
6743 .{ .cp = 0x1F246, .status = .mapped, .mapping = &.{0x3014,0x76D7,0x3015}, .status2 = .none, },
6744 .{ .cp = 0x1F247, .status = .mapped, .mapping = &.{0x3014,0x52DD,0x3015}, .status2 = .none, },
6745 .{ .cp = 0x1F248, .status = .mapped, .mapping = &.{0x3014,0x6557,0x3015}, .status2 = .none, },
6746 .{ .cp = 0x1F250, .status = .mapped, .mapping = &.{0x5F97}, .status2 = .none, },
6747 .{ .cp = 0x1F251, .status = .mapped, .mapping = &.{0x53EF}, .status2 = .none, },
6748 .{ .cp = 0x1F336, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6749 .{ .cp = 0x1F37D, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6750 .{ .cp = 0x1F3C5, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6751 .{ .cp = 0x1F43F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6752 .{ .cp = 0x1F440, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6753 .{ .cp = 0x1F441, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6754 .{ .cp = 0x1F4F8, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6755 .{ .cp = 0x1F4FF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6756 .{ .cp = 0x1F57A, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6757 .{ .cp = 0x1F5A4, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6758 .{ .cp = 0x1F600, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6759 .{ .cp = 0x1F611, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6760 .{ .cp = 0x1F615, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6761 .{ .cp = 0x1F616, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6762 .{ .cp = 0x1F617, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6763 .{ .cp = 0x1F618, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6764 .{ .cp = 0x1F619, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6765 .{ .cp = 0x1F61A, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6766 .{ .cp = 0x1F61B, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6767 .{ .cp = 0x1F61F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6768 .{ .cp = 0x1F62C, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6769 .{ .cp = 0x1F62D, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6770 .{ .cp = 0x1F634, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6771 .{ .cp = 0x1F6D0, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6772 .{ .cp = 0x1F6D5, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6773 .{ .cp = 0x1F6D8, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6774 .{ .cp = 0x1F6DC, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6775 .{ .cp = 0x1F6F9, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6776 .{ .cp = 0x1F6FA, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6777 .{ .cp = 0x1F7D9, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6778 .{ .cp = 0x1F7F0, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6779 .{ .cp = 0x1F90C, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6780 .{ .cp = 0x1F91F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6781 .{ .cp = 0x1F930, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6782 .{ .cp = 0x1F93F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6783 .{ .cp = 0x1F94C, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6784 .{ .cp = 0x1F971, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6785 .{ .cp = 0x1F972, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6786 .{ .cp = 0x1F979, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6787 .{ .cp = 0x1F97A, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6788 .{ .cp = 0x1F97B, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6789 .{ .cp = 0x1F9C0, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6790 .{ .cp = 0x1F9CB, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6791 .{ .cp = 0x1F9CC, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6792 .{ .cp = 0x1FA74, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6793 .{ .cp = 0x1FA89, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6794 .{ .cp = 0x1FA8A, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6795 .{ .cp = 0x1FA8E, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6796 .{ .cp = 0x1FA8F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6797 .{ .cp = 0x1FABE, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6798 .{ .cp = 0x1FABF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6799 .{ .cp = 0x1FAC6, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6800 .{ .cp = 0x1FAC7, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
6801 .{ .cp = 0x1FAC8, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6802 .{ .cp = 0x1FACD, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6803 .{ .cp = 0x1FADC, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6804 .{ .cp = 0x1FADF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6805 .{ .cp = 0x1FAE8, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6806 .{ .cp = 0x1FAE9, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6807 .{ .cp = 0x1FAEA, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6808 .{ .cp = 0x1FAEF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6809 .{ .cp = 0x1FB93, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
6810 .{ .cp = 0x1FBF0, .status = .mapped, .mapping = &.{0x0030}, .status2 = .none, },
6811 .{ .cp = 0x1FBF1, .status = .mapped, .mapping = &.{0x0031}, .status2 = .none, },
6812 .{ .cp = 0x1FBF2, .status = .mapped, .mapping = &.{0x0032}, .status2 = .none, },
6813 .{ .cp = 0x1FBF3, .status = .mapped, .mapping = &.{0x0033}, .status2 = .none, },
6814 .{ .cp = 0x1FBF4, .status = .mapped, .mapping = &.{0x0034}, .status2 = .none, },
6815 .{ .cp = 0x1FBF5, .status = .mapped, .mapping = &.{0x0035}, .status2 = .none, },
6816 .{ .cp = 0x1FBF6, .status = .mapped, .mapping = &.{0x0036}, .status2 = .none, },
6817 .{ .cp = 0x1FBF7, .status = .mapped, .mapping = &.{0x0037}, .status2 = .none, },
6818 .{ .cp = 0x1FBF8, .status = .mapped, .mapping = &.{0x0038}, .status2 = .none, },
6819 .{ .cp = 0x1FBF9, .status = .mapped, .mapping = &.{0x0039}, .status2 = .none, },
6820 .{ .cp = 0x1FBFA, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
6821 .{ .cp = 0x2B739, .status = .valid, .mapping = &.{}, .status2 = .none, },
6822 .{ .cp = 0x2F800, .status = .mapped, .mapping = &.{0x4E3D}, .status2 = .none, },
6823 .{ .cp = 0x2F801, .status = .mapped, .mapping = &.{0x4E38}, .status2 = .none, },
6824 .{ .cp = 0x2F802, .status = .mapped, .mapping = &.{0x4E41}, .status2 = .none, },
6825 .{ .cp = 0x2F803, .status = .mapped, .mapping = &.{0x20122}, .status2 = .none, },
6826 .{ .cp = 0x2F804, .status = .mapped, .mapping = &.{0x4F60}, .status2 = .none, },
6827 .{ .cp = 0x2F805, .status = .mapped, .mapping = &.{0x4FAE}, .status2 = .none, },
6828 .{ .cp = 0x2F806, .status = .mapped, .mapping = &.{0x4FBB}, .status2 = .none, },
6829 .{ .cp = 0x2F807, .status = .mapped, .mapping = &.{0x5002}, .status2 = .none, },
6830 .{ .cp = 0x2F808, .status = .mapped, .mapping = &.{0x507A}, .status2 = .none, },
6831 .{ .cp = 0x2F809, .status = .mapped, .mapping = &.{0x5099}, .status2 = .none, },
6832 .{ .cp = 0x2F80A, .status = .mapped, .mapping = &.{0x50E7}, .status2 = .none, },
6833 .{ .cp = 0x2F80B, .status = .mapped, .mapping = &.{0x50CF}, .status2 = .none, },
6834 .{ .cp = 0x2F80C, .status = .mapped, .mapping = &.{0x349E}, .status2 = .none, },
6835 .{ .cp = 0x2F80D, .status = .mapped, .mapping = &.{0x2063A}, .status2 = .none, },
6836 .{ .cp = 0x2F80E, .status = .mapped, .mapping = &.{0x514D}, .status2 = .none, },
6837 .{ .cp = 0x2F80F, .status = .mapped, .mapping = &.{0x5154}, .status2 = .none, },
6838 .{ .cp = 0x2F810, .status = .mapped, .mapping = &.{0x5164}, .status2 = .none, },
6839 .{ .cp = 0x2F811, .status = .mapped, .mapping = &.{0x5177}, .status2 = .none, },
6840 .{ .cp = 0x2F812, .status = .mapped, .mapping = &.{0x2051C}, .status2 = .none, },
6841 .{ .cp = 0x2F813, .status = .mapped, .mapping = &.{0x34B9}, .status2 = .none, },
6842 .{ .cp = 0x2F814, .status = .mapped, .mapping = &.{0x5167}, .status2 = .none, },
6843 .{ .cp = 0x2F815, .status = .mapped, .mapping = &.{0x518D}, .status2 = .none, },
6844 .{ .cp = 0x2F816, .status = .mapped, .mapping = &.{0x2054B}, .status2 = .none, },
6845 .{ .cp = 0x2F817, .status = .mapped, .mapping = &.{0x5197}, .status2 = .none, },
6846 .{ .cp = 0x2F818, .status = .mapped, .mapping = &.{0x51A4}, .status2 = .none, },
6847 .{ .cp = 0x2F819, .status = .mapped, .mapping = &.{0x4ECC}, .status2 = .none, },
6848 .{ .cp = 0x2F81A, .status = .mapped, .mapping = &.{0x51AC}, .status2 = .none, },
6849 .{ .cp = 0x2F81B, .status = .mapped, .mapping = &.{0x51B5}, .status2 = .none, },
6850 .{ .cp = 0x2F81C, .status = .mapped, .mapping = &.{0x291DF}, .status2 = .none, },
6851 .{ .cp = 0x2F81D, .status = .mapped, .mapping = &.{0x51F5}, .status2 = .none, },
6852 .{ .cp = 0x2F81E, .status = .mapped, .mapping = &.{0x5203}, .status2 = .none, },
6853 .{ .cp = 0x2F81F, .status = .mapped, .mapping = &.{0x34DF}, .status2 = .none, },
6854 .{ .cp = 0x2F820, .status = .mapped, .mapping = &.{0x523B}, .status2 = .none, },
6855 .{ .cp = 0x2F821, .status = .mapped, .mapping = &.{0x5246}, .status2 = .none, },
6856 .{ .cp = 0x2F822, .status = .mapped, .mapping = &.{0x5272}, .status2 = .none, },
6857 .{ .cp = 0x2F823, .status = .mapped, .mapping = &.{0x5277}, .status2 = .none, },
6858 .{ .cp = 0x2F824, .status = .mapped, .mapping = &.{0x3515}, .status2 = .none, },
6859 .{ .cp = 0x2F825, .status = .mapped, .mapping = &.{0x52C7}, .status2 = .none, },
6860 .{ .cp = 0x2F826, .status = .mapped, .mapping = &.{0x52C9}, .status2 = .none, },
6861 .{ .cp = 0x2F827, .status = .mapped, .mapping = &.{0x52E4}, .status2 = .none, },
6862 .{ .cp = 0x2F828, .status = .mapped, .mapping = &.{0x52FA}, .status2 = .none, },
6863 .{ .cp = 0x2F829, .status = .mapped, .mapping = &.{0x5305}, .status2 = .none, },
6864 .{ .cp = 0x2F82A, .status = .mapped, .mapping = &.{0x5306}, .status2 = .none, },
6865 .{ .cp = 0x2F82B, .status = .mapped, .mapping = &.{0x5317}, .status2 = .none, },
6866 .{ .cp = 0x2F82C, .status = .mapped, .mapping = &.{0x5349}, .status2 = .none, },
6867 .{ .cp = 0x2F82D, .status = .mapped, .mapping = &.{0x5351}, .status2 = .none, },
6868 .{ .cp = 0x2F82E, .status = .mapped, .mapping = &.{0x535A}, .status2 = .none, },
6869 .{ .cp = 0x2F82F, .status = .mapped, .mapping = &.{0x5373}, .status2 = .none, },
6870 .{ .cp = 0x2F830, .status = .mapped, .mapping = &.{0x537D}, .status2 = .none, },
6871 .{ .cp = 0x2F834, .status = .mapped, .mapping = &.{0x20A2C}, .status2 = .none, },
6872 .{ .cp = 0x2F835, .status = .mapped, .mapping = &.{0x7070}, .status2 = .none, },
6873 .{ .cp = 0x2F836, .status = .mapped, .mapping = &.{0x53CA}, .status2 = .none, },
6874 .{ .cp = 0x2F837, .status = .mapped, .mapping = &.{0x53DF}, .status2 = .none, },
6875 .{ .cp = 0x2F838, .status = .mapped, .mapping = &.{0x20B63}, .status2 = .none, },
6876 .{ .cp = 0x2F839, .status = .mapped, .mapping = &.{0x53EB}, .status2 = .none, },
6877 .{ .cp = 0x2F83A, .status = .mapped, .mapping = &.{0x53F1}, .status2 = .none, },
6878 .{ .cp = 0x2F83B, .status = .mapped, .mapping = &.{0x5406}, .status2 = .none, },
6879 .{ .cp = 0x2F83C, .status = .mapped, .mapping = &.{0x549E}, .status2 = .none, },
6880 .{ .cp = 0x2F83D, .status = .mapped, .mapping = &.{0x5438}, .status2 = .none, },
6881 .{ .cp = 0x2F83E, .status = .mapped, .mapping = &.{0x5448}, .status2 = .none, },
6882 .{ .cp = 0x2F83F, .status = .mapped, .mapping = &.{0x5468}, .status2 = .none, },
6883 .{ .cp = 0x2F840, .status = .mapped, .mapping = &.{0x54A2}, .status2 = .none, },
6884 .{ .cp = 0x2F841, .status = .mapped, .mapping = &.{0x54F6}, .status2 = .none, },
6885 .{ .cp = 0x2F842, .status = .mapped, .mapping = &.{0x5510}, .status2 = .none, },
6886 .{ .cp = 0x2F843, .status = .mapped, .mapping = &.{0x5553}, .status2 = .none, },
6887 .{ .cp = 0x2F844, .status = .mapped, .mapping = &.{0x5563}, .status2 = .none, },
6888 .{ .cp = 0x2F847, .status = .mapped, .mapping = &.{0x5599}, .status2 = .none, },
6889 .{ .cp = 0x2F848, .status = .mapped, .mapping = &.{0x55AB}, .status2 = .none, },
6890 .{ .cp = 0x2F849, .status = .mapped, .mapping = &.{0x55B3}, .status2 = .none, },
6891 .{ .cp = 0x2F84A, .status = .mapped, .mapping = &.{0x55C2}, .status2 = .none, },
6892 .{ .cp = 0x2F84B, .status = .mapped, .mapping = &.{0x5716}, .status2 = .none, },
6893 .{ .cp = 0x2F84C, .status = .mapped, .mapping = &.{0x5606}, .status2 = .none, },
6894 .{ .cp = 0x2F84D, .status = .mapped, .mapping = &.{0x5717}, .status2 = .none, },
6895 .{ .cp = 0x2F84E, .status = .mapped, .mapping = &.{0x5651}, .status2 = .none, },
6896 .{ .cp = 0x2F84F, .status = .mapped, .mapping = &.{0x5674}, .status2 = .none, },
6897 .{ .cp = 0x2F850, .status = .mapped, .mapping = &.{0x5207}, .status2 = .none, },
6898 .{ .cp = 0x2F851, .status = .mapped, .mapping = &.{0x58EE}, .status2 = .none, },
6899 .{ .cp = 0x2F852, .status = .mapped, .mapping = &.{0x57CE}, .status2 = .none, },
6900 .{ .cp = 0x2F853, .status = .mapped, .mapping = &.{0x57F4}, .status2 = .none, },
6901 .{ .cp = 0x2F854, .status = .mapped, .mapping = &.{0x580D}, .status2 = .none, },
6902 .{ .cp = 0x2F855, .status = .mapped, .mapping = &.{0x578B}, .status2 = .none, },
6903 .{ .cp = 0x2F856, .status = .mapped, .mapping = &.{0x5832}, .status2 = .none, },
6904 .{ .cp = 0x2F857, .status = .mapped, .mapping = &.{0x5831}, .status2 = .none, },
6905 .{ .cp = 0x2F858, .status = .mapped, .mapping = &.{0x58AC}, .status2 = .none, },
6906 .{ .cp = 0x2F859, .status = .mapped, .mapping = &.{0x214E4}, .status2 = .none, },
6907 .{ .cp = 0x2F85A, .status = .mapped, .mapping = &.{0x58F2}, .status2 = .none, },
6908 .{ .cp = 0x2F85B, .status = .mapped, .mapping = &.{0x58F7}, .status2 = .none, },
6909 .{ .cp = 0x2F85C, .status = .mapped, .mapping = &.{0x5906}, .status2 = .none, },
6910 .{ .cp = 0x2F85D, .status = .mapped, .mapping = &.{0x591A}, .status2 = .none, },
6911 .{ .cp = 0x2F85E, .status = .mapped, .mapping = &.{0x5922}, .status2 = .none, },
6912 .{ .cp = 0x2F85F, .status = .mapped, .mapping = &.{0x5962}, .status2 = .none, },
6913 .{ .cp = 0x2F860, .status = .mapped, .mapping = &.{0x216A8}, .status2 = .none, },
6914 .{ .cp = 0x2F861, .status = .mapped, .mapping = &.{0x216EA}, .status2 = .none, },
6915 .{ .cp = 0x2F862, .status = .mapped, .mapping = &.{0x59EC}, .status2 = .none, },
6916 .{ .cp = 0x2F863, .status = .mapped, .mapping = &.{0x5A1B}, .status2 = .none, },
6917 .{ .cp = 0x2F864, .status = .mapped, .mapping = &.{0x5A27}, .status2 = .none, },
6918 .{ .cp = 0x2F865, .status = .mapped, .mapping = &.{0x59D8}, .status2 = .none, },
6919 .{ .cp = 0x2F866, .status = .mapped, .mapping = &.{0x5A66}, .status2 = .none, },
6920 .{ .cp = 0x2F867, .status = .mapped, .mapping = &.{0x36EE}, .status2 = .none, },
6921 .{ .cp = 0x2F868, .status = .mapped, .mapping = &.{0x36FC}, .status2 = .none, },
6922 .{ .cp = 0x2F869, .status = .mapped, .mapping = &.{0x5B08}, .status2 = .none, },
6923 .{ .cp = 0x2F86C, .status = .mapped, .mapping = &.{0x219C8}, .status2 = .none, },
6924 .{ .cp = 0x2F86D, .status = .mapped, .mapping = &.{0x5BC3}, .status2 = .none, },
6925 .{ .cp = 0x2F86E, .status = .mapped, .mapping = &.{0x5BD8}, .status2 = .none, },
6926 .{ .cp = 0x2F86F, .status = .mapped, .mapping = &.{0x5BE7}, .status2 = .none, },
6927 .{ .cp = 0x2F870, .status = .mapped, .mapping = &.{0x5BF3}, .status2 = .none, },
6928 .{ .cp = 0x2F871, .status = .mapped, .mapping = &.{0x21B18}, .status2 = .none, },
6929 .{ .cp = 0x2F872, .status = .mapped, .mapping = &.{0x5BFF}, .status2 = .none, },
6930 .{ .cp = 0x2F873, .status = .mapped, .mapping = &.{0x5C06}, .status2 = .none, },
6931 .{ .cp = 0x2F874, .status = .mapped, .mapping = &.{0x5F53}, .status2 = .none, },
6932 .{ .cp = 0x2F875, .status = .mapped, .mapping = &.{0x5C22}, .status2 = .none, },
6933 .{ .cp = 0x2F876, .status = .mapped, .mapping = &.{0x3781}, .status2 = .none, },
6934 .{ .cp = 0x2F877, .status = .mapped, .mapping = &.{0x5C60}, .status2 = .none, },
6935 .{ .cp = 0x2F878, .status = .mapped, .mapping = &.{0x5C6E}, .status2 = .none, },
6936 .{ .cp = 0x2F879, .status = .mapped, .mapping = &.{0x5CC0}, .status2 = .none, },
6937 .{ .cp = 0x2F87A, .status = .mapped, .mapping = &.{0x5C8D}, .status2 = .none, },
6938 .{ .cp = 0x2F87B, .status = .mapped, .mapping = &.{0x21DE4}, .status2 = .none, },
6939 .{ .cp = 0x2F87C, .status = .mapped, .mapping = &.{0x5D43}, .status2 = .none, },
6940 .{ .cp = 0x2F87D, .status = .mapped, .mapping = &.{0x21DE6}, .status2 = .none, },
6941 .{ .cp = 0x2F87E, .status = .mapped, .mapping = &.{0x5D6E}, .status2 = .none, },
6942 .{ .cp = 0x2F87F, .status = .mapped, .mapping = &.{0x5D6B}, .status2 = .none, },
6943 .{ .cp = 0x2F880, .status = .mapped, .mapping = &.{0x5D7C}, .status2 = .none, },
6944 .{ .cp = 0x2F881, .status = .mapped, .mapping = &.{0x5DE1}, .status2 = .none, },
6945 .{ .cp = 0x2F882, .status = .mapped, .mapping = &.{0x5DE2}, .status2 = .none, },
6946 .{ .cp = 0x2F883, .status = .mapped, .mapping = &.{0x382F}, .status2 = .none, },
6947 .{ .cp = 0x2F884, .status = .mapped, .mapping = &.{0x5DFD}, .status2 = .none, },
6948 .{ .cp = 0x2F885, .status = .mapped, .mapping = &.{0x5E28}, .status2 = .none, },
6949 .{ .cp = 0x2F886, .status = .mapped, .mapping = &.{0x5E3D}, .status2 = .none, },
6950 .{ .cp = 0x2F887, .status = .mapped, .mapping = &.{0x5E69}, .status2 = .none, },
6951 .{ .cp = 0x2F888, .status = .mapped, .mapping = &.{0x3862}, .status2 = .none, },
6952 .{ .cp = 0x2F889, .status = .mapped, .mapping = &.{0x22183}, .status2 = .none, },
6953 .{ .cp = 0x2F88A, .status = .mapped, .mapping = &.{0x387C}, .status2 = .none, },
6954 .{ .cp = 0x2F88B, .status = .mapped, .mapping = &.{0x5EB0}, .status2 = .none, },
6955 .{ .cp = 0x2F88C, .status = .mapped, .mapping = &.{0x5EB3}, .status2 = .none, },
6956 .{ .cp = 0x2F88D, .status = .mapped, .mapping = &.{0x5EB6}, .status2 = .none, },
6957 .{ .cp = 0x2F88E, .status = .mapped, .mapping = &.{0x5ECA}, .status2 = .none, },
6958 .{ .cp = 0x2F88F, .status = .mapped, .mapping = &.{0x2A392}, .status2 = .none, },
6959 .{ .cp = 0x2F890, .status = .mapped, .mapping = &.{0x5EFE}, .status2 = .none, },
6960 .{ .cp = 0x2F893, .status = .mapped, .mapping = &.{0x8201}, .status2 = .none, },
6961 .{ .cp = 0x2F896, .status = .mapped, .mapping = &.{0x38C7}, .status2 = .none, },
6962 .{ .cp = 0x2F897, .status = .mapped, .mapping = &.{0x232B8}, .status2 = .none, },
6963 .{ .cp = 0x2F898, .status = .mapped, .mapping = &.{0x261DA}, .status2 = .none, },
6964 .{ .cp = 0x2F899, .status = .mapped, .mapping = &.{0x5F62}, .status2 = .none, },
6965 .{ .cp = 0x2F89A, .status = .mapped, .mapping = &.{0x5F6B}, .status2 = .none, },
6966 .{ .cp = 0x2F89B, .status = .mapped, .mapping = &.{0x38E3}, .status2 = .none, },
6967 .{ .cp = 0x2F89C, .status = .mapped, .mapping = &.{0x5F9A}, .status2 = .none, },
6968 .{ .cp = 0x2F89D, .status = .mapped, .mapping = &.{0x5FCD}, .status2 = .none, },
6969 .{ .cp = 0x2F89E, .status = .mapped, .mapping = &.{0x5FD7}, .status2 = .none, },
6970 .{ .cp = 0x2F89F, .status = .mapped, .mapping = &.{0x5FF9}, .status2 = .none, },
6971 .{ .cp = 0x2F8A0, .status = .mapped, .mapping = &.{0x6081}, .status2 = .none, },
6972 .{ .cp = 0x2F8A1, .status = .mapped, .mapping = &.{0x393A}, .status2 = .none, },
6973 .{ .cp = 0x2F8A2, .status = .mapped, .mapping = &.{0x391C}, .status2 = .none, },
6974 .{ .cp = 0x2F8A3, .status = .mapped, .mapping = &.{0x6094}, .status2 = .none, },
6975 .{ .cp = 0x2F8A4, .status = .mapped, .mapping = &.{0x226D4}, .status2 = .none, },
6976 .{ .cp = 0x2F8A5, .status = .mapped, .mapping = &.{0x60C7}, .status2 = .none, },
6977 .{ .cp = 0x2F8A6, .status = .mapped, .mapping = &.{0x6148}, .status2 = .none, },
6978 .{ .cp = 0x2F8A7, .status = .mapped, .mapping = &.{0x614C}, .status2 = .none, },
6979 .{ .cp = 0x2F8A8, .status = .mapped, .mapping = &.{0x614E}, .status2 = .none, },
6980 .{ .cp = 0x2F8A9, .status = .mapped, .mapping = &.{0x614C}, .status2 = .none, },
6981 .{ .cp = 0x2F8AA, .status = .mapped, .mapping = &.{0x617A}, .status2 = .none, },
6982 .{ .cp = 0x2F8AB, .status = .mapped, .mapping = &.{0x618E}, .status2 = .none, },
6983 .{ .cp = 0x2F8AC, .status = .mapped, .mapping = &.{0x61B2}, .status2 = .none, },
6984 .{ .cp = 0x2F8AD, .status = .mapped, .mapping = &.{0x61A4}, .status2 = .none, },
6985 .{ .cp = 0x2F8AE, .status = .mapped, .mapping = &.{0x61AF}, .status2 = .none, },
6986 .{ .cp = 0x2F8AF, .status = .mapped, .mapping = &.{0x61DE}, .status2 = .none, },
6987 .{ .cp = 0x2F8B0, .status = .mapped, .mapping = &.{0x61F2}, .status2 = .none, },
6988 .{ .cp = 0x2F8B1, .status = .mapped, .mapping = &.{0x61F6}, .status2 = .none, },
6989 .{ .cp = 0x2F8B2, .status = .mapped, .mapping = &.{0x6210}, .status2 = .none, },
6990 .{ .cp = 0x2F8B3, .status = .mapped, .mapping = &.{0x621B}, .status2 = .none, },
6991 .{ .cp = 0x2F8B4, .status = .mapped, .mapping = &.{0x625D}, .status2 = .none, },
6992 .{ .cp = 0x2F8B5, .status = .mapped, .mapping = &.{0x62B1}, .status2 = .none, },
6993 .{ .cp = 0x2F8B6, .status = .mapped, .mapping = &.{0x62D4}, .status2 = .none, },
6994 .{ .cp = 0x2F8B7, .status = .mapped, .mapping = &.{0x6350}, .status2 = .none, },
6995 .{ .cp = 0x2F8B8, .status = .mapped, .mapping = &.{0x22B0C}, .status2 = .none, },
6996 .{ .cp = 0x2F8B9, .status = .mapped, .mapping = &.{0x633D}, .status2 = .none, },
6997 .{ .cp = 0x2F8BA, .status = .mapped, .mapping = &.{0x62FC}, .status2 = .none, },
6998 .{ .cp = 0x2F8BB, .status = .mapped, .mapping = &.{0x6368}, .status2 = .none, },
6999 .{ .cp = 0x2F8BC, .status = .mapped, .mapping = &.{0x6383}, .status2 = .none, },
7000 .{ .cp = 0x2F8BD, .status = .mapped, .mapping = &.{0x63E4}, .status2 = .none, },
7001 .{ .cp = 0x2F8BE, .status = .mapped, .mapping = &.{0x22BF1}, .status2 = .none, },
7002 .{ .cp = 0x2F8BF, .status = .mapped, .mapping = &.{0x6422}, .status2 = .none, },
7003 .{ .cp = 0x2F8C0, .status = .mapped, .mapping = &.{0x63C5}, .status2 = .none, },
7004 .{ .cp = 0x2F8C1, .status = .mapped, .mapping = &.{0x63A9}, .status2 = .none, },
7005 .{ .cp = 0x2F8C2, .status = .mapped, .mapping = &.{0x3A2E}, .status2 = .none, },
7006 .{ .cp = 0x2F8C3, .status = .mapped, .mapping = &.{0x6469}, .status2 = .none, },
7007 .{ .cp = 0x2F8C4, .status = .mapped, .mapping = &.{0x647E}, .status2 = .none, },
7008 .{ .cp = 0x2F8C5, .status = .mapped, .mapping = &.{0x649D}, .status2 = .none, },
7009 .{ .cp = 0x2F8C6, .status = .mapped, .mapping = &.{0x6477}, .status2 = .none, },
7010 .{ .cp = 0x2F8C7, .status = .mapped, .mapping = &.{0x3A6C}, .status2 = .none, },
7011 .{ .cp = 0x2F8C8, .status = .mapped, .mapping = &.{0x654F}, .status2 = .none, },
7012 .{ .cp = 0x2F8C9, .status = .mapped, .mapping = &.{0x656C}, .status2 = .none, },
7013 .{ .cp = 0x2F8CA, .status = .mapped, .mapping = &.{0x2300A}, .status2 = .none, },
7014 .{ .cp = 0x2F8CB, .status = .mapped, .mapping = &.{0x65E3}, .status2 = .none, },
7015 .{ .cp = 0x2F8CC, .status = .mapped, .mapping = &.{0x66F8}, .status2 = .none, },
7016 .{ .cp = 0x2F8CD, .status = .mapped, .mapping = &.{0x6649}, .status2 = .none, },
7017 .{ .cp = 0x2F8CE, .status = .mapped, .mapping = &.{0x3B19}, .status2 = .none, },
7018 .{ .cp = 0x2F8CF, .status = .mapped, .mapping = &.{0x6691}, .status2 = .none, },
7019 .{ .cp = 0x2F8D0, .status = .mapped, .mapping = &.{0x3B08}, .status2 = .none, },
7020 .{ .cp = 0x2F8D1, .status = .mapped, .mapping = &.{0x3AE4}, .status2 = .none, },
7021 .{ .cp = 0x2F8D2, .status = .mapped, .mapping = &.{0x5192}, .status2 = .none, },
7022 .{ .cp = 0x2F8D3, .status = .mapped, .mapping = &.{0x5195}, .status2 = .none, },
7023 .{ .cp = 0x2F8D4, .status = .mapped, .mapping = &.{0x6700}, .status2 = .none, },
7024 .{ .cp = 0x2F8D5, .status = .mapped, .mapping = &.{0x669C}, .status2 = .none, },
7025 .{ .cp = 0x2F8D6, .status = .mapped, .mapping = &.{0x80AD}, .status2 = .none, },
7026 .{ .cp = 0x2F8D7, .status = .mapped, .mapping = &.{0x43D9}, .status2 = .none, },
7027 .{ .cp = 0x2F8D8, .status = .mapped, .mapping = &.{0x6717}, .status2 = .none, },
7028 .{ .cp = 0x2F8D9, .status = .mapped, .mapping = &.{0x671B}, .status2 = .none, },
7029 .{ .cp = 0x2F8DA, .status = .mapped, .mapping = &.{0x6721}, .status2 = .none, },
7030 .{ .cp = 0x2F8DB, .status = .mapped, .mapping = &.{0x675E}, .status2 = .none, },
7031 .{ .cp = 0x2F8DC, .status = .mapped, .mapping = &.{0x6753}, .status2 = .none, },
7032 .{ .cp = 0x2F8DD, .status = .mapped, .mapping = &.{0x233C3}, .status2 = .none, },
7033 .{ .cp = 0x2F8DE, .status = .mapped, .mapping = &.{0x3B49}, .status2 = .none, },
7034 .{ .cp = 0x2F8DF, .status = .mapped, .mapping = &.{0x67FA}, .status2 = .none, },
7035 .{ .cp = 0x2F8E0, .status = .mapped, .mapping = &.{0x6785}, .status2 = .none, },
7036 .{ .cp = 0x2F8E1, .status = .mapped, .mapping = &.{0x6852}, .status2 = .none, },
7037 .{ .cp = 0x2F8E2, .status = .mapped, .mapping = &.{0x6885}, .status2 = .none, },
7038 .{ .cp = 0x2F8E3, .status = .mapped, .mapping = &.{0x2346D}, .status2 = .none, },
7039 .{ .cp = 0x2F8E4, .status = .mapped, .mapping = &.{0x688E}, .status2 = .none, },
7040 .{ .cp = 0x2F8E5, .status = .mapped, .mapping = &.{0x681F}, .status2 = .none, },
7041 .{ .cp = 0x2F8E6, .status = .mapped, .mapping = &.{0x6914}, .status2 = .none, },
7042 .{ .cp = 0x2F8E7, .status = .mapped, .mapping = &.{0x3B9D}, .status2 = .none, },
7043 .{ .cp = 0x2F8E8, .status = .mapped, .mapping = &.{0x6942}, .status2 = .none, },
7044 .{ .cp = 0x2F8E9, .status = .mapped, .mapping = &.{0x69A3}, .status2 = .none, },
7045 .{ .cp = 0x2F8EA, .status = .mapped, .mapping = &.{0x69EA}, .status2 = .none, },
7046 .{ .cp = 0x2F8EB, .status = .mapped, .mapping = &.{0x6AA8}, .status2 = .none, },
7047 .{ .cp = 0x2F8EC, .status = .mapped, .mapping = &.{0x236A3}, .status2 = .none, },
7048 .{ .cp = 0x2F8ED, .status = .mapped, .mapping = &.{0x6ADB}, .status2 = .none, },
7049 .{ .cp = 0x2F8EE, .status = .mapped, .mapping = &.{0x3C18}, .status2 = .none, },
7050 .{ .cp = 0x2F8EF, .status = .mapped, .mapping = &.{0x6B21}, .status2 = .none, },
7051 .{ .cp = 0x2F8F0, .status = .mapped, .mapping = &.{0x238A7}, .status2 = .none, },
7052 .{ .cp = 0x2F8F1, .status = .mapped, .mapping = &.{0x6B54}, .status2 = .none, },
7053 .{ .cp = 0x2F8F2, .status = .mapped, .mapping = &.{0x3C4E}, .status2 = .none, },
7054 .{ .cp = 0x2F8F3, .status = .mapped, .mapping = &.{0x6B72}, .status2 = .none, },
7055 .{ .cp = 0x2F8F4, .status = .mapped, .mapping = &.{0x6B9F}, .status2 = .none, },
7056 .{ .cp = 0x2F8F5, .status = .mapped, .mapping = &.{0x6BBA}, .status2 = .none, },
7057 .{ .cp = 0x2F8F6, .status = .mapped, .mapping = &.{0x6BBB}, .status2 = .none, },
7058 .{ .cp = 0x2F8F7, .status = .mapped, .mapping = &.{0x23A8D}, .status2 = .none, },
7059 .{ .cp = 0x2F8F8, .status = .mapped, .mapping = &.{0x21D0B}, .status2 = .none, },
7060 .{ .cp = 0x2F8F9, .status = .mapped, .mapping = &.{0x23AFA}, .status2 = .none, },
7061 .{ .cp = 0x2F8FA, .status = .mapped, .mapping = &.{0x6C4E}, .status2 = .none, },
7062 .{ .cp = 0x2F8FB, .status = .mapped, .mapping = &.{0x23CBC}, .status2 = .none, },
7063 .{ .cp = 0x2F8FC, .status = .mapped, .mapping = &.{0x6CBF}, .status2 = .none, },
7064 .{ .cp = 0x2F8FD, .status = .mapped, .mapping = &.{0x6CCD}, .status2 = .none, },
7065 .{ .cp = 0x2F8FE, .status = .mapped, .mapping = &.{0x6C67}, .status2 = .none, },
7066 .{ .cp = 0x2F8FF, .status = .mapped, .mapping = &.{0x6D16}, .status2 = .none, },
7067 .{ .cp = 0x2F900, .status = .mapped, .mapping = &.{0x6D3E}, .status2 = .none, },
7068 .{ .cp = 0x2F901, .status = .mapped, .mapping = &.{0x6D77}, .status2 = .none, },
7069 .{ .cp = 0x2F902, .status = .mapped, .mapping = &.{0x6D41}, .status2 = .none, },
7070 .{ .cp = 0x2F903, .status = .mapped, .mapping = &.{0x6D69}, .status2 = .none, },
7071 .{ .cp = 0x2F904, .status = .mapped, .mapping = &.{0x6D78}, .status2 = .none, },
7072 .{ .cp = 0x2F905, .status = .mapped, .mapping = &.{0x6D85}, .status2 = .none, },
7073 .{ .cp = 0x2F906, .status = .mapped, .mapping = &.{0x23D1E}, .status2 = .none, },
7074 .{ .cp = 0x2F907, .status = .mapped, .mapping = &.{0x6D34}, .status2 = .none, },
7075 .{ .cp = 0x2F908, .status = .mapped, .mapping = &.{0x6E2F}, .status2 = .none, },
7076 .{ .cp = 0x2F909, .status = .mapped, .mapping = &.{0x6E6E}, .status2 = .none, },
7077 .{ .cp = 0x2F90A, .status = .mapped, .mapping = &.{0x3D33}, .status2 = .none, },
7078 .{ .cp = 0x2F90B, .status = .mapped, .mapping = &.{0x6ECB}, .status2 = .none, },
7079 .{ .cp = 0x2F90C, .status = .mapped, .mapping = &.{0x6EC7}, .status2 = .none, },
7080 .{ .cp = 0x2F90D, .status = .mapped, .mapping = &.{0x23ED1}, .status2 = .none, },
7081 .{ .cp = 0x2F90E, .status = .mapped, .mapping = &.{0x6DF9}, .status2 = .none, },
7082 .{ .cp = 0x2F90F, .status = .mapped, .mapping = &.{0x6F6E}, .status2 = .none, },
7083 .{ .cp = 0x2F910, .status = .mapped, .mapping = &.{0x23F5E}, .status2 = .none, },
7084 .{ .cp = 0x2F911, .status = .mapped, .mapping = &.{0x23F8E}, .status2 = .none, },
7085 .{ .cp = 0x2F912, .status = .mapped, .mapping = &.{0x6FC6}, .status2 = .none, },
7086 .{ .cp = 0x2F913, .status = .mapped, .mapping = &.{0x7039}, .status2 = .none, },
7087 .{ .cp = 0x2F914, .status = .mapped, .mapping = &.{0x701E}, .status2 = .none, },
7088 .{ .cp = 0x2F915, .status = .mapped, .mapping = &.{0x701B}, .status2 = .none, },
7089 .{ .cp = 0x2F916, .status = .mapped, .mapping = &.{0x3D96}, .status2 = .none, },
7090 .{ .cp = 0x2F917, .status = .mapped, .mapping = &.{0x704A}, .status2 = .none, },
7091 .{ .cp = 0x2F918, .status = .mapped, .mapping = &.{0x707D}, .status2 = .none, },
7092 .{ .cp = 0x2F919, .status = .mapped, .mapping = &.{0x7077}, .status2 = .none, },
7093 .{ .cp = 0x2F91A, .status = .mapped, .mapping = &.{0x70AD}, .status2 = .none, },
7094 .{ .cp = 0x2F91B, .status = .mapped, .mapping = &.{0x20525}, .status2 = .none, },
7095 .{ .cp = 0x2F91C, .status = .mapped, .mapping = &.{0x7145}, .status2 = .none, },
7096 .{ .cp = 0x2F91D, .status = .mapped, .mapping = &.{0x24263}, .status2 = .none, },
7097 .{ .cp = 0x2F91E, .status = .mapped, .mapping = &.{0x719C}, .status2 = .none, },
7098 .{ .cp = 0x2F91F, .status = .mapped, .mapping = &.{0x243AB}, .status2 = .none, },
7099 .{ .cp = 0x2F920, .status = .mapped, .mapping = &.{0x7228}, .status2 = .none, },
7100 .{ .cp = 0x2F921, .status = .mapped, .mapping = &.{0x7235}, .status2 = .none, },
7101 .{ .cp = 0x2F922, .status = .mapped, .mapping = &.{0x7250}, .status2 = .none, },
7102 .{ .cp = 0x2F923, .status = .mapped, .mapping = &.{0x24608}, .status2 = .none, },
7103 .{ .cp = 0x2F924, .status = .mapped, .mapping = &.{0x7280}, .status2 = .none, },
7104 .{ .cp = 0x2F925, .status = .mapped, .mapping = &.{0x7295}, .status2 = .none, },
7105 .{ .cp = 0x2F926, .status = .mapped, .mapping = &.{0x24735}, .status2 = .none, },
7106 .{ .cp = 0x2F927, .status = .mapped, .mapping = &.{0x24814}, .status2 = .none, },
7107 .{ .cp = 0x2F928, .status = .mapped, .mapping = &.{0x737A}, .status2 = .none, },
7108 .{ .cp = 0x2F929, .status = .mapped, .mapping = &.{0x738B}, .status2 = .none, },
7109 .{ .cp = 0x2F92A, .status = .mapped, .mapping = &.{0x3EAC}, .status2 = .none, },
7110 .{ .cp = 0x2F92B, .status = .mapped, .mapping = &.{0x73A5}, .status2 = .none, },
7111 .{ .cp = 0x2F92E, .status = .mapped, .mapping = &.{0x7447}, .status2 = .none, },
7112 .{ .cp = 0x2F92F, .status = .mapped, .mapping = &.{0x745C}, .status2 = .none, },
7113 .{ .cp = 0x2F930, .status = .mapped, .mapping = &.{0x7471}, .status2 = .none, },
7114 .{ .cp = 0x2F931, .status = .mapped, .mapping = &.{0x7485}, .status2 = .none, },
7115 .{ .cp = 0x2F932, .status = .mapped, .mapping = &.{0x74CA}, .status2 = .none, },
7116 .{ .cp = 0x2F933, .status = .mapped, .mapping = &.{0x3F1B}, .status2 = .none, },
7117 .{ .cp = 0x2F934, .status = .mapped, .mapping = &.{0x7524}, .status2 = .none, },
7118 .{ .cp = 0x2F935, .status = .mapped, .mapping = &.{0x24C36}, .status2 = .none, },
7119 .{ .cp = 0x2F936, .status = .mapped, .mapping = &.{0x753E}, .status2 = .none, },
7120 .{ .cp = 0x2F937, .status = .mapped, .mapping = &.{0x24C92}, .status2 = .none, },
7121 .{ .cp = 0x2F938, .status = .mapped, .mapping = &.{0x7570}, .status2 = .none, },
7122 .{ .cp = 0x2F939, .status = .mapped, .mapping = &.{0x2219F}, .status2 = .none, },
7123 .{ .cp = 0x2F93A, .status = .mapped, .mapping = &.{0x7610}, .status2 = .none, },
7124 .{ .cp = 0x2F93B, .status = .mapped, .mapping = &.{0x24FA1}, .status2 = .none, },
7125 .{ .cp = 0x2F93C, .status = .mapped, .mapping = &.{0x24FB8}, .status2 = .none, },
7126 .{ .cp = 0x2F93D, .status = .mapped, .mapping = &.{0x25044}, .status2 = .none, },
7127 .{ .cp = 0x2F93E, .status = .mapped, .mapping = &.{0x3FFC}, .status2 = .none, },
7128 .{ .cp = 0x2F93F, .status = .mapped, .mapping = &.{0x4008}, .status2 = .none, },
7129 .{ .cp = 0x2F940, .status = .mapped, .mapping = &.{0x76F4}, .status2 = .none, },
7130 .{ .cp = 0x2F941, .status = .mapped, .mapping = &.{0x250F3}, .status2 = .none, },
7131 .{ .cp = 0x2F942, .status = .mapped, .mapping = &.{0x250F2}, .status2 = .none, },
7132 .{ .cp = 0x2F943, .status = .mapped, .mapping = &.{0x25119}, .status2 = .none, },
7133 .{ .cp = 0x2F944, .status = .mapped, .mapping = &.{0x25133}, .status2 = .none, },
7134 .{ .cp = 0x2F945, .status = .mapped, .mapping = &.{0x771E}, .status2 = .none, },
7135 .{ .cp = 0x2F948, .status = .mapped, .mapping = &.{0x774A}, .status2 = .none, },
7136 .{ .cp = 0x2F949, .status = .mapped, .mapping = &.{0x4039}, .status2 = .none, },
7137 .{ .cp = 0x2F94A, .status = .mapped, .mapping = &.{0x778B}, .status2 = .none, },
7138 .{ .cp = 0x2F94B, .status = .mapped, .mapping = &.{0x4046}, .status2 = .none, },
7139 .{ .cp = 0x2F94C, .status = .mapped, .mapping = &.{0x4096}, .status2 = .none, },
7140 .{ .cp = 0x2F94D, .status = .mapped, .mapping = &.{0x2541D}, .status2 = .none, },
7141 .{ .cp = 0x2F94E, .status = .mapped, .mapping = &.{0x784E}, .status2 = .none, },
7142 .{ .cp = 0x2F94F, .status = .mapped, .mapping = &.{0x788C}, .status2 = .none, },
7143 .{ .cp = 0x2F950, .status = .mapped, .mapping = &.{0x78CC}, .status2 = .none, },
7144 .{ .cp = 0x2F951, .status = .mapped, .mapping = &.{0x40E3}, .status2 = .none, },
7145 .{ .cp = 0x2F952, .status = .mapped, .mapping = &.{0x25626}, .status2 = .none, },
7146 .{ .cp = 0x2F953, .status = .mapped, .mapping = &.{0x7956}, .status2 = .none, },
7147 .{ .cp = 0x2F954, .status = .mapped, .mapping = &.{0x2569A}, .status2 = .none, },
7148 .{ .cp = 0x2F955, .status = .mapped, .mapping = &.{0x256C5}, .status2 = .none, },
7149 .{ .cp = 0x2F956, .status = .mapped, .mapping = &.{0x798F}, .status2 = .none, },
7150 .{ .cp = 0x2F957, .status = .mapped, .mapping = &.{0x79EB}, .status2 = .none, },
7151 .{ .cp = 0x2F958, .status = .mapped, .mapping = &.{0x412F}, .status2 = .none, },
7152 .{ .cp = 0x2F959, .status = .mapped, .mapping = &.{0x7A40}, .status2 = .none, },
7153 .{ .cp = 0x2F95A, .status = .mapped, .mapping = &.{0x7A4A}, .status2 = .none, },
7154 .{ .cp = 0x2F95B, .status = .mapped, .mapping = &.{0x7A4F}, .status2 = .none, },
7155 .{ .cp = 0x2F95C, .status = .mapped, .mapping = &.{0x2597C}, .status2 = .none, },
7156 .{ .cp = 0x2F95F, .status = .mapped, .mapping = &.{0x7AEE}, .status2 = .none, },
7157 .{ .cp = 0x2F960, .status = .mapped, .mapping = &.{0x4202}, .status2 = .none, },
7158 .{ .cp = 0x2F961, .status = .mapped, .mapping = &.{0x25BAB}, .status2 = .none, },
7159 .{ .cp = 0x2F962, .status = .mapped, .mapping = &.{0x7BC6}, .status2 = .none, },
7160 .{ .cp = 0x2F963, .status = .mapped, .mapping = &.{0x7BC9}, .status2 = .none, },
7161 .{ .cp = 0x2F964, .status = .mapped, .mapping = &.{0x4227}, .status2 = .none, },
7162 .{ .cp = 0x2F965, .status = .mapped, .mapping = &.{0x25C80}, .status2 = .none, },
7163 .{ .cp = 0x2F966, .status = .mapped, .mapping = &.{0x7CD2}, .status2 = .none, },
7164 .{ .cp = 0x2F967, .status = .mapped, .mapping = &.{0x42A0}, .status2 = .none, },
7165 .{ .cp = 0x2F968, .status = .mapped, .mapping = &.{0x7CE8}, .status2 = .none, },
7166 .{ .cp = 0x2F969, .status = .mapped, .mapping = &.{0x7CE3}, .status2 = .none, },
7167 .{ .cp = 0x2F96A, .status = .mapped, .mapping = &.{0x7D00}, .status2 = .none, },
7168 .{ .cp = 0x2F96B, .status = .mapped, .mapping = &.{0x25F86}, .status2 = .none, },
7169 .{ .cp = 0x2F96C, .status = .mapped, .mapping = &.{0x7D63}, .status2 = .none, },
7170 .{ .cp = 0x2F96D, .status = .mapped, .mapping = &.{0x4301}, .status2 = .none, },
7171 .{ .cp = 0x2F96E, .status = .mapped, .mapping = &.{0x7DC7}, .status2 = .none, },
7172 .{ .cp = 0x2F96F, .status = .mapped, .mapping = &.{0x7E02}, .status2 = .none, },
7173 .{ .cp = 0x2F970, .status = .mapped, .mapping = &.{0x7E45}, .status2 = .none, },
7174 .{ .cp = 0x2F971, .status = .mapped, .mapping = &.{0x4334}, .status2 = .none, },
7175 .{ .cp = 0x2F972, .status = .mapped, .mapping = &.{0x26228}, .status2 = .none, },
7176 .{ .cp = 0x2F973, .status = .mapped, .mapping = &.{0x26247}, .status2 = .none, },
7177 .{ .cp = 0x2F974, .status = .mapped, .mapping = &.{0x4359}, .status2 = .none, },
7178 .{ .cp = 0x2F975, .status = .mapped, .mapping = &.{0x262D9}, .status2 = .none, },
7179 .{ .cp = 0x2F976, .status = .mapped, .mapping = &.{0x7F7A}, .status2 = .none, },
7180 .{ .cp = 0x2F977, .status = .mapped, .mapping = &.{0x2633E}, .status2 = .none, },
7181 .{ .cp = 0x2F978, .status = .mapped, .mapping = &.{0x7F95}, .status2 = .none, },
7182 .{ .cp = 0x2F979, .status = .mapped, .mapping = &.{0x7FFA}, .status2 = .none, },
7183 .{ .cp = 0x2F97A, .status = .mapped, .mapping = &.{0x8005}, .status2 = .none, },
7184 .{ .cp = 0x2F97B, .status = .mapped, .mapping = &.{0x264DA}, .status2 = .none, },
7185 .{ .cp = 0x2F97C, .status = .mapped, .mapping = &.{0x26523}, .status2 = .none, },
7186 .{ .cp = 0x2F97D, .status = .mapped, .mapping = &.{0x8060}, .status2 = .none, },
7187 .{ .cp = 0x2F97E, .status = .mapped, .mapping = &.{0x265A8}, .status2 = .none, },
7188 .{ .cp = 0x2F97F, .status = .mapped, .mapping = &.{0x8070}, .status2 = .none, },
7189 .{ .cp = 0x2F980, .status = .mapped, .mapping = &.{0x2335F}, .status2 = .none, },
7190 .{ .cp = 0x2F981, .status = .mapped, .mapping = &.{0x43D5}, .status2 = .none, },
7191 .{ .cp = 0x2F982, .status = .mapped, .mapping = &.{0x80B2}, .status2 = .none, },
7192 .{ .cp = 0x2F983, .status = .mapped, .mapping = &.{0x8103}, .status2 = .none, },
7193 .{ .cp = 0x2F984, .status = .mapped, .mapping = &.{0x440B}, .status2 = .none, },
7194 .{ .cp = 0x2F985, .status = .mapped, .mapping = &.{0x813E}, .status2 = .none, },
7195 .{ .cp = 0x2F986, .status = .mapped, .mapping = &.{0x5AB5}, .status2 = .none, },
7196 .{ .cp = 0x2F987, .status = .mapped, .mapping = &.{0x267A7}, .status2 = .none, },
7197 .{ .cp = 0x2F988, .status = .mapped, .mapping = &.{0x267B5}, .status2 = .none, },
7198 .{ .cp = 0x2F989, .status = .mapped, .mapping = &.{0x23393}, .status2 = .none, },
7199 .{ .cp = 0x2F98A, .status = .mapped, .mapping = &.{0x2339C}, .status2 = .none, },
7200 .{ .cp = 0x2F98B, .status = .mapped, .mapping = &.{0x8201}, .status2 = .none, },
7201 .{ .cp = 0x2F98C, .status = .mapped, .mapping = &.{0x8204}, .status2 = .none, },
7202 .{ .cp = 0x2F98D, .status = .mapped, .mapping = &.{0x8F9E}, .status2 = .none, },
7203 .{ .cp = 0x2F98E, .status = .mapped, .mapping = &.{0x446B}, .status2 = .none, },
7204 .{ .cp = 0x2F98F, .status = .mapped, .mapping = &.{0x8291}, .status2 = .none, },
7205 .{ .cp = 0x2F990, .status = .mapped, .mapping = &.{0x828B}, .status2 = .none, },
7206 .{ .cp = 0x2F991, .status = .mapped, .mapping = &.{0x829D}, .status2 = .none, },
7207 .{ .cp = 0x2F992, .status = .mapped, .mapping = &.{0x52B3}, .status2 = .none, },
7208 .{ .cp = 0x2F993, .status = .mapped, .mapping = &.{0x82B1}, .status2 = .none, },
7209 .{ .cp = 0x2F994, .status = .mapped, .mapping = &.{0x82B3}, .status2 = .none, },
7210 .{ .cp = 0x2F995, .status = .mapped, .mapping = &.{0x82BD}, .status2 = .none, },
7211 .{ .cp = 0x2F996, .status = .mapped, .mapping = &.{0x82E6}, .status2 = .none, },
7212 .{ .cp = 0x2F997, .status = .mapped, .mapping = &.{0x26B3C}, .status2 = .none, },
7213 .{ .cp = 0x2F998, .status = .mapped, .mapping = &.{0x82E5}, .status2 = .none, },
7214 .{ .cp = 0x2F999, .status = .mapped, .mapping = &.{0x831D}, .status2 = .none, },
7215 .{ .cp = 0x2F99A, .status = .mapped, .mapping = &.{0x8363}, .status2 = .none, },
7216 .{ .cp = 0x2F99B, .status = .mapped, .mapping = &.{0x83AD}, .status2 = .none, },
7217 .{ .cp = 0x2F99C, .status = .mapped, .mapping = &.{0x8323}, .status2 = .none, },
7218 .{ .cp = 0x2F99D, .status = .mapped, .mapping = &.{0x83BD}, .status2 = .none, },
7219 .{ .cp = 0x2F99E, .status = .mapped, .mapping = &.{0x83E7}, .status2 = .none, },
7220 .{ .cp = 0x2F99F, .status = .mapped, .mapping = &.{0x8457}, .status2 = .none, },
7221 .{ .cp = 0x2F9A0, .status = .mapped, .mapping = &.{0x8353}, .status2 = .none, },
7222 .{ .cp = 0x2F9A1, .status = .mapped, .mapping = &.{0x83CA}, .status2 = .none, },
7223 .{ .cp = 0x2F9A2, .status = .mapped, .mapping = &.{0x83CC}, .status2 = .none, },
7224 .{ .cp = 0x2F9A3, .status = .mapped, .mapping = &.{0x83DC}, .status2 = .none, },
7225 .{ .cp = 0x2F9A4, .status = .mapped, .mapping = &.{0x26C36}, .status2 = .none, },
7226 .{ .cp = 0x2F9A5, .status = .mapped, .mapping = &.{0x26D6B}, .status2 = .none, },
7227 .{ .cp = 0x2F9A6, .status = .mapped, .mapping = &.{0x26CD5}, .status2 = .none, },
7228 .{ .cp = 0x2F9A7, .status = .mapped, .mapping = &.{0x452B}, .status2 = .none, },
7229 .{ .cp = 0x2F9A8, .status = .mapped, .mapping = &.{0x84F1}, .status2 = .none, },
7230 .{ .cp = 0x2F9A9, .status = .mapped, .mapping = &.{0x84F3}, .status2 = .none, },
7231 .{ .cp = 0x2F9AA, .status = .mapped, .mapping = &.{0x8516}, .status2 = .none, },
7232 .{ .cp = 0x2F9AB, .status = .mapped, .mapping = &.{0x273CA}, .status2 = .none, },
7233 .{ .cp = 0x2F9AC, .status = .mapped, .mapping = &.{0x8564}, .status2 = .none, },
7234 .{ .cp = 0x2F9AD, .status = .mapped, .mapping = &.{0x26F2C}, .status2 = .none, },
7235 .{ .cp = 0x2F9AE, .status = .mapped, .mapping = &.{0x455D}, .status2 = .none, },
7236 .{ .cp = 0x2F9AF, .status = .mapped, .mapping = &.{0x4561}, .status2 = .none, },
7237 .{ .cp = 0x2F9B0, .status = .mapped, .mapping = &.{0x26FB1}, .status2 = .none, },
7238 .{ .cp = 0x2F9B1, .status = .mapped, .mapping = &.{0x270D2}, .status2 = .none, },
7239 .{ .cp = 0x2F9B2, .status = .mapped, .mapping = &.{0x456B}, .status2 = .none, },
7240 .{ .cp = 0x2F9B3, .status = .mapped, .mapping = &.{0x8650}, .status2 = .none, },
7241 .{ .cp = 0x2F9B4, .status = .mapped, .mapping = &.{0x865C}, .status2 = .none, },
7242 .{ .cp = 0x2F9B5, .status = .mapped, .mapping = &.{0x8667}, .status2 = .none, },
7243 .{ .cp = 0x2F9B6, .status = .mapped, .mapping = &.{0x8669}, .status2 = .none, },
7244 .{ .cp = 0x2F9B7, .status = .mapped, .mapping = &.{0x86A9}, .status2 = .none, },
7245 .{ .cp = 0x2F9B8, .status = .mapped, .mapping = &.{0x8688}, .status2 = .none, },
7246 .{ .cp = 0x2F9B9, .status = .mapped, .mapping = &.{0x870E}, .status2 = .none, },
7247 .{ .cp = 0x2F9BA, .status = .mapped, .mapping = &.{0x86E2}, .status2 = .none, },
7248 .{ .cp = 0x2F9BB, .status = .mapped, .mapping = &.{0x8779}, .status2 = .none, },
7249 .{ .cp = 0x2F9BC, .status = .mapped, .mapping = &.{0x8728}, .status2 = .none, },
7250 .{ .cp = 0x2F9BD, .status = .mapped, .mapping = &.{0x876B}, .status2 = .none, },
7251 .{ .cp = 0x2F9BE, .status = .mapped, .mapping = &.{0x8786}, .status2 = .none, },
7252 .{ .cp = 0x2F9BF, .status = .mapped, .mapping = &.{0x45D7}, .status2 = .none, },
7253 .{ .cp = 0x2F9C0, .status = .mapped, .mapping = &.{0x87E1}, .status2 = .none, },
7254 .{ .cp = 0x2F9C1, .status = .mapped, .mapping = &.{0x8801}, .status2 = .none, },
7255 .{ .cp = 0x2F9C2, .status = .mapped, .mapping = &.{0x45F9}, .status2 = .none, },
7256 .{ .cp = 0x2F9C3, .status = .mapped, .mapping = &.{0x8860}, .status2 = .none, },
7257 .{ .cp = 0x2F9C4, .status = .mapped, .mapping = &.{0x8863}, .status2 = .none, },
7258 .{ .cp = 0x2F9C5, .status = .mapped, .mapping = &.{0x27667}, .status2 = .none, },
7259 .{ .cp = 0x2F9C6, .status = .mapped, .mapping = &.{0x88D7}, .status2 = .none, },
7260 .{ .cp = 0x2F9C7, .status = .mapped, .mapping = &.{0x88DE}, .status2 = .none, },
7261 .{ .cp = 0x2F9C8, .status = .mapped, .mapping = &.{0x4635}, .status2 = .none, },
7262 .{ .cp = 0x2F9C9, .status = .mapped, .mapping = &.{0x88FA}, .status2 = .none, },
7263 .{ .cp = 0x2F9CA, .status = .mapped, .mapping = &.{0x34BB}, .status2 = .none, },
7264 .{ .cp = 0x2F9CB, .status = .mapped, .mapping = &.{0x278AE}, .status2 = .none, },
7265 .{ .cp = 0x2F9CC, .status = .mapped, .mapping = &.{0x27966}, .status2 = .none, },
7266 .{ .cp = 0x2F9CD, .status = .mapped, .mapping = &.{0x46BE}, .status2 = .none, },
7267 .{ .cp = 0x2F9CE, .status = .mapped, .mapping = &.{0x46C7}, .status2 = .none, },
7268 .{ .cp = 0x2F9CF, .status = .mapped, .mapping = &.{0x8AA0}, .status2 = .none, },
7269 .{ .cp = 0x2F9D0, .status = .mapped, .mapping = &.{0x8AED}, .status2 = .none, },
7270 .{ .cp = 0x2F9D1, .status = .mapped, .mapping = &.{0x8B8A}, .status2 = .none, },
7271 .{ .cp = 0x2F9D2, .status = .mapped, .mapping = &.{0x8C55}, .status2 = .none, },
7272 .{ .cp = 0x2F9D3, .status = .mapped, .mapping = &.{0x27CA8}, .status2 = .none, },
7273 .{ .cp = 0x2F9D4, .status = .mapped, .mapping = &.{0x8CAB}, .status2 = .none, },
7274 .{ .cp = 0x2F9D5, .status = .mapped, .mapping = &.{0x8CC1}, .status2 = .none, },
7275 .{ .cp = 0x2F9D6, .status = .mapped, .mapping = &.{0x8D1B}, .status2 = .none, },
7276 .{ .cp = 0x2F9D7, .status = .mapped, .mapping = &.{0x8D77}, .status2 = .none, },
7277 .{ .cp = 0x2F9D8, .status = .mapped, .mapping = &.{0x27F2F}, .status2 = .none, },
7278 .{ .cp = 0x2F9D9, .status = .mapped, .mapping = &.{0x20804}, .status2 = .none, },
7279 .{ .cp = 0x2F9DA, .status = .mapped, .mapping = &.{0x8DCB}, .status2 = .none, },
7280 .{ .cp = 0x2F9DB, .status = .mapped, .mapping = &.{0x8DBC}, .status2 = .none, },
7281 .{ .cp = 0x2F9DC, .status = .mapped, .mapping = &.{0x8DF0}, .status2 = .none, },
7282 .{ .cp = 0x2F9DD, .status = .mapped, .mapping = &.{0x208DE}, .status2 = .none, },
7283 .{ .cp = 0x2F9DE, .status = .mapped, .mapping = &.{0x8ED4}, .status2 = .none, },
7284 .{ .cp = 0x2F9DF, .status = .mapped, .mapping = &.{0x8F38}, .status2 = .none, },
7285 .{ .cp = 0x2F9E0, .status = .mapped, .mapping = &.{0x285D2}, .status2 = .none, },
7286 .{ .cp = 0x2F9E1, .status = .mapped, .mapping = &.{0x285ED}, .status2 = .none, },
7287 .{ .cp = 0x2F9E2, .status = .mapped, .mapping = &.{0x9094}, .status2 = .none, },
7288 .{ .cp = 0x2F9E3, .status = .mapped, .mapping = &.{0x90F1}, .status2 = .none, },
7289 .{ .cp = 0x2F9E4, .status = .mapped, .mapping = &.{0x9111}, .status2 = .none, },
7290 .{ .cp = 0x2F9E5, .status = .mapped, .mapping = &.{0x2872E}, .status2 = .none, },
7291 .{ .cp = 0x2F9E6, .status = .mapped, .mapping = &.{0x911B}, .status2 = .none, },
7292 .{ .cp = 0x2F9E7, .status = .mapped, .mapping = &.{0x9238}, .status2 = .none, },
7293 .{ .cp = 0x2F9E8, .status = .mapped, .mapping = &.{0x92D7}, .status2 = .none, },
7294 .{ .cp = 0x2F9E9, .status = .mapped, .mapping = &.{0x92D8}, .status2 = .none, },
7295 .{ .cp = 0x2F9EA, .status = .mapped, .mapping = &.{0x927C}, .status2 = .none, },
7296 .{ .cp = 0x2F9EB, .status = .mapped, .mapping = &.{0x93F9}, .status2 = .none, },
7297 .{ .cp = 0x2F9EC, .status = .mapped, .mapping = &.{0x9415}, .status2 = .none, },
7298 .{ .cp = 0x2F9ED, .status = .mapped, .mapping = &.{0x28BFA}, .status2 = .none, },
7299 .{ .cp = 0x2F9EE, .status = .mapped, .mapping = &.{0x958B}, .status2 = .none, },
7300 .{ .cp = 0x2F9EF, .status = .mapped, .mapping = &.{0x4995}, .status2 = .none, },
7301 .{ .cp = 0x2F9F0, .status = .mapped, .mapping = &.{0x95B7}, .status2 = .none, },
7302 .{ .cp = 0x2F9F1, .status = .mapped, .mapping = &.{0x28D77}, .status2 = .none, },
7303 .{ .cp = 0x2F9F2, .status = .mapped, .mapping = &.{0x49E6}, .status2 = .none, },
7304 .{ .cp = 0x2F9F3, .status = .mapped, .mapping = &.{0x96C3}, .status2 = .none, },
7305 .{ .cp = 0x2F9F4, .status = .mapped, .mapping = &.{0x5DB2}, .status2 = .none, },
7306 .{ .cp = 0x2F9F5, .status = .mapped, .mapping = &.{0x9723}, .status2 = .none, },
7307 .{ .cp = 0x2F9F6, .status = .mapped, .mapping = &.{0x29145}, .status2 = .none, },
7308 .{ .cp = 0x2F9F7, .status = .mapped, .mapping = &.{0x2921A}, .status2 = .none, },
7309 .{ .cp = 0x2F9F8, .status = .mapped, .mapping = &.{0x4A6E}, .status2 = .none, },
7310 .{ .cp = 0x2F9F9, .status = .mapped, .mapping = &.{0x4A76}, .status2 = .none, },
7311 .{ .cp = 0x2F9FA, .status = .mapped, .mapping = &.{0x97E0}, .status2 = .none, },
7312 .{ .cp = 0x2F9FB, .status = .mapped, .mapping = &.{0x2940A}, .status2 = .none, },
7313 .{ .cp = 0x2F9FC, .status = .mapped, .mapping = &.{0x4AB2}, .status2 = .none, },
7314 .{ .cp = 0x2F9FD, .status = .mapped, .mapping = &.{0x29496}, .status2 = .none, },
7315 .{ .cp = 0x2FA00, .status = .mapped, .mapping = &.{0x9829}, .status2 = .none, },
7316 .{ .cp = 0x2FA01, .status = .mapped, .mapping = &.{0x295B6}, .status2 = .none, },
7317 .{ .cp = 0x2FA02, .status = .mapped, .mapping = &.{0x98E2}, .status2 = .none, },
7318 .{ .cp = 0x2FA03, .status = .mapped, .mapping = &.{0x4B33}, .status2 = .none, },
7319 .{ .cp = 0x2FA04, .status = .mapped, .mapping = &.{0x9929}, .status2 = .none, },
7320 .{ .cp = 0x2FA05, .status = .mapped, .mapping = &.{0x99A7}, .status2 = .none, },
7321 .{ .cp = 0x2FA06, .status = .mapped, .mapping = &.{0x99C2}, .status2 = .none, },
7322 .{ .cp = 0x2FA07, .status = .mapped, .mapping = &.{0x99FE}, .status2 = .none, },
7323 .{ .cp = 0x2FA08, .status = .mapped, .mapping = &.{0x4BCE}, .status2 = .none, },
7324 .{ .cp = 0x2FA09, .status = .mapped, .mapping = &.{0x29B30}, .status2 = .none, },
7325 .{ .cp = 0x2FA0A, .status = .mapped, .mapping = &.{0x9B12}, .status2 = .none, },
7326 .{ .cp = 0x2FA0B, .status = .mapped, .mapping = &.{0x9C40}, .status2 = .none, },
7327 .{ .cp = 0x2FA0C, .status = .mapped, .mapping = &.{0x9CFD}, .status2 = .none, },
7328 .{ .cp = 0x2FA0D, .status = .mapped, .mapping = &.{0x4CCE}, .status2 = .none, },
7329 .{ .cp = 0x2FA0E, .status = .mapped, .mapping = &.{0x4CED}, .status2 = .none, },
7330 .{ .cp = 0x2FA0F, .status = .mapped, .mapping = &.{0x9D67}, .status2 = .none, },
7331 .{ .cp = 0x2FA10, .status = .mapped, .mapping = &.{0x2A0CE}, .status2 = .none, },
7332 .{ .cp = 0x2FA11, .status = .mapped, .mapping = &.{0x4CF8}, .status2 = .none, },
7333 .{ .cp = 0x2FA12, .status = .mapped, .mapping = &.{0x2A105}, .status2 = .none, },
7334 .{ .cp = 0x2FA13, .status = .mapped, .mapping = &.{0x2A20E}, .status2 = .none, },
7335 .{ .cp = 0x2FA14, .status = .mapped, .mapping = &.{0x2A291}, .status2 = .none, },
7336 .{ .cp = 0x2FA15, .status = .mapped, .mapping = &.{0x9EBB}, .status2 = .none, },
7337 .{ .cp = 0x2FA16, .status = .mapped, .mapping = &.{0x4D56}, .status2 = .none, },
7338 .{ .cp = 0x2FA17, .status = .mapped, .mapping = &.{0x9EF9}, .status2 = .none, },
7339 .{ .cp = 0x2FA18, .status = .mapped, .mapping = &.{0x9EFE}, .status2 = .none, },
7340 .{ .cp = 0x2FA19, .status = .mapped, .mapping = &.{0x9F05}, .status2 = .none, },
7341 .{ .cp = 0x2FA1A, .status = .mapped, .mapping = &.{0x9F0F}, .status2 = .none, },
7342 .{ .cp = 0x2FA1B, .status = .mapped, .mapping = &.{0x9F16}, .status2 = .none, },
7343 .{ .cp = 0x2FA1C, .status = .mapped, .mapping = &.{0x9F3B}, .status2 = .none, },
7344 .{ .cp = 0x2FA1D, .status = .mapped, .mapping = &.{0x2A600}, .status2 = .none, },
7345 .{ .cp = 0xE0000, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7346 .{ .cp = 0xE0001, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7347};
7348
7349pub const data_range = [_]RowRange{
7350 .{ .from = 0x0000, .to = 0x002C, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7351 .{ .from = 0x002D, .to = 0x002E, .status = .valid, .mapping = &.{}, .status2 = .none, },
7352 .{ .from = 0x0030, .to = 0x0039, .status = .valid, .mapping = &.{}, .status2 = .none, },
7353 .{ .from = 0x003A, .to = 0x0040, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7354 .{ .from = 0x005B, .to = 0x0060, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7355 .{ .from = 0x0061, .to = 0x007A, .status = .valid, .mapping = &.{}, .status2 = .none, },
7356 .{ .from = 0x007B, .to = 0x007F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7357 .{ .from = 0x0080, .to = 0x009F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7358 .{ .from = 0x00A1, .to = 0x00A7, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7359 .{ .from = 0x00AB, .to = 0x00AC, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7360 .{ .from = 0x00B0, .to = 0x00B1, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7361 .{ .from = 0x00E0, .to = 0x00F6, .status = .valid, .mapping = &.{}, .status2 = .none, },
7362 .{ .from = 0x00F8, .to = 0x00FF, .status = .valid, .mapping = &.{}, .status2 = .none, },
7363 .{ .from = 0x0132, .to = 0x0133, .status = .mapped, .mapping = &.{0x0069,0x006A}, .status2 = .none, },
7364 .{ .from = 0x0137, .to = 0x0138, .status = .valid, .mapping = &.{}, .status2 = .none, },
7365 .{ .from = 0x013F, .to = 0x0140, .status = .mapped, .mapping = &.{0x006C,0x00B7}, .status2 = .none, },
7366 .{ .from = 0x018C, .to = 0x018D, .status = .valid, .mapping = &.{}, .status2 = .none, },
7367 .{ .from = 0x0199, .to = 0x019B, .status = .valid, .mapping = &.{}, .status2 = .none, },
7368 .{ .from = 0x01AA, .to = 0x01AB, .status = .valid, .mapping = &.{}, .status2 = .none, },
7369 .{ .from = 0x01B9, .to = 0x01BB, .status = .valid, .mapping = &.{}, .status2 = .none, },
7370 .{ .from = 0x01BD, .to = 0x01C3, .status = .valid, .mapping = &.{}, .status2 = .none, },
7371 .{ .from = 0x01C4, .to = 0x01C6, .status = .mapped, .mapping = &.{0x0064,0x017E}, .status2 = .none, },
7372 .{ .from = 0x01C7, .to = 0x01C9, .status = .mapped, .mapping = &.{0x006C,0x006A}, .status2 = .none, },
7373 .{ .from = 0x01CA, .to = 0x01CC, .status = .mapped, .mapping = &.{0x006E,0x006A}, .status2 = .none, },
7374 .{ .from = 0x01DC, .to = 0x01DD, .status = .valid, .mapping = &.{}, .status2 = .none, },
7375 .{ .from = 0x01EF, .to = 0x01F0, .status = .valid, .mapping = &.{}, .status2 = .none, },
7376 .{ .from = 0x01F1, .to = 0x01F3, .status = .mapped, .mapping = &.{0x0064,0x007A}, .status2 = .none, },
7377 .{ .from = 0x0234, .to = 0x0236, .status = .valid, .mapping = &.{}, .status2 = .none, },
7378 .{ .from = 0x0237, .to = 0x0239, .status = .valid, .mapping = &.{}, .status2 = .none, },
7379 .{ .from = 0x023F, .to = 0x0240, .status = .valid, .mapping = &.{}, .status2 = .none, },
7380 .{ .from = 0x0250, .to = 0x02A8, .status = .valid, .mapping = &.{}, .status2 = .none, },
7381 .{ .from = 0x02A9, .to = 0x02AD, .status = .valid, .mapping = &.{}, .status2 = .none, },
7382 .{ .from = 0x02AE, .to = 0x02AF, .status = .valid, .mapping = &.{}, .status2 = .none, },
7383 .{ .from = 0x02B9, .to = 0x02C1, .status = .valid, .mapping = &.{}, .status2 = .none, },
7384 .{ .from = 0x02C2, .to = 0x02C5, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7385 .{ .from = 0x02C6, .to = 0x02D1, .status = .valid, .mapping = &.{}, .status2 = .none, },
7386 .{ .from = 0x02D2, .to = 0x02D7, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7387 .{ .from = 0x02E5, .to = 0x02E9, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7388 .{ .from = 0x02EA, .to = 0x02EB, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7389 .{ .from = 0x02EF, .to = 0x02FF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7390 .{ .from = 0x0300, .to = 0x033F, .status = .valid, .mapping = &.{}, .status2 = .none, },
7391 .{ .from = 0x0346, .to = 0x034E, .status = .valid, .mapping = &.{}, .status2 = .none, },
7392 .{ .from = 0x0350, .to = 0x0357, .status = .valid, .mapping = &.{}, .status2 = .none, },
7393 .{ .from = 0x0358, .to = 0x035C, .status = .valid, .mapping = &.{}, .status2 = .none, },
7394 .{ .from = 0x035D, .to = 0x035F, .status = .valid, .mapping = &.{}, .status2 = .none, },
7395 .{ .from = 0x0360, .to = 0x0361, .status = .valid, .mapping = &.{}, .status2 = .none, },
7396 .{ .from = 0x0363, .to = 0x036F, .status = .valid, .mapping = &.{}, .status2 = .none, },
7397 .{ .from = 0x0378, .to = 0x0379, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7398 .{ .from = 0x037B, .to = 0x037D, .status = .valid, .mapping = &.{}, .status2 = .none, },
7399 .{ .from = 0x0380, .to = 0x0383, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7400 .{ .from = 0x03AC, .to = 0x03C1, .status = .valid, .mapping = &.{}, .status2 = .none, },
7401 .{ .from = 0x03C3, .to = 0x03CE, .status = .valid, .mapping = &.{}, .status2 = .none, },
7402 .{ .from = 0x0430, .to = 0x044F, .status = .valid, .mapping = &.{}, .status2 = .none, },
7403 .{ .from = 0x0451, .to = 0x045C, .status = .valid, .mapping = &.{}, .status2 = .none, },
7404 .{ .from = 0x045E, .to = 0x045F, .status = .valid, .mapping = &.{}, .status2 = .none, },
7405 .{ .from = 0x0483, .to = 0x0486, .status = .valid, .mapping = &.{}, .status2 = .none, },
7406 .{ .from = 0x0488, .to = 0x0489, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7407 .{ .from = 0x0557, .to = 0x0558, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7408 .{ .from = 0x055A, .to = 0x055F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7409 .{ .from = 0x0561, .to = 0x0586, .status = .valid, .mapping = &.{}, .status2 = .none, },
7410 .{ .from = 0x058B, .to = 0x058C, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7411 .{ .from = 0x058D, .to = 0x058E, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7412 .{ .from = 0x0591, .to = 0x05A1, .status = .valid, .mapping = &.{}, .status2 = .none, },
7413 .{ .from = 0x05A3, .to = 0x05AF, .status = .valid, .mapping = &.{}, .status2 = .none, },
7414 .{ .from = 0x05B0, .to = 0x05B9, .status = .valid, .mapping = &.{}, .status2 = .none, },
7415 .{ .from = 0x05BB, .to = 0x05BD, .status = .valid, .mapping = &.{}, .status2 = .none, },
7416 .{ .from = 0x05C1, .to = 0x05C2, .status = .valid, .mapping = &.{}, .status2 = .none, },
7417 .{ .from = 0x05C8, .to = 0x05CF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7418 .{ .from = 0x05D0, .to = 0x05EA, .status = .valid, .mapping = &.{}, .status2 = .none, },
7419 .{ .from = 0x05EB, .to = 0x05EE, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7420 .{ .from = 0x05F0, .to = 0x05F4, .status = .valid, .mapping = &.{}, .status2 = .none, },
7421 .{ .from = 0x05F5, .to = 0x05FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7422 .{ .from = 0x0600, .to = 0x0603, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7423 .{ .from = 0x0606, .to = 0x060A, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7424 .{ .from = 0x060D, .to = 0x060F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7425 .{ .from = 0x0610, .to = 0x0615, .status = .valid, .mapping = &.{}, .status2 = .none, },
7426 .{ .from = 0x0616, .to = 0x061A, .status = .valid, .mapping = &.{}, .status2 = .none, },
7427 .{ .from = 0x0621, .to = 0x063A, .status = .valid, .mapping = &.{}, .status2 = .none, },
7428 .{ .from = 0x063B, .to = 0x063F, .status = .valid, .mapping = &.{}, .status2 = .none, },
7429 .{ .from = 0x0641, .to = 0x0652, .status = .valid, .mapping = &.{}, .status2 = .none, },
7430 .{ .from = 0x0653, .to = 0x0655, .status = .valid, .mapping = &.{}, .status2 = .none, },
7431 .{ .from = 0x0656, .to = 0x0658, .status = .valid, .mapping = &.{}, .status2 = .none, },
7432 .{ .from = 0x0659, .to = 0x065E, .status = .valid, .mapping = &.{}, .status2 = .none, },
7433 .{ .from = 0x0660, .to = 0x0669, .status = .valid, .mapping = &.{}, .status2 = .none, },
7434 .{ .from = 0x066A, .to = 0x066D, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7435 .{ .from = 0x066E, .to = 0x066F, .status = .valid, .mapping = &.{}, .status2 = .none, },
7436 .{ .from = 0x0670, .to = 0x0674, .status = .valid, .mapping = &.{}, .status2 = .none, },
7437 .{ .from = 0x0679, .to = 0x06B7, .status = .valid, .mapping = &.{}, .status2 = .none, },
7438 .{ .from = 0x06B8, .to = 0x06B9, .status = .valid, .mapping = &.{}, .status2 = .none, },
7439 .{ .from = 0x06BA, .to = 0x06BE, .status = .valid, .mapping = &.{}, .status2 = .none, },
7440 .{ .from = 0x06C0, .to = 0x06CE, .status = .valid, .mapping = &.{}, .status2 = .none, },
7441 .{ .from = 0x06D0, .to = 0x06D3, .status = .valid, .mapping = &.{}, .status2 = .none, },
7442 .{ .from = 0x06D5, .to = 0x06DC, .status = .valid, .mapping = &.{}, .status2 = .none, },
7443 .{ .from = 0x06DF, .to = 0x06E8, .status = .valid, .mapping = &.{}, .status2 = .none, },
7444 .{ .from = 0x06EA, .to = 0x06ED, .status = .valid, .mapping = &.{}, .status2 = .none, },
7445 .{ .from = 0x06EE, .to = 0x06EF, .status = .valid, .mapping = &.{}, .status2 = .none, },
7446 .{ .from = 0x06F0, .to = 0x06F9, .status = .valid, .mapping = &.{}, .status2 = .none, },
7447 .{ .from = 0x06FA, .to = 0x06FE, .status = .valid, .mapping = &.{}, .status2 = .none, },
7448 .{ .from = 0x0700, .to = 0x070D, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7449 .{ .from = 0x0710, .to = 0x072C, .status = .valid, .mapping = &.{}, .status2 = .none, },
7450 .{ .from = 0x072D, .to = 0x072F, .status = .valid, .mapping = &.{}, .status2 = .none, },
7451 .{ .from = 0x0730, .to = 0x074A, .status = .valid, .mapping = &.{}, .status2 = .none, },
7452 .{ .from = 0x074B, .to = 0x074C, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7453 .{ .from = 0x074D, .to = 0x074F, .status = .valid, .mapping = &.{}, .status2 = .none, },
7454 .{ .from = 0x0750, .to = 0x076D, .status = .valid, .mapping = &.{}, .status2 = .none, },
7455 .{ .from = 0x076E, .to = 0x077F, .status = .valid, .mapping = &.{}, .status2 = .none, },
7456 .{ .from = 0x0780, .to = 0x07B0, .status = .valid, .mapping = &.{}, .status2 = .none, },
7457 .{ .from = 0x07B2, .to = 0x07BF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7458 .{ .from = 0x07C0, .to = 0x07F5, .status = .valid, .mapping = &.{}, .status2 = .none, },
7459 .{ .from = 0x07F6, .to = 0x07FA, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7460 .{ .from = 0x07FB, .to = 0x07FC, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7461 .{ .from = 0x07FE, .to = 0x07FF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7462 .{ .from = 0x0800, .to = 0x082D, .status = .valid, .mapping = &.{}, .status2 = .none, },
7463 .{ .from = 0x082E, .to = 0x082F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7464 .{ .from = 0x0830, .to = 0x083E, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7465 .{ .from = 0x0840, .to = 0x085B, .status = .valid, .mapping = &.{}, .status2 = .none, },
7466 .{ .from = 0x085C, .to = 0x085D, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7467 .{ .from = 0x0860, .to = 0x086A, .status = .valid, .mapping = &.{}, .status2 = .none, },
7468 .{ .from = 0x086B, .to = 0x086F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7469 .{ .from = 0x0870, .to = 0x0887, .status = .valid, .mapping = &.{}, .status2 = .none, },
7470 .{ .from = 0x0889, .to = 0x088E, .status = .valid, .mapping = &.{}, .status2 = .none, },
7471 .{ .from = 0x0890, .to = 0x0891, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7472 .{ .from = 0x0892, .to = 0x0896, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7473 .{ .from = 0x0898, .to = 0x089F, .status = .valid, .mapping = &.{}, .status2 = .none, },
7474 .{ .from = 0x08A2, .to = 0x08AC, .status = .valid, .mapping = &.{}, .status2 = .none, },
7475 .{ .from = 0x08AD, .to = 0x08B2, .status = .valid, .mapping = &.{}, .status2 = .none, },
7476 .{ .from = 0x08B3, .to = 0x08B4, .status = .valid, .mapping = &.{}, .status2 = .none, },
7477 .{ .from = 0x08B6, .to = 0x08BD, .status = .valid, .mapping = &.{}, .status2 = .none, },
7478 .{ .from = 0x08BE, .to = 0x08C7, .status = .valid, .mapping = &.{}, .status2 = .none, },
7479 .{ .from = 0x08C8, .to = 0x08D2, .status = .valid, .mapping = &.{}, .status2 = .none, },
7480 .{ .from = 0x08D4, .to = 0x08E1, .status = .valid, .mapping = &.{}, .status2 = .none, },
7481 .{ .from = 0x08E4, .to = 0x08FE, .status = .valid, .mapping = &.{}, .status2 = .none, },
7482 .{ .from = 0x0901, .to = 0x0903, .status = .valid, .mapping = &.{}, .status2 = .none, },
7483 .{ .from = 0x0905, .to = 0x0939, .status = .valid, .mapping = &.{}, .status2 = .none, },
7484 .{ .from = 0x093A, .to = 0x093B, .status = .valid, .mapping = &.{}, .status2 = .none, },
7485 .{ .from = 0x093C, .to = 0x094D, .status = .valid, .mapping = &.{}, .status2 = .none, },
7486 .{ .from = 0x0950, .to = 0x0954, .status = .valid, .mapping = &.{}, .status2 = .none, },
7487 .{ .from = 0x0956, .to = 0x0957, .status = .valid, .mapping = &.{}, .status2 = .none, },
7488 .{ .from = 0x0960, .to = 0x0963, .status = .valid, .mapping = &.{}, .status2 = .none, },
7489 .{ .from = 0x0964, .to = 0x0965, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7490 .{ .from = 0x0966, .to = 0x096F, .status = .valid, .mapping = &.{}, .status2 = .none, },
7491 .{ .from = 0x0971, .to = 0x0972, .status = .valid, .mapping = &.{}, .status2 = .none, },
7492 .{ .from = 0x0973, .to = 0x0977, .status = .valid, .mapping = &.{}, .status2 = .none, },
7493 .{ .from = 0x0979, .to = 0x097A, .status = .valid, .mapping = &.{}, .status2 = .none, },
7494 .{ .from = 0x097B, .to = 0x097C, .status = .valid, .mapping = &.{}, .status2 = .none, },
7495 .{ .from = 0x097E, .to = 0x097F, .status = .valid, .mapping = &.{}, .status2 = .none, },
7496 .{ .from = 0x0981, .to = 0x0983, .status = .valid, .mapping = &.{}, .status2 = .none, },
7497 .{ .from = 0x0985, .to = 0x098C, .status = .valid, .mapping = &.{}, .status2 = .none, },
7498 .{ .from = 0x098D, .to = 0x098E, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7499 .{ .from = 0x098F, .to = 0x0990, .status = .valid, .mapping = &.{}, .status2 = .none, },
7500 .{ .from = 0x0991, .to = 0x0992, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7501 .{ .from = 0x0993, .to = 0x09A8, .status = .valid, .mapping = &.{}, .status2 = .none, },
7502 .{ .from = 0x09AA, .to = 0x09B0, .status = .valid, .mapping = &.{}, .status2 = .none, },
7503 .{ .from = 0x09B3, .to = 0x09B5, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7504 .{ .from = 0x09B6, .to = 0x09B9, .status = .valid, .mapping = &.{}, .status2 = .none, },
7505 .{ .from = 0x09BA, .to = 0x09BB, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7506 .{ .from = 0x09BE, .to = 0x09C4, .status = .valid, .mapping = &.{}, .status2 = .none, },
7507 .{ .from = 0x09C5, .to = 0x09C6, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7508 .{ .from = 0x09C7, .to = 0x09C8, .status = .valid, .mapping = &.{}, .status2 = .none, },
7509 .{ .from = 0x09C9, .to = 0x09CA, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7510 .{ .from = 0x09CB, .to = 0x09CD, .status = .valid, .mapping = &.{}, .status2 = .none, },
7511 .{ .from = 0x09CF, .to = 0x09D6, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7512 .{ .from = 0x09D8, .to = 0x09DB, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7513 .{ .from = 0x09E0, .to = 0x09E3, .status = .valid, .mapping = &.{}, .status2 = .none, },
7514 .{ .from = 0x09E4, .to = 0x09E5, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7515 .{ .from = 0x09E6, .to = 0x09F1, .status = .valid, .mapping = &.{}, .status2 = .none, },
7516 .{ .from = 0x09F2, .to = 0x09FA, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7517 .{ .from = 0x09FF, .to = 0x0A00, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7518 .{ .from = 0x0A05, .to = 0x0A0A, .status = .valid, .mapping = &.{}, .status2 = .none, },
7519 .{ .from = 0x0A0B, .to = 0x0A0E, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7520 .{ .from = 0x0A0F, .to = 0x0A10, .status = .valid, .mapping = &.{}, .status2 = .none, },
7521 .{ .from = 0x0A11, .to = 0x0A12, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7522 .{ .from = 0x0A13, .to = 0x0A28, .status = .valid, .mapping = &.{}, .status2 = .none, },
7523 .{ .from = 0x0A2A, .to = 0x0A30, .status = .valid, .mapping = &.{}, .status2 = .none, },
7524 .{ .from = 0x0A38, .to = 0x0A39, .status = .valid, .mapping = &.{}, .status2 = .none, },
7525 .{ .from = 0x0A3A, .to = 0x0A3B, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7526 .{ .from = 0x0A3E, .to = 0x0A42, .status = .valid, .mapping = &.{}, .status2 = .none, },
7527 .{ .from = 0x0A43, .to = 0x0A46, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7528 .{ .from = 0x0A47, .to = 0x0A48, .status = .valid, .mapping = &.{}, .status2 = .none, },
7529 .{ .from = 0x0A49, .to = 0x0A4A, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7530 .{ .from = 0x0A4B, .to = 0x0A4D, .status = .valid, .mapping = &.{}, .status2 = .none, },
7531 .{ .from = 0x0A4E, .to = 0x0A50, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7532 .{ .from = 0x0A52, .to = 0x0A58, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7533 .{ .from = 0x0A5F, .to = 0x0A65, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7534 .{ .from = 0x0A66, .to = 0x0A74, .status = .valid, .mapping = &.{}, .status2 = .none, },
7535 .{ .from = 0x0A77, .to = 0x0A80, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7536 .{ .from = 0x0A81, .to = 0x0A83, .status = .valid, .mapping = &.{}, .status2 = .none, },
7537 .{ .from = 0x0A85, .to = 0x0A8B, .status = .valid, .mapping = &.{}, .status2 = .none, },
7538 .{ .from = 0x0A8F, .to = 0x0A91, .status = .valid, .mapping = &.{}, .status2 = .none, },
7539 .{ .from = 0x0A93, .to = 0x0AA8, .status = .valid, .mapping = &.{}, .status2 = .none, },
7540 .{ .from = 0x0AAA, .to = 0x0AB0, .status = .valid, .mapping = &.{}, .status2 = .none, },
7541 .{ .from = 0x0AB2, .to = 0x0AB3, .status = .valid, .mapping = &.{}, .status2 = .none, },
7542 .{ .from = 0x0AB5, .to = 0x0AB9, .status = .valid, .mapping = &.{}, .status2 = .none, },
7543 .{ .from = 0x0ABA, .to = 0x0ABB, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7544 .{ .from = 0x0ABC, .to = 0x0AC5, .status = .valid, .mapping = &.{}, .status2 = .none, },
7545 .{ .from = 0x0AC7, .to = 0x0AC9, .status = .valid, .mapping = &.{}, .status2 = .none, },
7546 .{ .from = 0x0ACB, .to = 0x0ACD, .status = .valid, .mapping = &.{}, .status2 = .none, },
7547 .{ .from = 0x0ACE, .to = 0x0ACF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7548 .{ .from = 0x0AD1, .to = 0x0ADF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7549 .{ .from = 0x0AE1, .to = 0x0AE3, .status = .valid, .mapping = &.{}, .status2 = .none, },
7550 .{ .from = 0x0AE4, .to = 0x0AE5, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7551 .{ .from = 0x0AE6, .to = 0x0AEF, .status = .valid, .mapping = &.{}, .status2 = .none, },
7552 .{ .from = 0x0AF2, .to = 0x0AF8, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7553 .{ .from = 0x0AFA, .to = 0x0AFF, .status = .valid, .mapping = &.{}, .status2 = .none, },
7554 .{ .from = 0x0B01, .to = 0x0B03, .status = .valid, .mapping = &.{}, .status2 = .none, },
7555 .{ .from = 0x0B05, .to = 0x0B0C, .status = .valid, .mapping = &.{}, .status2 = .none, },
7556 .{ .from = 0x0B0D, .to = 0x0B0E, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7557 .{ .from = 0x0B0F, .to = 0x0B10, .status = .valid, .mapping = &.{}, .status2 = .none, },
7558 .{ .from = 0x0B11, .to = 0x0B12, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7559 .{ .from = 0x0B13, .to = 0x0B28, .status = .valid, .mapping = &.{}, .status2 = .none, },
7560 .{ .from = 0x0B2A, .to = 0x0B30, .status = .valid, .mapping = &.{}, .status2 = .none, },
7561 .{ .from = 0x0B32, .to = 0x0B33, .status = .valid, .mapping = &.{}, .status2 = .none, },
7562 .{ .from = 0x0B36, .to = 0x0B39, .status = .valid, .mapping = &.{}, .status2 = .none, },
7563 .{ .from = 0x0B3A, .to = 0x0B3B, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7564 .{ .from = 0x0B3C, .to = 0x0B43, .status = .valid, .mapping = &.{}, .status2 = .none, },
7565 .{ .from = 0x0B45, .to = 0x0B46, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7566 .{ .from = 0x0B47, .to = 0x0B48, .status = .valid, .mapping = &.{}, .status2 = .none, },
7567 .{ .from = 0x0B49, .to = 0x0B4A, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7568 .{ .from = 0x0B4B, .to = 0x0B4D, .status = .valid, .mapping = &.{}, .status2 = .none, },
7569 .{ .from = 0x0B4E, .to = 0x0B54, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7570 .{ .from = 0x0B56, .to = 0x0B57, .status = .valid, .mapping = &.{}, .status2 = .none, },
7571 .{ .from = 0x0B58, .to = 0x0B5B, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7572 .{ .from = 0x0B5F, .to = 0x0B61, .status = .valid, .mapping = &.{}, .status2 = .none, },
7573 .{ .from = 0x0B62, .to = 0x0B63, .status = .valid, .mapping = &.{}, .status2 = .none, },
7574 .{ .from = 0x0B64, .to = 0x0B65, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7575 .{ .from = 0x0B66, .to = 0x0B6F, .status = .valid, .mapping = &.{}, .status2 = .none, },
7576 .{ .from = 0x0B72, .to = 0x0B77, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7577 .{ .from = 0x0B78, .to = 0x0B81, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7578 .{ .from = 0x0B82, .to = 0x0B83, .status = .valid, .mapping = &.{}, .status2 = .none, },
7579 .{ .from = 0x0B85, .to = 0x0B8A, .status = .valid, .mapping = &.{}, .status2 = .none, },
7580 .{ .from = 0x0B8B, .to = 0x0B8D, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7581 .{ .from = 0x0B8E, .to = 0x0B90, .status = .valid, .mapping = &.{}, .status2 = .none, },
7582 .{ .from = 0x0B92, .to = 0x0B95, .status = .valid, .mapping = &.{}, .status2 = .none, },
7583 .{ .from = 0x0B96, .to = 0x0B98, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7584 .{ .from = 0x0B99, .to = 0x0B9A, .status = .valid, .mapping = &.{}, .status2 = .none, },
7585 .{ .from = 0x0B9E, .to = 0x0B9F, .status = .valid, .mapping = &.{}, .status2 = .none, },
7586 .{ .from = 0x0BA0, .to = 0x0BA2, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7587 .{ .from = 0x0BA3, .to = 0x0BA4, .status = .valid, .mapping = &.{}, .status2 = .none, },
7588 .{ .from = 0x0BA5, .to = 0x0BA7, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7589 .{ .from = 0x0BA8, .to = 0x0BAA, .status = .valid, .mapping = &.{}, .status2 = .none, },
7590 .{ .from = 0x0BAB, .to = 0x0BAD, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7591 .{ .from = 0x0BAE, .to = 0x0BB5, .status = .valid, .mapping = &.{}, .status2 = .none, },
7592 .{ .from = 0x0BB7, .to = 0x0BB9, .status = .valid, .mapping = &.{}, .status2 = .none, },
7593 .{ .from = 0x0BBA, .to = 0x0BBD, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7594 .{ .from = 0x0BBE, .to = 0x0BC2, .status = .valid, .mapping = &.{}, .status2 = .none, },
7595 .{ .from = 0x0BC3, .to = 0x0BC5, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7596 .{ .from = 0x0BC6, .to = 0x0BC8, .status = .valid, .mapping = &.{}, .status2 = .none, },
7597 .{ .from = 0x0BCA, .to = 0x0BCD, .status = .valid, .mapping = &.{}, .status2 = .none, },
7598 .{ .from = 0x0BCE, .to = 0x0BCF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7599 .{ .from = 0x0BD1, .to = 0x0BD6, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7600 .{ .from = 0x0BD8, .to = 0x0BE5, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7601 .{ .from = 0x0BE7, .to = 0x0BEF, .status = .valid, .mapping = &.{}, .status2 = .none, },
7602 .{ .from = 0x0BF0, .to = 0x0BF2, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7603 .{ .from = 0x0BF3, .to = 0x0BFA, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7604 .{ .from = 0x0BFB, .to = 0x0BFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7605 .{ .from = 0x0C01, .to = 0x0C03, .status = .valid, .mapping = &.{}, .status2 = .none, },
7606 .{ .from = 0x0C05, .to = 0x0C0C, .status = .valid, .mapping = &.{}, .status2 = .none, },
7607 .{ .from = 0x0C0E, .to = 0x0C10, .status = .valid, .mapping = &.{}, .status2 = .none, },
7608 .{ .from = 0x0C12, .to = 0x0C28, .status = .valid, .mapping = &.{}, .status2 = .none, },
7609 .{ .from = 0x0C2A, .to = 0x0C33, .status = .valid, .mapping = &.{}, .status2 = .none, },
7610 .{ .from = 0x0C35, .to = 0x0C39, .status = .valid, .mapping = &.{}, .status2 = .none, },
7611 .{ .from = 0x0C3A, .to = 0x0C3B, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7612 .{ .from = 0x0C3E, .to = 0x0C44, .status = .valid, .mapping = &.{}, .status2 = .none, },
7613 .{ .from = 0x0C46, .to = 0x0C48, .status = .valid, .mapping = &.{}, .status2 = .none, },
7614 .{ .from = 0x0C4A, .to = 0x0C4D, .status = .valid, .mapping = &.{}, .status2 = .none, },
7615 .{ .from = 0x0C4E, .to = 0x0C54, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7616 .{ .from = 0x0C55, .to = 0x0C56, .status = .valid, .mapping = &.{}, .status2 = .none, },
7617 .{ .from = 0x0C58, .to = 0x0C59, .status = .valid, .mapping = &.{}, .status2 = .none, },
7618 .{ .from = 0x0C5E, .to = 0x0C5F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7619 .{ .from = 0x0C60, .to = 0x0C61, .status = .valid, .mapping = &.{}, .status2 = .none, },
7620 .{ .from = 0x0C62, .to = 0x0C63, .status = .valid, .mapping = &.{}, .status2 = .none, },
7621 .{ .from = 0x0C64, .to = 0x0C65, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7622 .{ .from = 0x0C66, .to = 0x0C6F, .status = .valid, .mapping = &.{}, .status2 = .none, },
7623 .{ .from = 0x0C70, .to = 0x0C76, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7624 .{ .from = 0x0C78, .to = 0x0C7F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7625 .{ .from = 0x0C82, .to = 0x0C83, .status = .valid, .mapping = &.{}, .status2 = .none, },
7626 .{ .from = 0x0C85, .to = 0x0C8C, .status = .valid, .mapping = &.{}, .status2 = .none, },
7627 .{ .from = 0x0C8E, .to = 0x0C90, .status = .valid, .mapping = &.{}, .status2 = .none, },
7628 .{ .from = 0x0C92, .to = 0x0CA8, .status = .valid, .mapping = &.{}, .status2 = .none, },
7629 .{ .from = 0x0CAA, .to = 0x0CB3, .status = .valid, .mapping = &.{}, .status2 = .none, },
7630 .{ .from = 0x0CB5, .to = 0x0CB9, .status = .valid, .mapping = &.{}, .status2 = .none, },
7631 .{ .from = 0x0CBA, .to = 0x0CBB, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7632 .{ .from = 0x0CBC, .to = 0x0CBD, .status = .valid, .mapping = &.{}, .status2 = .none, },
7633 .{ .from = 0x0CBE, .to = 0x0CC4, .status = .valid, .mapping = &.{}, .status2 = .none, },
7634 .{ .from = 0x0CC6, .to = 0x0CC8, .status = .valid, .mapping = &.{}, .status2 = .none, },
7635 .{ .from = 0x0CCA, .to = 0x0CCD, .status = .valid, .mapping = &.{}, .status2 = .none, },
7636 .{ .from = 0x0CCE, .to = 0x0CD4, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7637 .{ .from = 0x0CD5, .to = 0x0CD6, .status = .valid, .mapping = &.{}, .status2 = .none, },
7638 .{ .from = 0x0CD7, .to = 0x0CDB, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7639 .{ .from = 0x0CE0, .to = 0x0CE1, .status = .valid, .mapping = &.{}, .status2 = .none, },
7640 .{ .from = 0x0CE2, .to = 0x0CE3, .status = .valid, .mapping = &.{}, .status2 = .none, },
7641 .{ .from = 0x0CE4, .to = 0x0CE5, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7642 .{ .from = 0x0CE6, .to = 0x0CEF, .status = .valid, .mapping = &.{}, .status2 = .none, },
7643 .{ .from = 0x0CF1, .to = 0x0CF2, .status = .valid, .mapping = &.{}, .status2 = .none, },
7644 .{ .from = 0x0CF4, .to = 0x0CFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7645 .{ .from = 0x0D02, .to = 0x0D03, .status = .valid, .mapping = &.{}, .status2 = .none, },
7646 .{ .from = 0x0D05, .to = 0x0D0C, .status = .valid, .mapping = &.{}, .status2 = .none, },
7647 .{ .from = 0x0D0E, .to = 0x0D10, .status = .valid, .mapping = &.{}, .status2 = .none, },
7648 .{ .from = 0x0D12, .to = 0x0D28, .status = .valid, .mapping = &.{}, .status2 = .none, },
7649 .{ .from = 0x0D2A, .to = 0x0D39, .status = .valid, .mapping = &.{}, .status2 = .none, },
7650 .{ .from = 0x0D3B, .to = 0x0D3C, .status = .valid, .mapping = &.{}, .status2 = .none, },
7651 .{ .from = 0x0D3E, .to = 0x0D43, .status = .valid, .mapping = &.{}, .status2 = .none, },
7652 .{ .from = 0x0D46, .to = 0x0D48, .status = .valid, .mapping = &.{}, .status2 = .none, },
7653 .{ .from = 0x0D4A, .to = 0x0D4D, .status = .valid, .mapping = &.{}, .status2 = .none, },
7654 .{ .from = 0x0D50, .to = 0x0D53, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7655 .{ .from = 0x0D54, .to = 0x0D56, .status = .valid, .mapping = &.{}, .status2 = .none, },
7656 .{ .from = 0x0D58, .to = 0x0D5E, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7657 .{ .from = 0x0D60, .to = 0x0D61, .status = .valid, .mapping = &.{}, .status2 = .none, },
7658 .{ .from = 0x0D62, .to = 0x0D63, .status = .valid, .mapping = &.{}, .status2 = .none, },
7659 .{ .from = 0x0D64, .to = 0x0D65, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7660 .{ .from = 0x0D66, .to = 0x0D6F, .status = .valid, .mapping = &.{}, .status2 = .none, },
7661 .{ .from = 0x0D70, .to = 0x0D75, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7662 .{ .from = 0x0D76, .to = 0x0D78, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7663 .{ .from = 0x0D7A, .to = 0x0D7F, .status = .valid, .mapping = &.{}, .status2 = .none, },
7664 .{ .from = 0x0D82, .to = 0x0D83, .status = .valid, .mapping = &.{}, .status2 = .none, },
7665 .{ .from = 0x0D85, .to = 0x0D96, .status = .valid, .mapping = &.{}, .status2 = .none, },
7666 .{ .from = 0x0D97, .to = 0x0D99, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7667 .{ .from = 0x0D9A, .to = 0x0DB1, .status = .valid, .mapping = &.{}, .status2 = .none, },
7668 .{ .from = 0x0DB3, .to = 0x0DBB, .status = .valid, .mapping = &.{}, .status2 = .none, },
7669 .{ .from = 0x0DBE, .to = 0x0DBF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7670 .{ .from = 0x0DC0, .to = 0x0DC6, .status = .valid, .mapping = &.{}, .status2 = .none, },
7671 .{ .from = 0x0DC7, .to = 0x0DC9, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7672 .{ .from = 0x0DCB, .to = 0x0DCE, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7673 .{ .from = 0x0DCF, .to = 0x0DD4, .status = .valid, .mapping = &.{}, .status2 = .none, },
7674 .{ .from = 0x0DD8, .to = 0x0DDF, .status = .valid, .mapping = &.{}, .status2 = .none, },
7675 .{ .from = 0x0DE0, .to = 0x0DE5, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7676 .{ .from = 0x0DE6, .to = 0x0DEF, .status = .valid, .mapping = &.{}, .status2 = .none, },
7677 .{ .from = 0x0DF0, .to = 0x0DF1, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7678 .{ .from = 0x0DF2, .to = 0x0DF3, .status = .valid, .mapping = &.{}, .status2 = .none, },
7679 .{ .from = 0x0DF5, .to = 0x0E00, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7680 .{ .from = 0x0E01, .to = 0x0E32, .status = .valid, .mapping = &.{}, .status2 = .none, },
7681 .{ .from = 0x0E34, .to = 0x0E3A, .status = .valid, .mapping = &.{}, .status2 = .none, },
7682 .{ .from = 0x0E3B, .to = 0x0E3E, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7683 .{ .from = 0x0E40, .to = 0x0E4E, .status = .valid, .mapping = &.{}, .status2 = .none, },
7684 .{ .from = 0x0E50, .to = 0x0E59, .status = .valid, .mapping = &.{}, .status2 = .none, },
7685 .{ .from = 0x0E5A, .to = 0x0E5B, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7686 .{ .from = 0x0E5C, .to = 0x0E80, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7687 .{ .from = 0x0E81, .to = 0x0E82, .status = .valid, .mapping = &.{}, .status2 = .none, },
7688 .{ .from = 0x0E87, .to = 0x0E88, .status = .valid, .mapping = &.{}, .status2 = .none, },
7689 .{ .from = 0x0E8E, .to = 0x0E93, .status = .valid, .mapping = &.{}, .status2 = .none, },
7690 .{ .from = 0x0E94, .to = 0x0E97, .status = .valid, .mapping = &.{}, .status2 = .none, },
7691 .{ .from = 0x0E99, .to = 0x0E9F, .status = .valid, .mapping = &.{}, .status2 = .none, },
7692 .{ .from = 0x0EA1, .to = 0x0EA3, .status = .valid, .mapping = &.{}, .status2 = .none, },
7693 .{ .from = 0x0EA8, .to = 0x0EA9, .status = .valid, .mapping = &.{}, .status2 = .none, },
7694 .{ .from = 0x0EAA, .to = 0x0EAB, .status = .valid, .mapping = &.{}, .status2 = .none, },
7695 .{ .from = 0x0EAD, .to = 0x0EB2, .status = .valid, .mapping = &.{}, .status2 = .none, },
7696 .{ .from = 0x0EB4, .to = 0x0EB9, .status = .valid, .mapping = &.{}, .status2 = .none, },
7697 .{ .from = 0x0EBB, .to = 0x0EBD, .status = .valid, .mapping = &.{}, .status2 = .none, },
7698 .{ .from = 0x0EBE, .to = 0x0EBF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7699 .{ .from = 0x0EC0, .to = 0x0EC4, .status = .valid, .mapping = &.{}, .status2 = .none, },
7700 .{ .from = 0x0EC8, .to = 0x0ECD, .status = .valid, .mapping = &.{}, .status2 = .none, },
7701 .{ .from = 0x0ED0, .to = 0x0ED9, .status = .valid, .mapping = &.{}, .status2 = .none, },
7702 .{ .from = 0x0EDA, .to = 0x0EDB, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7703 .{ .from = 0x0EDE, .to = 0x0EDF, .status = .valid, .mapping = &.{}, .status2 = .none, },
7704 .{ .from = 0x0EE0, .to = 0x0EFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7705 .{ .from = 0x0F01, .to = 0x0F0A, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7706 .{ .from = 0x0F0D, .to = 0x0F17, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7707 .{ .from = 0x0F18, .to = 0x0F19, .status = .valid, .mapping = &.{}, .status2 = .none, },
7708 .{ .from = 0x0F1A, .to = 0x0F1F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7709 .{ .from = 0x0F20, .to = 0x0F29, .status = .valid, .mapping = &.{}, .status2 = .none, },
7710 .{ .from = 0x0F2A, .to = 0x0F34, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7711 .{ .from = 0x0F3A, .to = 0x0F3D, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7712 .{ .from = 0x0F3E, .to = 0x0F42, .status = .valid, .mapping = &.{}, .status2 = .none, },
7713 .{ .from = 0x0F44, .to = 0x0F47, .status = .valid, .mapping = &.{}, .status2 = .none, },
7714 .{ .from = 0x0F49, .to = 0x0F4C, .status = .valid, .mapping = &.{}, .status2 = .none, },
7715 .{ .from = 0x0F4E, .to = 0x0F51, .status = .valid, .mapping = &.{}, .status2 = .none, },
7716 .{ .from = 0x0F53, .to = 0x0F56, .status = .valid, .mapping = &.{}, .status2 = .none, },
7717 .{ .from = 0x0F58, .to = 0x0F5B, .status = .valid, .mapping = &.{}, .status2 = .none, },
7718 .{ .from = 0x0F5D, .to = 0x0F68, .status = .valid, .mapping = &.{}, .status2 = .none, },
7719 .{ .from = 0x0F6B, .to = 0x0F6C, .status = .valid, .mapping = &.{}, .status2 = .none, },
7720 .{ .from = 0x0F6D, .to = 0x0F70, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7721 .{ .from = 0x0F71, .to = 0x0F72, .status = .valid, .mapping = &.{}, .status2 = .none, },
7722 .{ .from = 0x0F7A, .to = 0x0F80, .status = .valid, .mapping = &.{}, .status2 = .none, },
7723 .{ .from = 0x0F82, .to = 0x0F84, .status = .valid, .mapping = &.{}, .status2 = .none, },
7724 .{ .from = 0x0F86, .to = 0x0F8B, .status = .valid, .mapping = &.{}, .status2 = .none, },
7725 .{ .from = 0x0F8C, .to = 0x0F8F, .status = .valid, .mapping = &.{}, .status2 = .none, },
7726 .{ .from = 0x0F90, .to = 0x0F92, .status = .valid, .mapping = &.{}, .status2 = .none, },
7727 .{ .from = 0x0F94, .to = 0x0F95, .status = .valid, .mapping = &.{}, .status2 = .none, },
7728 .{ .from = 0x0F99, .to = 0x0F9C, .status = .valid, .mapping = &.{}, .status2 = .none, },
7729 .{ .from = 0x0F9E, .to = 0x0FA1, .status = .valid, .mapping = &.{}, .status2 = .none, },
7730 .{ .from = 0x0FA3, .to = 0x0FA6, .status = .valid, .mapping = &.{}, .status2 = .none, },
7731 .{ .from = 0x0FA8, .to = 0x0FAB, .status = .valid, .mapping = &.{}, .status2 = .none, },
7732 .{ .from = 0x0FAE, .to = 0x0FB0, .status = .valid, .mapping = &.{}, .status2 = .none, },
7733 .{ .from = 0x0FB1, .to = 0x0FB7, .status = .valid, .mapping = &.{}, .status2 = .none, },
7734 .{ .from = 0x0FBA, .to = 0x0FBC, .status = .valid, .mapping = &.{}, .status2 = .none, },
7735 .{ .from = 0x0FBE, .to = 0x0FC5, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7736 .{ .from = 0x0FC7, .to = 0x0FCC, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7737 .{ .from = 0x0FD0, .to = 0x0FD1, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7738 .{ .from = 0x0FD2, .to = 0x0FD4, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7739 .{ .from = 0x0FD5, .to = 0x0FD8, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7740 .{ .from = 0x0FD9, .to = 0x0FDA, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7741 .{ .from = 0x0FDB, .to = 0x0FFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7742 .{ .from = 0x1000, .to = 0x1021, .status = .valid, .mapping = &.{}, .status2 = .none, },
7743 .{ .from = 0x1023, .to = 0x1027, .status = .valid, .mapping = &.{}, .status2 = .none, },
7744 .{ .from = 0x1029, .to = 0x102A, .status = .valid, .mapping = &.{}, .status2 = .none, },
7745 .{ .from = 0x102C, .to = 0x1032, .status = .valid, .mapping = &.{}, .status2 = .none, },
7746 .{ .from = 0x1033, .to = 0x1035, .status = .valid, .mapping = &.{}, .status2 = .none, },
7747 .{ .from = 0x1036, .to = 0x1039, .status = .valid, .mapping = &.{}, .status2 = .none, },
7748 .{ .from = 0x103A, .to = 0x103F, .status = .valid, .mapping = &.{}, .status2 = .none, },
7749 .{ .from = 0x1040, .to = 0x1049, .status = .valid, .mapping = &.{}, .status2 = .none, },
7750 .{ .from = 0x104A, .to = 0x104F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7751 .{ .from = 0x1050, .to = 0x1059, .status = .valid, .mapping = &.{}, .status2 = .none, },
7752 .{ .from = 0x105A, .to = 0x1099, .status = .valid, .mapping = &.{}, .status2 = .none, },
7753 .{ .from = 0x109A, .to = 0x109D, .status = .valid, .mapping = &.{}, .status2 = .none, },
7754 .{ .from = 0x109E, .to = 0x109F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7755 .{ .from = 0x10C8, .to = 0x10CC, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7756 .{ .from = 0x10CE, .to = 0x10CF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7757 .{ .from = 0x10D0, .to = 0x10F6, .status = .valid, .mapping = &.{}, .status2 = .none, },
7758 .{ .from = 0x10F7, .to = 0x10F8, .status = .valid, .mapping = &.{}, .status2 = .none, },
7759 .{ .from = 0x10F9, .to = 0x10FA, .status = .valid, .mapping = &.{}, .status2 = .none, },
7760 .{ .from = 0x10FD, .to = 0x10FF, .status = .valid, .mapping = &.{}, .status2 = .none, },
7761 .{ .from = 0x1100, .to = 0x1159, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7762 .{ .from = 0x115A, .to = 0x115E, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7763 .{ .from = 0x115F, .to = 0x1160, .status = .ignored, .mapping = &.{}, .status2 = .none, },
7764 .{ .from = 0x1161, .to = 0x11A2, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7765 .{ .from = 0x11A3, .to = 0x11A7, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7766 .{ .from = 0x11A8, .to = 0x11F9, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7767 .{ .from = 0x11FA, .to = 0x11FF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7768 .{ .from = 0x1200, .to = 0x1206, .status = .valid, .mapping = &.{}, .status2 = .none, },
7769 .{ .from = 0x1208, .to = 0x1246, .status = .valid, .mapping = &.{}, .status2 = .none, },
7770 .{ .from = 0x124A, .to = 0x124D, .status = .valid, .mapping = &.{}, .status2 = .none, },
7771 .{ .from = 0x124E, .to = 0x124F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7772 .{ .from = 0x1250, .to = 0x1256, .status = .valid, .mapping = &.{}, .status2 = .none, },
7773 .{ .from = 0x125A, .to = 0x125D, .status = .valid, .mapping = &.{}, .status2 = .none, },
7774 .{ .from = 0x125E, .to = 0x125F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7775 .{ .from = 0x1260, .to = 0x1286, .status = .valid, .mapping = &.{}, .status2 = .none, },
7776 .{ .from = 0x128A, .to = 0x128D, .status = .valid, .mapping = &.{}, .status2 = .none, },
7777 .{ .from = 0x128E, .to = 0x128F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7778 .{ .from = 0x1290, .to = 0x12AE, .status = .valid, .mapping = &.{}, .status2 = .none, },
7779 .{ .from = 0x12B2, .to = 0x12B5, .status = .valid, .mapping = &.{}, .status2 = .none, },
7780 .{ .from = 0x12B6, .to = 0x12B7, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7781 .{ .from = 0x12B8, .to = 0x12BE, .status = .valid, .mapping = &.{}, .status2 = .none, },
7782 .{ .from = 0x12C2, .to = 0x12C5, .status = .valid, .mapping = &.{}, .status2 = .none, },
7783 .{ .from = 0x12C6, .to = 0x12C7, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7784 .{ .from = 0x12C8, .to = 0x12CE, .status = .valid, .mapping = &.{}, .status2 = .none, },
7785 .{ .from = 0x12D0, .to = 0x12D6, .status = .valid, .mapping = &.{}, .status2 = .none, },
7786 .{ .from = 0x12D8, .to = 0x12EE, .status = .valid, .mapping = &.{}, .status2 = .none, },
7787 .{ .from = 0x12F0, .to = 0x130E, .status = .valid, .mapping = &.{}, .status2 = .none, },
7788 .{ .from = 0x1312, .to = 0x1315, .status = .valid, .mapping = &.{}, .status2 = .none, },
7789 .{ .from = 0x1316, .to = 0x1317, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7790 .{ .from = 0x1318, .to = 0x131E, .status = .valid, .mapping = &.{}, .status2 = .none, },
7791 .{ .from = 0x1320, .to = 0x1346, .status = .valid, .mapping = &.{}, .status2 = .none, },
7792 .{ .from = 0x1348, .to = 0x135A, .status = .valid, .mapping = &.{}, .status2 = .none, },
7793 .{ .from = 0x135B, .to = 0x135C, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7794 .{ .from = 0x135D, .to = 0x135E, .status = .valid, .mapping = &.{}, .status2 = .none, },
7795 .{ .from = 0x1361, .to = 0x137C, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7796 .{ .from = 0x137D, .to = 0x137F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7797 .{ .from = 0x1380, .to = 0x138F, .status = .valid, .mapping = &.{}, .status2 = .none, },
7798 .{ .from = 0x1390, .to = 0x1399, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7799 .{ .from = 0x139A, .to = 0x139F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7800 .{ .from = 0x13A0, .to = 0x13F4, .status = .valid, .mapping = &.{}, .status2 = .none, },
7801 .{ .from = 0x13F6, .to = 0x13F7, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7802 .{ .from = 0x13FE, .to = 0x13FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7803 .{ .from = 0x1401, .to = 0x166C, .status = .valid, .mapping = &.{}, .status2 = .none, },
7804 .{ .from = 0x166D, .to = 0x166E, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7805 .{ .from = 0x166F, .to = 0x1676, .status = .valid, .mapping = &.{}, .status2 = .none, },
7806 .{ .from = 0x1677, .to = 0x167F, .status = .valid, .mapping = &.{}, .status2 = .none, },
7807 .{ .from = 0x1681, .to = 0x169A, .status = .valid, .mapping = &.{}, .status2 = .none, },
7808 .{ .from = 0x169B, .to = 0x169C, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7809 .{ .from = 0x169D, .to = 0x169F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7810 .{ .from = 0x16A0, .to = 0x16EA, .status = .valid, .mapping = &.{}, .status2 = .none, },
7811 .{ .from = 0x16EB, .to = 0x16F0, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7812 .{ .from = 0x16F1, .to = 0x16F8, .status = .valid, .mapping = &.{}, .status2 = .none, },
7813 .{ .from = 0x16F9, .to = 0x16FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7814 .{ .from = 0x1700, .to = 0x170C, .status = .valid, .mapping = &.{}, .status2 = .none, },
7815 .{ .from = 0x170E, .to = 0x1714, .status = .valid, .mapping = &.{}, .status2 = .none, },
7816 .{ .from = 0x1716, .to = 0x171E, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7817 .{ .from = 0x1720, .to = 0x1734, .status = .valid, .mapping = &.{}, .status2 = .none, },
7818 .{ .from = 0x1735, .to = 0x1736, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7819 .{ .from = 0x1737, .to = 0x173F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7820 .{ .from = 0x1740, .to = 0x1753, .status = .valid, .mapping = &.{}, .status2 = .none, },
7821 .{ .from = 0x1754, .to = 0x175F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7822 .{ .from = 0x1760, .to = 0x176C, .status = .valid, .mapping = &.{}, .status2 = .none, },
7823 .{ .from = 0x176E, .to = 0x1770, .status = .valid, .mapping = &.{}, .status2 = .none, },
7824 .{ .from = 0x1772, .to = 0x1773, .status = .valid, .mapping = &.{}, .status2 = .none, },
7825 .{ .from = 0x1774, .to = 0x177F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7826 .{ .from = 0x1780, .to = 0x17B3, .status = .valid, .mapping = &.{}, .status2 = .none, },
7827 .{ .from = 0x17B4, .to = 0x17B5, .status = .ignored, .mapping = &.{}, .status2 = .none, },
7828 .{ .from = 0x17B6, .to = 0x17D3, .status = .valid, .mapping = &.{}, .status2 = .none, },
7829 .{ .from = 0x17D4, .to = 0x17D6, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7830 .{ .from = 0x17D8, .to = 0x17DB, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7831 .{ .from = 0x17DE, .to = 0x17DF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7832 .{ .from = 0x17E0, .to = 0x17E9, .status = .valid, .mapping = &.{}, .status2 = .none, },
7833 .{ .from = 0x17EA, .to = 0x17EF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7834 .{ .from = 0x17F0, .to = 0x17F9, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7835 .{ .from = 0x17FA, .to = 0x17FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7836 .{ .from = 0x1800, .to = 0x180A, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7837 .{ .from = 0x180B, .to = 0x180E, .status = .ignored, .mapping = &.{}, .status2 = .none, },
7838 .{ .from = 0x1810, .to = 0x1819, .status = .valid, .mapping = &.{}, .status2 = .none, },
7839 .{ .from = 0x181A, .to = 0x181F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7840 .{ .from = 0x1820, .to = 0x1877, .status = .valid, .mapping = &.{}, .status2 = .none, },
7841 .{ .from = 0x1879, .to = 0x187F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7842 .{ .from = 0x1880, .to = 0x18A9, .status = .valid, .mapping = &.{}, .status2 = .none, },
7843 .{ .from = 0x18AB, .to = 0x18AF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7844 .{ .from = 0x18B0, .to = 0x18F5, .status = .valid, .mapping = &.{}, .status2 = .none, },
7845 .{ .from = 0x18F6, .to = 0x18FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7846 .{ .from = 0x1900, .to = 0x191C, .status = .valid, .mapping = &.{}, .status2 = .none, },
7847 .{ .from = 0x191D, .to = 0x191E, .status = .valid, .mapping = &.{}, .status2 = .none, },
7848 .{ .from = 0x1920, .to = 0x192B, .status = .valid, .mapping = &.{}, .status2 = .none, },
7849 .{ .from = 0x192C, .to = 0x192F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7850 .{ .from = 0x1930, .to = 0x193B, .status = .valid, .mapping = &.{}, .status2 = .none, },
7851 .{ .from = 0x193C, .to = 0x193F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7852 .{ .from = 0x1941, .to = 0x1943, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7853 .{ .from = 0x1944, .to = 0x1945, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7854 .{ .from = 0x1946, .to = 0x196D, .status = .valid, .mapping = &.{}, .status2 = .none, },
7855 .{ .from = 0x196E, .to = 0x196F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7856 .{ .from = 0x1970, .to = 0x1974, .status = .valid, .mapping = &.{}, .status2 = .none, },
7857 .{ .from = 0x1975, .to = 0x197F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7858 .{ .from = 0x1980, .to = 0x19A9, .status = .valid, .mapping = &.{}, .status2 = .none, },
7859 .{ .from = 0x19AA, .to = 0x19AB, .status = .valid, .mapping = &.{}, .status2 = .none, },
7860 .{ .from = 0x19AC, .to = 0x19AF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7861 .{ .from = 0x19B0, .to = 0x19C9, .status = .valid, .mapping = &.{}, .status2 = .none, },
7862 .{ .from = 0x19CA, .to = 0x19CF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7863 .{ .from = 0x19D0, .to = 0x19D9, .status = .valid, .mapping = &.{}, .status2 = .none, },
7864 .{ .from = 0x19DB, .to = 0x19DD, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7865 .{ .from = 0x19DE, .to = 0x19DF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7866 .{ .from = 0x19E0, .to = 0x19FF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7867 .{ .from = 0x1A00, .to = 0x1A1B, .status = .valid, .mapping = &.{}, .status2 = .none, },
7868 .{ .from = 0x1A1C, .to = 0x1A1D, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7869 .{ .from = 0x1A1E, .to = 0x1A1F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7870 .{ .from = 0x1A20, .to = 0x1A5E, .status = .valid, .mapping = &.{}, .status2 = .none, },
7871 .{ .from = 0x1A60, .to = 0x1A7C, .status = .valid, .mapping = &.{}, .status2 = .none, },
7872 .{ .from = 0x1A7D, .to = 0x1A7E, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7873 .{ .from = 0x1A7F, .to = 0x1A89, .status = .valid, .mapping = &.{}, .status2 = .none, },
7874 .{ .from = 0x1A8A, .to = 0x1A8F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7875 .{ .from = 0x1A90, .to = 0x1A99, .status = .valid, .mapping = &.{}, .status2 = .none, },
7876 .{ .from = 0x1A9A, .to = 0x1A9F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7877 .{ .from = 0x1AA0, .to = 0x1AA6, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7878 .{ .from = 0x1AA8, .to = 0x1AAD, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7879 .{ .from = 0x1AAE, .to = 0x1AAF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7880 .{ .from = 0x1AB0, .to = 0x1ABD, .status = .valid, .mapping = &.{}, .status2 = .none, },
7881 .{ .from = 0x1ABF, .to = 0x1AC0, .status = .valid, .mapping = &.{}, .status2 = .none, },
7882 .{ .from = 0x1AC1, .to = 0x1ACE, .status = .valid, .mapping = &.{}, .status2 = .none, },
7883 .{ .from = 0x1ACF, .to = 0x1ADD, .status = .valid, .mapping = &.{}, .status2 = .none, },
7884 .{ .from = 0x1ADE, .to = 0x1ADF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7885 .{ .from = 0x1AE0, .to = 0x1AEB, .status = .valid, .mapping = &.{}, .status2 = .none, },
7886 .{ .from = 0x1AEC, .to = 0x1AFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7887 .{ .from = 0x1B00, .to = 0x1B4B, .status = .valid, .mapping = &.{}, .status2 = .none, },
7888 .{ .from = 0x1B4E, .to = 0x1B4F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7889 .{ .from = 0x1B50, .to = 0x1B59, .status = .valid, .mapping = &.{}, .status2 = .none, },
7890 .{ .from = 0x1B5A, .to = 0x1B6A, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7891 .{ .from = 0x1B6B, .to = 0x1B73, .status = .valid, .mapping = &.{}, .status2 = .none, },
7892 .{ .from = 0x1B74, .to = 0x1B7C, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7893 .{ .from = 0x1B7D, .to = 0x1B7E, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7894 .{ .from = 0x1B80, .to = 0x1BAA, .status = .valid, .mapping = &.{}, .status2 = .none, },
7895 .{ .from = 0x1BAB, .to = 0x1BAD, .status = .valid, .mapping = &.{}, .status2 = .none, },
7896 .{ .from = 0x1BAE, .to = 0x1BB9, .status = .valid, .mapping = &.{}, .status2 = .none, },
7897 .{ .from = 0x1BBA, .to = 0x1BBF, .status = .valid, .mapping = &.{}, .status2 = .none, },
7898 .{ .from = 0x1BC0, .to = 0x1BF3, .status = .valid, .mapping = &.{}, .status2 = .none, },
7899 .{ .from = 0x1BF4, .to = 0x1BFB, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7900 .{ .from = 0x1BFC, .to = 0x1BFF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7901 .{ .from = 0x1C00, .to = 0x1C37, .status = .valid, .mapping = &.{}, .status2 = .none, },
7902 .{ .from = 0x1C38, .to = 0x1C3A, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7903 .{ .from = 0x1C3B, .to = 0x1C3F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7904 .{ .from = 0x1C40, .to = 0x1C49, .status = .valid, .mapping = &.{}, .status2 = .none, },
7905 .{ .from = 0x1C4A, .to = 0x1C4C, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7906 .{ .from = 0x1C4D, .to = 0x1C7D, .status = .valid, .mapping = &.{}, .status2 = .none, },
7907 .{ .from = 0x1C7E, .to = 0x1C7F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7908 .{ .from = 0x1C84, .to = 0x1C85, .status = .mapped, .mapping = &.{0x0442}, .status2 = .none, },
7909 .{ .from = 0x1C8B, .to = 0x1C8F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7910 .{ .from = 0x1CBB, .to = 0x1CBC, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7911 .{ .from = 0x1CC0, .to = 0x1CC7, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7912 .{ .from = 0x1CC8, .to = 0x1CCF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7913 .{ .from = 0x1CD0, .to = 0x1CD2, .status = .valid, .mapping = &.{}, .status2 = .none, },
7914 .{ .from = 0x1CD4, .to = 0x1CF2, .status = .valid, .mapping = &.{}, .status2 = .none, },
7915 .{ .from = 0x1CF3, .to = 0x1CF6, .status = .valid, .mapping = &.{}, .status2 = .none, },
7916 .{ .from = 0x1CF8, .to = 0x1CF9, .status = .valid, .mapping = &.{}, .status2 = .none, },
7917 .{ .from = 0x1CFB, .to = 0x1CFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7918 .{ .from = 0x1D00, .to = 0x1D2B, .status = .valid, .mapping = &.{}, .status2 = .none, },
7919 .{ .from = 0x1D6C, .to = 0x1D77, .status = .valid, .mapping = &.{}, .status2 = .none, },
7920 .{ .from = 0x1D79, .to = 0x1D9A, .status = .valid, .mapping = &.{}, .status2 = .none, },
7921 .{ .from = 0x1DC0, .to = 0x1DC3, .status = .valid, .mapping = &.{}, .status2 = .none, },
7922 .{ .from = 0x1DC4, .to = 0x1DCA, .status = .valid, .mapping = &.{}, .status2 = .none, },
7923 .{ .from = 0x1DCB, .to = 0x1DE6, .status = .valid, .mapping = &.{}, .status2 = .none, },
7924 .{ .from = 0x1DE7, .to = 0x1DF5, .status = .valid, .mapping = &.{}, .status2 = .none, },
7925 .{ .from = 0x1DF6, .to = 0x1DF9, .status = .valid, .mapping = &.{}, .status2 = .none, },
7926 .{ .from = 0x1DFE, .to = 0x1DFF, .status = .valid, .mapping = &.{}, .status2 = .none, },
7927 .{ .from = 0x1E95, .to = 0x1E99, .status = .valid, .mapping = &.{}, .status2 = .none, },
7928 .{ .from = 0x1E9C, .to = 0x1E9D, .status = .valid, .mapping = &.{}, .status2 = .none, },
7929 .{ .from = 0x1F00, .to = 0x1F07, .status = .valid, .mapping = &.{}, .status2 = .none, },
7930 .{ .from = 0x1F10, .to = 0x1F15, .status = .valid, .mapping = &.{}, .status2 = .none, },
7931 .{ .from = 0x1F16, .to = 0x1F17, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7932 .{ .from = 0x1F1E, .to = 0x1F1F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7933 .{ .from = 0x1F20, .to = 0x1F27, .status = .valid, .mapping = &.{}, .status2 = .none, },
7934 .{ .from = 0x1F30, .to = 0x1F37, .status = .valid, .mapping = &.{}, .status2 = .none, },
7935 .{ .from = 0x1F40, .to = 0x1F45, .status = .valid, .mapping = &.{}, .status2 = .none, },
7936 .{ .from = 0x1F46, .to = 0x1F47, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7937 .{ .from = 0x1F4E, .to = 0x1F4F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7938 .{ .from = 0x1F50, .to = 0x1F57, .status = .valid, .mapping = &.{}, .status2 = .none, },
7939 .{ .from = 0x1F60, .to = 0x1F67, .status = .valid, .mapping = &.{}, .status2 = .none, },
7940 .{ .from = 0x1F7E, .to = 0x1F7F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7941 .{ .from = 0x1FB0, .to = 0x1FB1, .status = .valid, .mapping = &.{}, .status2 = .none, },
7942 .{ .from = 0x1FD0, .to = 0x1FD2, .status = .valid, .mapping = &.{}, .status2 = .none, },
7943 .{ .from = 0x1FD4, .to = 0x1FD5, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7944 .{ .from = 0x1FD6, .to = 0x1FD7, .status = .valid, .mapping = &.{}, .status2 = .none, },
7945 .{ .from = 0x1FE0, .to = 0x1FE2, .status = .valid, .mapping = &.{}, .status2 = .none, },
7946 .{ .from = 0x1FE4, .to = 0x1FE7, .status = .valid, .mapping = &.{}, .status2 = .none, },
7947 .{ .from = 0x1FF0, .to = 0x1FF1, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7948 .{ .from = 0x2000, .to = 0x200A, .status = .mapped, .mapping = &.{0x0020}, .status2 = .none, },
7949 .{ .from = 0x200C, .to = 0x200D, .status = .deviation, .mapping = &.{}, .status2 = .none, },
7950 .{ .from = 0x200E, .to = 0x200F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7951 .{ .from = 0x2012, .to = 0x2016, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7952 .{ .from = 0x2018, .to = 0x2023, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7953 .{ .from = 0x2024, .to = 0x2026, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7954 .{ .from = 0x2028, .to = 0x202E, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7955 .{ .from = 0x2030, .to = 0x2032, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7956 .{ .from = 0x2038, .to = 0x203B, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7957 .{ .from = 0x203F, .to = 0x2046, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7958 .{ .from = 0x204A, .to = 0x204D, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7959 .{ .from = 0x204E, .to = 0x2052, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7960 .{ .from = 0x2053, .to = 0x2054, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7961 .{ .from = 0x2055, .to = 0x2056, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7962 .{ .from = 0x2058, .to = 0x205E, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7963 .{ .from = 0x2060, .to = 0x2063, .status = .ignored, .mapping = &.{}, .status2 = .none, },
7964 .{ .from = 0x2066, .to = 0x2069, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7965 .{ .from = 0x206A, .to = 0x206F, .status = .ignored, .mapping = &.{}, .status2 = .none, },
7966 .{ .from = 0x2072, .to = 0x2073, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7967 .{ .from = 0x209D, .to = 0x209F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7968 .{ .from = 0x20A0, .to = 0x20A7, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7969 .{ .from = 0x20A9, .to = 0x20AA, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7970 .{ .from = 0x20AD, .to = 0x20AF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7971 .{ .from = 0x20B0, .to = 0x20B1, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7972 .{ .from = 0x20B2, .to = 0x20B5, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7973 .{ .from = 0x20B6, .to = 0x20B8, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7974 .{ .from = 0x20BB, .to = 0x20BD, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7975 .{ .from = 0x20C2, .to = 0x20CF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7976 .{ .from = 0x20D0, .to = 0x20E1, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7977 .{ .from = 0x20E2, .to = 0x20E3, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7978 .{ .from = 0x20E4, .to = 0x20EA, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7979 .{ .from = 0x20EC, .to = 0x20EF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7980 .{ .from = 0x20F1, .to = 0x20FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7981 .{ .from = 0x210B, .to = 0x210E, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, },
7982 .{ .from = 0x2110, .to = 0x2111, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, },
7983 .{ .from = 0x2112, .to = 0x2113, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, },
7984 .{ .from = 0x2117, .to = 0x2118, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7985 .{ .from = 0x211B, .to = 0x211D, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, },
7986 .{ .from = 0x211E, .to = 0x211F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7987 .{ .from = 0x212F, .to = 0x2130, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, },
7988 .{ .from = 0x213D, .to = 0x213E, .status = .mapped, .mapping = &.{0x03B3}, .status2 = .none, },
7989 .{ .from = 0x2141, .to = 0x2144, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7990 .{ .from = 0x2145, .to = 0x2146, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, },
7991 .{ .from = 0x214A, .to = 0x214B, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7992 .{ .from = 0x2180, .to = 0x2182, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7993 .{ .from = 0x2185, .to = 0x2188, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7994 .{ .from = 0x218A, .to = 0x218B, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7995 .{ .from = 0x218C, .to = 0x218F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
7996 .{ .from = 0x2190, .to = 0x21EA, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7997 .{ .from = 0x21EB, .to = 0x21F3, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7998 .{ .from = 0x21F4, .to = 0x21FF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
7999 .{ .from = 0x2200, .to = 0x222B, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8000 .{ .from = 0x2231, .to = 0x22F1, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8001 .{ .from = 0x22F2, .to = 0x22FF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8002 .{ .from = 0x2302, .to = 0x2328, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8003 .{ .from = 0x232B, .to = 0x237A, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8004 .{ .from = 0x237D, .to = 0x239A, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8005 .{ .from = 0x239B, .to = 0x23CE, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8006 .{ .from = 0x23CF, .to = 0x23D0, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8007 .{ .from = 0x23D1, .to = 0x23DB, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8008 .{ .from = 0x23DC, .to = 0x23E7, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8009 .{ .from = 0x23E9, .to = 0x23F3, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8010 .{ .from = 0x23F4, .to = 0x23FA, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8011 .{ .from = 0x23FB, .to = 0x23FE, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8012 .{ .from = 0x2400, .to = 0x2424, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8013 .{ .from = 0x2425, .to = 0x2426, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8014 .{ .from = 0x2427, .to = 0x2429, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8015 .{ .from = 0x242A, .to = 0x243F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8016 .{ .from = 0x2440, .to = 0x244A, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8017 .{ .from = 0x244B, .to = 0x245F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8018 .{ .from = 0x2488, .to = 0x249B, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8019 .{ .from = 0x24EB, .to = 0x24FE, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8020 .{ .from = 0x2500, .to = 0x2595, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8021 .{ .from = 0x2596, .to = 0x259F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8022 .{ .from = 0x25A0, .to = 0x25EF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8023 .{ .from = 0x25F0, .to = 0x25F7, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8024 .{ .from = 0x25F8, .to = 0x25FF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8025 .{ .from = 0x2600, .to = 0x2613, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8026 .{ .from = 0x2614, .to = 0x2615, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8027 .{ .from = 0x2616, .to = 0x2617, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8028 .{ .from = 0x261A, .to = 0x266F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8029 .{ .from = 0x2670, .to = 0x2671, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8030 .{ .from = 0x2672, .to = 0x267D, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8031 .{ .from = 0x267E, .to = 0x267F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8032 .{ .from = 0x2680, .to = 0x2689, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8033 .{ .from = 0x268A, .to = 0x2691, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8034 .{ .from = 0x2692, .to = 0x269C, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8035 .{ .from = 0x269E, .to = 0x269F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8036 .{ .from = 0x26A0, .to = 0x26A1, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8037 .{ .from = 0x26A2, .to = 0x26B1, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8038 .{ .from = 0x26B3, .to = 0x26BC, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8039 .{ .from = 0x26BD, .to = 0x26BF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8040 .{ .from = 0x26C0, .to = 0x26C3, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8041 .{ .from = 0x26C4, .to = 0x26CD, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8042 .{ .from = 0x26CF, .to = 0x26E1, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8043 .{ .from = 0x26E4, .to = 0x26E7, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8044 .{ .from = 0x26E8, .to = 0x26FF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8045 .{ .from = 0x2701, .to = 0x2704, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8046 .{ .from = 0x2706, .to = 0x2709, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8047 .{ .from = 0x270A, .to = 0x270B, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8048 .{ .from = 0x270C, .to = 0x2727, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8049 .{ .from = 0x2729, .to = 0x274B, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8050 .{ .from = 0x274F, .to = 0x2752, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8051 .{ .from = 0x2753, .to = 0x2755, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8052 .{ .from = 0x2758, .to = 0x275E, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8053 .{ .from = 0x275F, .to = 0x2760, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8054 .{ .from = 0x2761, .to = 0x2767, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8055 .{ .from = 0x2768, .to = 0x2775, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8056 .{ .from = 0x2776, .to = 0x2794, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8057 .{ .from = 0x2795, .to = 0x2797, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8058 .{ .from = 0x2798, .to = 0x27AF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8059 .{ .from = 0x27B1, .to = 0x27BE, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8060 .{ .from = 0x27C0, .to = 0x27C6, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8061 .{ .from = 0x27C7, .to = 0x27CA, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8062 .{ .from = 0x27CE, .to = 0x27CF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8063 .{ .from = 0x27D0, .to = 0x27EB, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8064 .{ .from = 0x27EC, .to = 0x27EF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8065 .{ .from = 0x27F0, .to = 0x27FF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8066 .{ .from = 0x2800, .to = 0x28FF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8067 .{ .from = 0x2900, .to = 0x2A0B, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8068 .{ .from = 0x2A0D, .to = 0x2A73, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8069 .{ .from = 0x2A77, .to = 0x2ADB, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8070 .{ .from = 0x2ADD, .to = 0x2AFF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8071 .{ .from = 0x2B00, .to = 0x2B0D, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8072 .{ .from = 0x2B0E, .to = 0x2B13, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8073 .{ .from = 0x2B14, .to = 0x2B1A, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8074 .{ .from = 0x2B1B, .to = 0x2B1F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8075 .{ .from = 0x2B20, .to = 0x2B23, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8076 .{ .from = 0x2B24, .to = 0x2B4C, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8077 .{ .from = 0x2B4D, .to = 0x2B4F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8078 .{ .from = 0x2B50, .to = 0x2B54, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8079 .{ .from = 0x2B55, .to = 0x2B59, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8080 .{ .from = 0x2B5A, .to = 0x2B73, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8081 .{ .from = 0x2B74, .to = 0x2B75, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8082 .{ .from = 0x2B76, .to = 0x2B95, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8083 .{ .from = 0x2B98, .to = 0x2BB9, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8084 .{ .from = 0x2BBA, .to = 0x2BBC, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8085 .{ .from = 0x2BBD, .to = 0x2BC8, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8086 .{ .from = 0x2BCA, .to = 0x2BD1, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8087 .{ .from = 0x2BD3, .to = 0x2BEB, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8088 .{ .from = 0x2BEC, .to = 0x2BEF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8089 .{ .from = 0x2BF0, .to = 0x2BFE, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8090 .{ .from = 0x2C30, .to = 0x2C5E, .status = .valid, .mapping = &.{}, .status2 = .none, },
8091 .{ .from = 0x2C65, .to = 0x2C66, .status = .valid, .mapping = &.{}, .status2 = .none, },
8092 .{ .from = 0x2C76, .to = 0x2C77, .status = .valid, .mapping = &.{}, .status2 = .none, },
8093 .{ .from = 0x2C78, .to = 0x2C7B, .status = .valid, .mapping = &.{}, .status2 = .none, },
8094 .{ .from = 0x2CE3, .to = 0x2CE4, .status = .valid, .mapping = &.{}, .status2 = .none, },
8095 .{ .from = 0x2CE5, .to = 0x2CEA, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8096 .{ .from = 0x2CEE, .to = 0x2CF1, .status = .valid, .mapping = &.{}, .status2 = .none, },
8097 .{ .from = 0x2CF4, .to = 0x2CF8, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8098 .{ .from = 0x2CF9, .to = 0x2CFF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8099 .{ .from = 0x2D00, .to = 0x2D25, .status = .valid, .mapping = &.{}, .status2 = .none, },
8100 .{ .from = 0x2D28, .to = 0x2D2C, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8101 .{ .from = 0x2D2E, .to = 0x2D2F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8102 .{ .from = 0x2D30, .to = 0x2D65, .status = .valid, .mapping = &.{}, .status2 = .none, },
8103 .{ .from = 0x2D66, .to = 0x2D67, .status = .valid, .mapping = &.{}, .status2 = .none, },
8104 .{ .from = 0x2D68, .to = 0x2D6E, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8105 .{ .from = 0x2D71, .to = 0x2D7E, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8106 .{ .from = 0x2D80, .to = 0x2D96, .status = .valid, .mapping = &.{}, .status2 = .none, },
8107 .{ .from = 0x2D97, .to = 0x2D9F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8108 .{ .from = 0x2DA0, .to = 0x2DA6, .status = .valid, .mapping = &.{}, .status2 = .none, },
8109 .{ .from = 0x2DA8, .to = 0x2DAE, .status = .valid, .mapping = &.{}, .status2 = .none, },
8110 .{ .from = 0x2DB0, .to = 0x2DB6, .status = .valid, .mapping = &.{}, .status2 = .none, },
8111 .{ .from = 0x2DB8, .to = 0x2DBE, .status = .valid, .mapping = &.{}, .status2 = .none, },
8112 .{ .from = 0x2DC0, .to = 0x2DC6, .status = .valid, .mapping = &.{}, .status2 = .none, },
8113 .{ .from = 0x2DC8, .to = 0x2DCE, .status = .valid, .mapping = &.{}, .status2 = .none, },
8114 .{ .from = 0x2DD0, .to = 0x2DD6, .status = .valid, .mapping = &.{}, .status2 = .none, },
8115 .{ .from = 0x2DD8, .to = 0x2DDE, .status = .valid, .mapping = &.{}, .status2 = .none, },
8116 .{ .from = 0x2DE0, .to = 0x2DFF, .status = .valid, .mapping = &.{}, .status2 = .none, },
8117 .{ .from = 0x2E00, .to = 0x2E17, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8118 .{ .from = 0x2E18, .to = 0x2E1B, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8119 .{ .from = 0x2E1C, .to = 0x2E1D, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8120 .{ .from = 0x2E1E, .to = 0x2E2E, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8121 .{ .from = 0x2E32, .to = 0x2E3B, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8122 .{ .from = 0x2E3C, .to = 0x2E42, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8123 .{ .from = 0x2E43, .to = 0x2E44, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8124 .{ .from = 0x2E45, .to = 0x2E49, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8125 .{ .from = 0x2E4A, .to = 0x2E4E, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8126 .{ .from = 0x2E50, .to = 0x2E52, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8127 .{ .from = 0x2E53, .to = 0x2E5D, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8128 .{ .from = 0x2E5E, .to = 0x2E7F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8129 .{ .from = 0x2E80, .to = 0x2E99, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8130 .{ .from = 0x2E9B, .to = 0x2E9E, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8131 .{ .from = 0x2EA0, .to = 0x2EF2, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8132 .{ .from = 0x2EF4, .to = 0x2EFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8133 .{ .from = 0x2FD6, .to = 0x2FEF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8134 .{ .from = 0x2FF0, .to = 0x2FFB, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8135 .{ .from = 0x2FFC, .to = 0x2FFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8136 .{ .from = 0x3003, .to = 0x3004, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8137 .{ .from = 0x3005, .to = 0x3007, .status = .valid, .mapping = &.{}, .status2 = .none, },
8138 .{ .from = 0x3008, .to = 0x3029, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8139 .{ .from = 0x302A, .to = 0x302D, .status = .valid, .mapping = &.{}, .status2 = .none, },
8140 .{ .from = 0x302E, .to = 0x3035, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8141 .{ .from = 0x3041, .to = 0x3094, .status = .valid, .mapping = &.{}, .status2 = .none, },
8142 .{ .from = 0x3095, .to = 0x3096, .status = .valid, .mapping = &.{}, .status2 = .none, },
8143 .{ .from = 0x3097, .to = 0x3098, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8144 .{ .from = 0x3099, .to = 0x309A, .status = .valid, .mapping = &.{}, .status2 = .none, },
8145 .{ .from = 0x309D, .to = 0x309E, .status = .valid, .mapping = &.{}, .status2 = .none, },
8146 .{ .from = 0x30A1, .to = 0x30FE, .status = .valid, .mapping = &.{}, .status2 = .none, },
8147 .{ .from = 0x3100, .to = 0x3104, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8148 .{ .from = 0x3105, .to = 0x312C, .status = .valid, .mapping = &.{}, .status2 = .none, },
8149 .{ .from = 0x3190, .to = 0x3191, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8150 .{ .from = 0x31A0, .to = 0x31B7, .status = .valid, .mapping = &.{}, .status2 = .none, },
8151 .{ .from = 0x31B8, .to = 0x31BA, .status = .valid, .mapping = &.{}, .status2 = .none, },
8152 .{ .from = 0x31BB, .to = 0x31BF, .status = .valid, .mapping = &.{}, .status2 = .none, },
8153 .{ .from = 0x31C0, .to = 0x31CF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8154 .{ .from = 0x31D0, .to = 0x31E3, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8155 .{ .from = 0x31E4, .to = 0x31E5, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8156 .{ .from = 0x31E6, .to = 0x31EE, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8157 .{ .from = 0x31F0, .to = 0x31FF, .status = .valid, .mapping = &.{}, .status2 = .none, },
8158 .{ .from = 0x3248, .to = 0x324F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8159 .{ .from = 0x3400, .to = 0x4DB5, .status = .valid, .mapping = &.{}, .status2 = .none, },
8160 .{ .from = 0x4DB6, .to = 0x4DBF, .status = .valid, .mapping = &.{}, .status2 = .none, },
8161 .{ .from = 0x4DC0, .to = 0x4DFF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8162 .{ .from = 0x4E00, .to = 0x9FA5, .status = .valid, .mapping = &.{}, .status2 = .none, },
8163 .{ .from = 0x9FA6, .to = 0x9FBB, .status = .valid, .mapping = &.{}, .status2 = .none, },
8164 .{ .from = 0x9FBC, .to = 0x9FC3, .status = .valid, .mapping = &.{}, .status2 = .none, },
8165 .{ .from = 0x9FC4, .to = 0x9FCB, .status = .valid, .mapping = &.{}, .status2 = .none, },
8166 .{ .from = 0x9FCD, .to = 0x9FD5, .status = .valid, .mapping = &.{}, .status2 = .none, },
8167 .{ .from = 0x9FD6, .to = 0x9FEA, .status = .valid, .mapping = &.{}, .status2 = .none, },
8168 .{ .from = 0x9FEB, .to = 0x9FEF, .status = .valid, .mapping = &.{}, .status2 = .none, },
8169 .{ .from = 0x9FF0, .to = 0x9FFC, .status = .valid, .mapping = &.{}, .status2 = .none, },
8170 .{ .from = 0x9FFD, .to = 0x9FFF, .status = .valid, .mapping = &.{}, .status2 = .none, },
8171 .{ .from = 0xA000, .to = 0xA48C, .status = .valid, .mapping = &.{}, .status2 = .none, },
8172 .{ .from = 0xA48D, .to = 0xA48F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8173 .{ .from = 0xA490, .to = 0xA4A1, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8174 .{ .from = 0xA4A2, .to = 0xA4A3, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8175 .{ .from = 0xA4A4, .to = 0xA4B3, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8176 .{ .from = 0xA4B5, .to = 0xA4C0, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8177 .{ .from = 0xA4C2, .to = 0xA4C4, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8178 .{ .from = 0xA4C7, .to = 0xA4CF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8179 .{ .from = 0xA4D0, .to = 0xA4FD, .status = .valid, .mapping = &.{}, .status2 = .none, },
8180 .{ .from = 0xA4FE, .to = 0xA4FF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8181 .{ .from = 0xA500, .to = 0xA60C, .status = .valid, .mapping = &.{}, .status2 = .none, },
8182 .{ .from = 0xA60D, .to = 0xA60F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8183 .{ .from = 0xA610, .to = 0xA62B, .status = .valid, .mapping = &.{}, .status2 = .none, },
8184 .{ .from = 0xA62C, .to = 0xA63F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8185 .{ .from = 0xA66D, .to = 0xA66F, .status = .valid, .mapping = &.{}, .status2 = .none, },
8186 .{ .from = 0xA670, .to = 0xA673, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8187 .{ .from = 0xA674, .to = 0xA67B, .status = .valid, .mapping = &.{}, .status2 = .none, },
8188 .{ .from = 0xA67C, .to = 0xA67D, .status = .valid, .mapping = &.{}, .status2 = .none, },
8189 .{ .from = 0xA6A0, .to = 0xA6E5, .status = .valid, .mapping = &.{}, .status2 = .none, },
8190 .{ .from = 0xA6E6, .to = 0xA6EF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8191 .{ .from = 0xA6F0, .to = 0xA6F1, .status = .valid, .mapping = &.{}, .status2 = .none, },
8192 .{ .from = 0xA6F2, .to = 0xA6F7, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8193 .{ .from = 0xA6F8, .to = 0xA6FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8194 .{ .from = 0xA700, .to = 0xA716, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8195 .{ .from = 0xA717, .to = 0xA71A, .status = .valid, .mapping = &.{}, .status2 = .none, },
8196 .{ .from = 0xA71B, .to = 0xA71F, .status = .valid, .mapping = &.{}, .status2 = .none, },
8197 .{ .from = 0xA720, .to = 0xA721, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8198 .{ .from = 0xA72F, .to = 0xA731, .status = .valid, .mapping = &.{}, .status2 = .none, },
8199 .{ .from = 0xA771, .to = 0xA778, .status = .valid, .mapping = &.{}, .status2 = .none, },
8200 .{ .from = 0xA787, .to = 0xA788, .status = .valid, .mapping = &.{}, .status2 = .none, },
8201 .{ .from = 0xA789, .to = 0xA78A, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8202 .{ .from = 0xA794, .to = 0xA795, .status = .valid, .mapping = &.{}, .status2 = .none, },
8203 .{ .from = 0xA7DD, .to = 0xA7F0, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8204 .{ .from = 0xA7FB, .to = 0xA7FF, .status = .valid, .mapping = &.{}, .status2 = .none, },
8205 .{ .from = 0xA800, .to = 0xA827, .status = .valid, .mapping = &.{}, .status2 = .none, },
8206 .{ .from = 0xA828, .to = 0xA82B, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8207 .{ .from = 0xA82D, .to = 0xA82F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8208 .{ .from = 0xA830, .to = 0xA839, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8209 .{ .from = 0xA83A, .to = 0xA83F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8210 .{ .from = 0xA840, .to = 0xA873, .status = .valid, .mapping = &.{}, .status2 = .none, },
8211 .{ .from = 0xA874, .to = 0xA877, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8212 .{ .from = 0xA878, .to = 0xA87F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8213 .{ .from = 0xA880, .to = 0xA8C4, .status = .valid, .mapping = &.{}, .status2 = .none, },
8214 .{ .from = 0xA8C6, .to = 0xA8CD, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8215 .{ .from = 0xA8CE, .to = 0xA8CF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8216 .{ .from = 0xA8D0, .to = 0xA8D9, .status = .valid, .mapping = &.{}, .status2 = .none, },
8217 .{ .from = 0xA8DA, .to = 0xA8DF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8218 .{ .from = 0xA8E0, .to = 0xA8F7, .status = .valid, .mapping = &.{}, .status2 = .none, },
8219 .{ .from = 0xA8F8, .to = 0xA8FA, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8220 .{ .from = 0xA8FE, .to = 0xA8FF, .status = .valid, .mapping = &.{}, .status2 = .none, },
8221 .{ .from = 0xA900, .to = 0xA92D, .status = .valid, .mapping = &.{}, .status2 = .none, },
8222 .{ .from = 0xA92E, .to = 0xA92F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8223 .{ .from = 0xA930, .to = 0xA953, .status = .valid, .mapping = &.{}, .status2 = .none, },
8224 .{ .from = 0xA954, .to = 0xA95E, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8225 .{ .from = 0xA960, .to = 0xA97C, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8226 .{ .from = 0xA97D, .to = 0xA97F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8227 .{ .from = 0xA980, .to = 0xA9C0, .status = .valid, .mapping = &.{}, .status2 = .none, },
8228 .{ .from = 0xA9C1, .to = 0xA9CD, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8229 .{ .from = 0xA9CF, .to = 0xA9D9, .status = .valid, .mapping = &.{}, .status2 = .none, },
8230 .{ .from = 0xA9DA, .to = 0xA9DD, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8231 .{ .from = 0xA9DE, .to = 0xA9DF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8232 .{ .from = 0xA9E0, .to = 0xA9FE, .status = .valid, .mapping = &.{}, .status2 = .none, },
8233 .{ .from = 0xAA00, .to = 0xAA36, .status = .valid, .mapping = &.{}, .status2 = .none, },
8234 .{ .from = 0xAA37, .to = 0xAA3F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8235 .{ .from = 0xAA40, .to = 0xAA4D, .status = .valid, .mapping = &.{}, .status2 = .none, },
8236 .{ .from = 0xAA4E, .to = 0xAA4F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8237 .{ .from = 0xAA50, .to = 0xAA59, .status = .valid, .mapping = &.{}, .status2 = .none, },
8238 .{ .from = 0xAA5A, .to = 0xAA5B, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8239 .{ .from = 0xAA5C, .to = 0xAA5F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8240 .{ .from = 0xAA60, .to = 0xAA76, .status = .valid, .mapping = &.{}, .status2 = .none, },
8241 .{ .from = 0xAA77, .to = 0xAA79, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8242 .{ .from = 0xAA7A, .to = 0xAA7B, .status = .valid, .mapping = &.{}, .status2 = .none, },
8243 .{ .from = 0xAA7C, .to = 0xAA7F, .status = .valid, .mapping = &.{}, .status2 = .none, },
8244 .{ .from = 0xAA80, .to = 0xAAC2, .status = .valid, .mapping = &.{}, .status2 = .none, },
8245 .{ .from = 0xAAC3, .to = 0xAADA, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8246 .{ .from = 0xAADB, .to = 0xAADD, .status = .valid, .mapping = &.{}, .status2 = .none, },
8247 .{ .from = 0xAADE, .to = 0xAADF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8248 .{ .from = 0xAAE0, .to = 0xAAEF, .status = .valid, .mapping = &.{}, .status2 = .none, },
8249 .{ .from = 0xAAF0, .to = 0xAAF1, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8250 .{ .from = 0xAAF2, .to = 0xAAF6, .status = .valid, .mapping = &.{}, .status2 = .none, },
8251 .{ .from = 0xAAF7, .to = 0xAB00, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8252 .{ .from = 0xAB01, .to = 0xAB06, .status = .valid, .mapping = &.{}, .status2 = .none, },
8253 .{ .from = 0xAB07, .to = 0xAB08, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8254 .{ .from = 0xAB09, .to = 0xAB0E, .status = .valid, .mapping = &.{}, .status2 = .none, },
8255 .{ .from = 0xAB0F, .to = 0xAB10, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8256 .{ .from = 0xAB11, .to = 0xAB16, .status = .valid, .mapping = &.{}, .status2 = .none, },
8257 .{ .from = 0xAB17, .to = 0xAB1F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8258 .{ .from = 0xAB20, .to = 0xAB26, .status = .valid, .mapping = &.{}, .status2 = .none, },
8259 .{ .from = 0xAB28, .to = 0xAB2E, .status = .valid, .mapping = &.{}, .status2 = .none, },
8260 .{ .from = 0xAB30, .to = 0xAB5A, .status = .valid, .mapping = &.{}, .status2 = .none, },
8261 .{ .from = 0xAB60, .to = 0xAB63, .status = .valid, .mapping = &.{}, .status2 = .none, },
8262 .{ .from = 0xAB64, .to = 0xAB65, .status = .valid, .mapping = &.{}, .status2 = .none, },
8263 .{ .from = 0xAB66, .to = 0xAB67, .status = .valid, .mapping = &.{}, .status2 = .none, },
8264 .{ .from = 0xAB6A, .to = 0xAB6B, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8265 .{ .from = 0xAB6C, .to = 0xAB6F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8266 .{ .from = 0xABC0, .to = 0xABEA, .status = .valid, .mapping = &.{}, .status2 = .none, },
8267 .{ .from = 0xABEC, .to = 0xABED, .status = .valid, .mapping = &.{}, .status2 = .none, },
8268 .{ .from = 0xABEE, .to = 0xABEF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8269 .{ .from = 0xABF0, .to = 0xABF9, .status = .valid, .mapping = &.{}, .status2 = .none, },
8270 .{ .from = 0xABFA, .to = 0xABFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8271 .{ .from = 0xAC00, .to = 0xD7A3, .status = .valid, .mapping = &.{}, .status2 = .none, },
8272 .{ .from = 0xD7A4, .to = 0xD7AF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8273 .{ .from = 0xD7B0, .to = 0xD7C6, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8274 .{ .from = 0xD7C7, .to = 0xD7CA, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8275 .{ .from = 0xD7CB, .to = 0xD7FB, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8276 .{ .from = 0xD7FC, .to = 0xD7FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8277 .{ .from = 0xD800, .to = 0xDFFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8278 .{ .from = 0xE000, .to = 0xF8FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8279 .{ .from = 0xF907, .to = 0xF908, .status = .mapped, .mapping = &.{0x9F9C}, .status2 = .none, },
8280 .{ .from = 0xFA0E, .to = 0xFA0F, .status = .valid, .mapping = &.{}, .status2 = .none, },
8281 .{ .from = 0xFA13, .to = 0xFA14, .status = .valid, .mapping = &.{}, .status2 = .none, },
8282 .{ .from = 0xFA23, .to = 0xFA24, .status = .valid, .mapping = &.{}, .status2 = .none, },
8283 .{ .from = 0xFA27, .to = 0xFA29, .status = .valid, .mapping = &.{}, .status2 = .none, },
8284 .{ .from = 0xFA5D, .to = 0xFA5E, .status = .mapped, .mapping = &.{0x8279}, .status2 = .none, },
8285 .{ .from = 0xFA6E, .to = 0xFA6F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8286 .{ .from = 0xFADA, .to = 0xFAFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8287 .{ .from = 0xFB05, .to = 0xFB06, .status = .mapped, .mapping = &.{0x0073,0x0074}, .status2 = .none, },
8288 .{ .from = 0xFB07, .to = 0xFB12, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8289 .{ .from = 0xFB18, .to = 0xFB1C, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8290 .{ .from = 0xFB50, .to = 0xFB51, .status = .mapped, .mapping = &.{0x0671}, .status2 = .none, },
8291 .{ .from = 0xFB52, .to = 0xFB55, .status = .mapped, .mapping = &.{0x067B}, .status2 = .none, },
8292 .{ .from = 0xFB56, .to = 0xFB59, .status = .mapped, .mapping = &.{0x067E}, .status2 = .none, },
8293 .{ .from = 0xFB5A, .to = 0xFB5D, .status = .mapped, .mapping = &.{0x0680}, .status2 = .none, },
8294 .{ .from = 0xFB5E, .to = 0xFB61, .status = .mapped, .mapping = &.{0x067A}, .status2 = .none, },
8295 .{ .from = 0xFB62, .to = 0xFB65, .status = .mapped, .mapping = &.{0x067F}, .status2 = .none, },
8296 .{ .from = 0xFB66, .to = 0xFB69, .status = .mapped, .mapping = &.{0x0679}, .status2 = .none, },
8297 .{ .from = 0xFB6A, .to = 0xFB6D, .status = .mapped, .mapping = &.{0x06A4}, .status2 = .none, },
8298 .{ .from = 0xFB6E, .to = 0xFB71, .status = .mapped, .mapping = &.{0x06A6}, .status2 = .none, },
8299 .{ .from = 0xFB72, .to = 0xFB75, .status = .mapped, .mapping = &.{0x0684}, .status2 = .none, },
8300 .{ .from = 0xFB76, .to = 0xFB79, .status = .mapped, .mapping = &.{0x0683}, .status2 = .none, },
8301 .{ .from = 0xFB7A, .to = 0xFB7D, .status = .mapped, .mapping = &.{0x0686}, .status2 = .none, },
8302 .{ .from = 0xFB7E, .to = 0xFB81, .status = .mapped, .mapping = &.{0x0687}, .status2 = .none, },
8303 .{ .from = 0xFB82, .to = 0xFB83, .status = .mapped, .mapping = &.{0x068D}, .status2 = .none, },
8304 .{ .from = 0xFB84, .to = 0xFB85, .status = .mapped, .mapping = &.{0x068C}, .status2 = .none, },
8305 .{ .from = 0xFB86, .to = 0xFB87, .status = .mapped, .mapping = &.{0x068E}, .status2 = .none, },
8306 .{ .from = 0xFB88, .to = 0xFB89, .status = .mapped, .mapping = &.{0x0688}, .status2 = .none, },
8307 .{ .from = 0xFB8A, .to = 0xFB8B, .status = .mapped, .mapping = &.{0x0698}, .status2 = .none, },
8308 .{ .from = 0xFB8C, .to = 0xFB8D, .status = .mapped, .mapping = &.{0x0691}, .status2 = .none, },
8309 .{ .from = 0xFB8E, .to = 0xFB91, .status = .mapped, .mapping = &.{0x06A9}, .status2 = .none, },
8310 .{ .from = 0xFB92, .to = 0xFB95, .status = .mapped, .mapping = &.{0x06AF}, .status2 = .none, },
8311 .{ .from = 0xFB96, .to = 0xFB99, .status = .mapped, .mapping = &.{0x06B3}, .status2 = .none, },
8312 .{ .from = 0xFB9A, .to = 0xFB9D, .status = .mapped, .mapping = &.{0x06B1}, .status2 = .none, },
8313 .{ .from = 0xFB9E, .to = 0xFB9F, .status = .mapped, .mapping = &.{0x06BA}, .status2 = .none, },
8314 .{ .from = 0xFBA0, .to = 0xFBA3, .status = .mapped, .mapping = &.{0x06BB}, .status2 = .none, },
8315 .{ .from = 0xFBA4, .to = 0xFBA5, .status = .mapped, .mapping = &.{0x06C0}, .status2 = .none, },
8316 .{ .from = 0xFBA6, .to = 0xFBA9, .status = .mapped, .mapping = &.{0x06C1}, .status2 = .none, },
8317 .{ .from = 0xFBAA, .to = 0xFBAD, .status = .mapped, .mapping = &.{0x06BE}, .status2 = .none, },
8318 .{ .from = 0xFBAE, .to = 0xFBAF, .status = .mapped, .mapping = &.{0x06D2}, .status2 = .none, },
8319 .{ .from = 0xFBB0, .to = 0xFBB1, .status = .mapped, .mapping = &.{0x06D3}, .status2 = .none, },
8320 .{ .from = 0xFBB2, .to = 0xFBC1, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8321 .{ .from = 0xFBC3, .to = 0xFBD2, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8322 .{ .from = 0xFBD3, .to = 0xFBD6, .status = .mapped, .mapping = &.{0x06AD}, .status2 = .none, },
8323 .{ .from = 0xFBD7, .to = 0xFBD8, .status = .mapped, .mapping = &.{0x06C7}, .status2 = .none, },
8324 .{ .from = 0xFBD9, .to = 0xFBDA, .status = .mapped, .mapping = &.{0x06C6}, .status2 = .none, },
8325 .{ .from = 0xFBDB, .to = 0xFBDC, .status = .mapped, .mapping = &.{0x06C8}, .status2 = .none, },
8326 .{ .from = 0xFBDE, .to = 0xFBDF, .status = .mapped, .mapping = &.{0x06CB}, .status2 = .none, },
8327 .{ .from = 0xFBE0, .to = 0xFBE1, .status = .mapped, .mapping = &.{0x06C5}, .status2 = .none, },
8328 .{ .from = 0xFBE2, .to = 0xFBE3, .status = .mapped, .mapping = &.{0x06C9}, .status2 = .none, },
8329 .{ .from = 0xFBE4, .to = 0xFBE7, .status = .mapped, .mapping = &.{0x06D0}, .status2 = .none, },
8330 .{ .from = 0xFBE8, .to = 0xFBE9, .status = .mapped, .mapping = &.{0x0649}, .status2 = .none, },
8331 .{ .from = 0xFBEA, .to = 0xFBEB, .status = .mapped, .mapping = &.{0x0626,0x0627}, .status2 = .none, },
8332 .{ .from = 0xFBEC, .to = 0xFBED, .status = .mapped, .mapping = &.{0x0626,0x06D5}, .status2 = .none, },
8333 .{ .from = 0xFBEE, .to = 0xFBEF, .status = .mapped, .mapping = &.{0x0626,0x0648}, .status2 = .none, },
8334 .{ .from = 0xFBF0, .to = 0xFBF1, .status = .mapped, .mapping = &.{0x0626,0x06C7}, .status2 = .none, },
8335 .{ .from = 0xFBF2, .to = 0xFBF3, .status = .mapped, .mapping = &.{0x0626,0x06C6}, .status2 = .none, },
8336 .{ .from = 0xFBF4, .to = 0xFBF5, .status = .mapped, .mapping = &.{0x0626,0x06C8}, .status2 = .none, },
8337 .{ .from = 0xFBF6, .to = 0xFBF8, .status = .mapped, .mapping = &.{0x0626,0x06D0}, .status2 = .none, },
8338 .{ .from = 0xFBF9, .to = 0xFBFB, .status = .mapped, .mapping = &.{0x0626,0x0649}, .status2 = .none, },
8339 .{ .from = 0xFBFC, .to = 0xFBFF, .status = .mapped, .mapping = &.{0x06CC}, .status2 = .none, },
8340 .{ .from = 0xFD3C, .to = 0xFD3D, .status = .mapped, .mapping = &.{0x0627,0x064B}, .status2 = .none, },
8341 .{ .from = 0xFD3E, .to = 0xFD3F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8342 .{ .from = 0xFD40, .to = 0xFD4F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8343 .{ .from = 0xFD51, .to = 0xFD52, .status = .mapped, .mapping = &.{0x062A,0x062D,0x062C}, .status2 = .none, },
8344 .{ .from = 0xFD58, .to = 0xFD59, .status = .mapped, .mapping = &.{0x062C,0x0645,0x062D}, .status2 = .none, },
8345 .{ .from = 0xFD5F, .to = 0xFD60, .status = .mapped, .mapping = &.{0x0633,0x0645,0x062D}, .status2 = .none, },
8346 .{ .from = 0xFD62, .to = 0xFD63, .status = .mapped, .mapping = &.{0x0633,0x0645,0x0645}, .status2 = .none, },
8347 .{ .from = 0xFD64, .to = 0xFD65, .status = .mapped, .mapping = &.{0x0635,0x062D,0x062D}, .status2 = .none, },
8348 .{ .from = 0xFD67, .to = 0xFD68, .status = .mapped, .mapping = &.{0x0634,0x062D,0x0645}, .status2 = .none, },
8349 .{ .from = 0xFD6A, .to = 0xFD6B, .status = .mapped, .mapping = &.{0x0634,0x0645,0x062E}, .status2 = .none, },
8350 .{ .from = 0xFD6C, .to = 0xFD6D, .status = .mapped, .mapping = &.{0x0634,0x0645,0x0645}, .status2 = .none, },
8351 .{ .from = 0xFD6F, .to = 0xFD70, .status = .mapped, .mapping = &.{0x0636,0x062E,0x0645}, .status2 = .none, },
8352 .{ .from = 0xFD71, .to = 0xFD72, .status = .mapped, .mapping = &.{0x0637,0x0645,0x062D}, .status2 = .none, },
8353 .{ .from = 0xFD76, .to = 0xFD77, .status = .mapped, .mapping = &.{0x0639,0x0645,0x0645}, .status2 = .none, },
8354 .{ .from = 0xFD7C, .to = 0xFD7D, .status = .mapped, .mapping = &.{0x0641,0x062E,0x0645}, .status2 = .none, },
8355 .{ .from = 0xFD83, .to = 0xFD84, .status = .mapped, .mapping = &.{0x0644,0x062C,0x062C}, .status2 = .none, },
8356 .{ .from = 0xFD85, .to = 0xFD86, .status = .mapped, .mapping = &.{0x0644,0x062E,0x0645}, .status2 = .none, },
8357 .{ .from = 0xFD87, .to = 0xFD88, .status = .mapped, .mapping = &.{0x0644,0x0645,0x062D}, .status2 = .none, },
8358 .{ .from = 0xFD90, .to = 0xFD91, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8359 .{ .from = 0xFD97, .to = 0xFD98, .status = .mapped, .mapping = &.{0x0646,0x062C,0x0645}, .status2 = .none, },
8360 .{ .from = 0xFD9C, .to = 0xFD9D, .status = .mapped, .mapping = &.{0x064A,0x0645,0x0645}, .status2 = .none, },
8361 .{ .from = 0xFDC8, .to = 0xFDCE, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8362 .{ .from = 0xFDD0, .to = 0xFDEF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8363 .{ .from = 0xFDFE, .to = 0xFDFF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8364 .{ .from = 0xFE00, .to = 0xFE0F, .status = .ignored, .mapping = &.{}, .status2 = .none, },
8365 .{ .from = 0xFE1A, .to = 0xFE1F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8366 .{ .from = 0xFE20, .to = 0xFE23, .status = .valid, .mapping = &.{}, .status2 = .none, },
8367 .{ .from = 0xFE24, .to = 0xFE26, .status = .valid, .mapping = &.{}, .status2 = .none, },
8368 .{ .from = 0xFE27, .to = 0xFE2D, .status = .valid, .mapping = &.{}, .status2 = .none, },
8369 .{ .from = 0xFE2E, .to = 0xFE2F, .status = .valid, .mapping = &.{}, .status2 = .none, },
8370 .{ .from = 0xFE33, .to = 0xFE34, .status = .mapped, .mapping = &.{0x005F}, .status2 = .none, },
8371 .{ .from = 0xFE45, .to = 0xFE46, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8372 .{ .from = 0xFE49, .to = 0xFE4C, .status = .mapped, .mapping = &.{0x0020,0x0305}, .status2 = .none, },
8373 .{ .from = 0xFE4D, .to = 0xFE4F, .status = .mapped, .mapping = &.{0x005F}, .status2 = .none, },
8374 .{ .from = 0xFE6C, .to = 0xFE6F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8375 .{ .from = 0xFE81, .to = 0xFE82, .status = .mapped, .mapping = &.{0x0622}, .status2 = .none, },
8376 .{ .from = 0xFE83, .to = 0xFE84, .status = .mapped, .mapping = &.{0x0623}, .status2 = .none, },
8377 .{ .from = 0xFE85, .to = 0xFE86, .status = .mapped, .mapping = &.{0x0624}, .status2 = .none, },
8378 .{ .from = 0xFE87, .to = 0xFE88, .status = .mapped, .mapping = &.{0x0625}, .status2 = .none, },
8379 .{ .from = 0xFE89, .to = 0xFE8C, .status = .mapped, .mapping = &.{0x0626}, .status2 = .none, },
8380 .{ .from = 0xFE8D, .to = 0xFE8E, .status = .mapped, .mapping = &.{0x0627}, .status2 = .none, },
8381 .{ .from = 0xFE8F, .to = 0xFE92, .status = .mapped, .mapping = &.{0x0628}, .status2 = .none, },
8382 .{ .from = 0xFE93, .to = 0xFE94, .status = .mapped, .mapping = &.{0x0629}, .status2 = .none, },
8383 .{ .from = 0xFE95, .to = 0xFE98, .status = .mapped, .mapping = &.{0x062A}, .status2 = .none, },
8384 .{ .from = 0xFE99, .to = 0xFE9C, .status = .mapped, .mapping = &.{0x062B}, .status2 = .none, },
8385 .{ .from = 0xFE9D, .to = 0xFEA0, .status = .mapped, .mapping = &.{0x062C}, .status2 = .none, },
8386 .{ .from = 0xFEA1, .to = 0xFEA4, .status = .mapped, .mapping = &.{0x062D}, .status2 = .none, },
8387 .{ .from = 0xFEA5, .to = 0xFEA8, .status = .mapped, .mapping = &.{0x062E}, .status2 = .none, },
8388 .{ .from = 0xFEA9, .to = 0xFEAA, .status = .mapped, .mapping = &.{0x062F}, .status2 = .none, },
8389 .{ .from = 0xFEAB, .to = 0xFEAC, .status = .mapped, .mapping = &.{0x0630}, .status2 = .none, },
8390 .{ .from = 0xFEAD, .to = 0xFEAE, .status = .mapped, .mapping = &.{0x0631}, .status2 = .none, },
8391 .{ .from = 0xFEAF, .to = 0xFEB0, .status = .mapped, .mapping = &.{0x0632}, .status2 = .none, },
8392 .{ .from = 0xFEB1, .to = 0xFEB4, .status = .mapped, .mapping = &.{0x0633}, .status2 = .none, },
8393 .{ .from = 0xFEB5, .to = 0xFEB8, .status = .mapped, .mapping = &.{0x0634}, .status2 = .none, },
8394 .{ .from = 0xFEB9, .to = 0xFEBC, .status = .mapped, .mapping = &.{0x0635}, .status2 = .none, },
8395 .{ .from = 0xFEBD, .to = 0xFEC0, .status = .mapped, .mapping = &.{0x0636}, .status2 = .none, },
8396 .{ .from = 0xFEC1, .to = 0xFEC4, .status = .mapped, .mapping = &.{0x0637}, .status2 = .none, },
8397 .{ .from = 0xFEC5, .to = 0xFEC8, .status = .mapped, .mapping = &.{0x0638}, .status2 = .none, },
8398 .{ .from = 0xFEC9, .to = 0xFECC, .status = .mapped, .mapping = &.{0x0639}, .status2 = .none, },
8399 .{ .from = 0xFECD, .to = 0xFED0, .status = .mapped, .mapping = &.{0x063A}, .status2 = .none, },
8400 .{ .from = 0xFED1, .to = 0xFED4, .status = .mapped, .mapping = &.{0x0641}, .status2 = .none, },
8401 .{ .from = 0xFED5, .to = 0xFED8, .status = .mapped, .mapping = &.{0x0642}, .status2 = .none, },
8402 .{ .from = 0xFED9, .to = 0xFEDC, .status = .mapped, .mapping = &.{0x0643}, .status2 = .none, },
8403 .{ .from = 0xFEDD, .to = 0xFEE0, .status = .mapped, .mapping = &.{0x0644}, .status2 = .none, },
8404 .{ .from = 0xFEE1, .to = 0xFEE4, .status = .mapped, .mapping = &.{0x0645}, .status2 = .none, },
8405 .{ .from = 0xFEE5, .to = 0xFEE8, .status = .mapped, .mapping = &.{0x0646}, .status2 = .none, },
8406 .{ .from = 0xFEE9, .to = 0xFEEC, .status = .mapped, .mapping = &.{0x0647}, .status2 = .none, },
8407 .{ .from = 0xFEED, .to = 0xFEEE, .status = .mapped, .mapping = &.{0x0648}, .status2 = .none, },
8408 .{ .from = 0xFEEF, .to = 0xFEF0, .status = .mapped, .mapping = &.{0x0649}, .status2 = .none, },
8409 .{ .from = 0xFEF1, .to = 0xFEF4, .status = .mapped, .mapping = &.{0x064A}, .status2 = .none, },
8410 .{ .from = 0xFEF5, .to = 0xFEF6, .status = .mapped, .mapping = &.{0x0644,0x0622}, .status2 = .none, },
8411 .{ .from = 0xFEF7, .to = 0xFEF8, .status = .mapped, .mapping = &.{0x0644,0x0623}, .status2 = .none, },
8412 .{ .from = 0xFEF9, .to = 0xFEFA, .status = .mapped, .mapping = &.{0x0644,0x0625}, .status2 = .none, },
8413 .{ .from = 0xFEFB, .to = 0xFEFC, .status = .mapped, .mapping = &.{0x0644,0x0627}, .status2 = .none, },
8414 .{ .from = 0xFEFD, .to = 0xFEFE, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8415 .{ .from = 0xFFBF, .to = 0xFFC1, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8416 .{ .from = 0xFFC8, .to = 0xFFC9, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8417 .{ .from = 0xFFD0, .to = 0xFFD1, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8418 .{ .from = 0xFFD8, .to = 0xFFD9, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8419 .{ .from = 0xFFDD, .to = 0xFFDF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8420 .{ .from = 0xFFEF, .to = 0xFFF8, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8421 .{ .from = 0xFFF9, .to = 0xFFFB, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8422 .{ .from = 0xFFFE, .to = 0xFFFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8423 .{ .from = 0x10000, .to = 0x1000B, .status = .valid, .mapping = &.{}, .status2 = .none, },
8424 .{ .from = 0x1000D, .to = 0x10026, .status = .valid, .mapping = &.{}, .status2 = .none, },
8425 .{ .from = 0x10028, .to = 0x1003A, .status = .valid, .mapping = &.{}, .status2 = .none, },
8426 .{ .from = 0x1003C, .to = 0x1003D, .status = .valid, .mapping = &.{}, .status2 = .none, },
8427 .{ .from = 0x1003F, .to = 0x1004D, .status = .valid, .mapping = &.{}, .status2 = .none, },
8428 .{ .from = 0x1004E, .to = 0x1004F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8429 .{ .from = 0x10050, .to = 0x1005D, .status = .valid, .mapping = &.{}, .status2 = .none, },
8430 .{ .from = 0x1005E, .to = 0x1007F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8431 .{ .from = 0x10080, .to = 0x100FA, .status = .valid, .mapping = &.{}, .status2 = .none, },
8432 .{ .from = 0x100FB, .to = 0x100FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8433 .{ .from = 0x10100, .to = 0x10102, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8434 .{ .from = 0x10103, .to = 0x10106, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8435 .{ .from = 0x10107, .to = 0x10133, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8436 .{ .from = 0x10134, .to = 0x10136, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8437 .{ .from = 0x10137, .to = 0x1013F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8438 .{ .from = 0x10140, .to = 0x1018A, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8439 .{ .from = 0x1018B, .to = 0x1018C, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8440 .{ .from = 0x1018D, .to = 0x1018E, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8441 .{ .from = 0x10190, .to = 0x1019B, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8442 .{ .from = 0x1019D, .to = 0x1019F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8443 .{ .from = 0x101A1, .to = 0x101CF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8444 .{ .from = 0x101D0, .to = 0x101FC, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8445 .{ .from = 0x101FE, .to = 0x1027F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8446 .{ .from = 0x10280, .to = 0x1029C, .status = .valid, .mapping = &.{}, .status2 = .none, },
8447 .{ .from = 0x1029D, .to = 0x1029F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8448 .{ .from = 0x102A0, .to = 0x102D0, .status = .valid, .mapping = &.{}, .status2 = .none, },
8449 .{ .from = 0x102D1, .to = 0x102DF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8450 .{ .from = 0x102E1, .to = 0x102FB, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8451 .{ .from = 0x102FC, .to = 0x102FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8452 .{ .from = 0x10300, .to = 0x1031E, .status = .valid, .mapping = &.{}, .status2 = .none, },
8453 .{ .from = 0x10320, .to = 0x10323, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8454 .{ .from = 0x10324, .to = 0x1032C, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8455 .{ .from = 0x1032D, .to = 0x1032F, .status = .valid, .mapping = &.{}, .status2 = .none, },
8456 .{ .from = 0x10330, .to = 0x10340, .status = .valid, .mapping = &.{}, .status2 = .none, },
8457 .{ .from = 0x10342, .to = 0x10349, .status = .valid, .mapping = &.{}, .status2 = .none, },
8458 .{ .from = 0x1034B, .to = 0x1034F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8459 .{ .from = 0x10350, .to = 0x1037A, .status = .valid, .mapping = &.{}, .status2 = .none, },
8460 .{ .from = 0x1037B, .to = 0x1037F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8461 .{ .from = 0x10380, .to = 0x1039D, .status = .valid, .mapping = &.{}, .status2 = .none, },
8462 .{ .from = 0x103A0, .to = 0x103C3, .status = .valid, .mapping = &.{}, .status2 = .none, },
8463 .{ .from = 0x103C4, .to = 0x103C7, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8464 .{ .from = 0x103C8, .to = 0x103CF, .status = .valid, .mapping = &.{}, .status2 = .none, },
8465 .{ .from = 0x103D0, .to = 0x103D5, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8466 .{ .from = 0x103D6, .to = 0x103FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8467 .{ .from = 0x10428, .to = 0x1044D, .status = .valid, .mapping = &.{}, .status2 = .none, },
8468 .{ .from = 0x1044E, .to = 0x1049D, .status = .valid, .mapping = &.{}, .status2 = .none, },
8469 .{ .from = 0x1049E, .to = 0x1049F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8470 .{ .from = 0x104A0, .to = 0x104A9, .status = .valid, .mapping = &.{}, .status2 = .none, },
8471 .{ .from = 0x104AA, .to = 0x104AF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8472 .{ .from = 0x104D4, .to = 0x104D7, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8473 .{ .from = 0x104D8, .to = 0x104FB, .status = .valid, .mapping = &.{}, .status2 = .none, },
8474 .{ .from = 0x104FC, .to = 0x104FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8475 .{ .from = 0x10500, .to = 0x10527, .status = .valid, .mapping = &.{}, .status2 = .none, },
8476 .{ .from = 0x10528, .to = 0x1052F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8477 .{ .from = 0x10530, .to = 0x10563, .status = .valid, .mapping = &.{}, .status2 = .none, },
8478 .{ .from = 0x10564, .to = 0x1056E, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8479 .{ .from = 0x10597, .to = 0x105A1, .status = .valid, .mapping = &.{}, .status2 = .none, },
8480 .{ .from = 0x105A3, .to = 0x105B1, .status = .valid, .mapping = &.{}, .status2 = .none, },
8481 .{ .from = 0x105B3, .to = 0x105B9, .status = .valid, .mapping = &.{}, .status2 = .none, },
8482 .{ .from = 0x105BB, .to = 0x105BC, .status = .valid, .mapping = &.{}, .status2 = .none, },
8483 .{ .from = 0x105BD, .to = 0x105BF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8484 .{ .from = 0x105C0, .to = 0x105F3, .status = .valid, .mapping = &.{}, .status2 = .none, },
8485 .{ .from = 0x105F4, .to = 0x105FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8486 .{ .from = 0x10600, .to = 0x10736, .status = .valid, .mapping = &.{}, .status2 = .none, },
8487 .{ .from = 0x10737, .to = 0x1073F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8488 .{ .from = 0x10740, .to = 0x10755, .status = .valid, .mapping = &.{}, .status2 = .none, },
8489 .{ .from = 0x10756, .to = 0x1075F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8490 .{ .from = 0x10760, .to = 0x10767, .status = .valid, .mapping = &.{}, .status2 = .none, },
8491 .{ .from = 0x10768, .to = 0x1077F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8492 .{ .from = 0x107BB, .to = 0x107FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8493 .{ .from = 0x10800, .to = 0x10805, .status = .valid, .mapping = &.{}, .status2 = .none, },
8494 .{ .from = 0x10806, .to = 0x10807, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8495 .{ .from = 0x1080A, .to = 0x10835, .status = .valid, .mapping = &.{}, .status2 = .none, },
8496 .{ .from = 0x10837, .to = 0x10838, .status = .valid, .mapping = &.{}, .status2 = .none, },
8497 .{ .from = 0x10839, .to = 0x1083B, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8498 .{ .from = 0x1083D, .to = 0x1083E, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8499 .{ .from = 0x10840, .to = 0x10855, .status = .valid, .mapping = &.{}, .status2 = .none, },
8500 .{ .from = 0x10857, .to = 0x1085F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8501 .{ .from = 0x10860, .to = 0x10876, .status = .valid, .mapping = &.{}, .status2 = .none, },
8502 .{ .from = 0x10877, .to = 0x1087F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8503 .{ .from = 0x10880, .to = 0x1089E, .status = .valid, .mapping = &.{}, .status2 = .none, },
8504 .{ .from = 0x1089F, .to = 0x108A6, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8505 .{ .from = 0x108A7, .to = 0x108AF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8506 .{ .from = 0x108B0, .to = 0x108DF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8507 .{ .from = 0x108E0, .to = 0x108F2, .status = .valid, .mapping = &.{}, .status2 = .none, },
8508 .{ .from = 0x108F4, .to = 0x108F5, .status = .valid, .mapping = &.{}, .status2 = .none, },
8509 .{ .from = 0x108F6, .to = 0x108FA, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8510 .{ .from = 0x108FB, .to = 0x108FF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8511 .{ .from = 0x10900, .to = 0x10915, .status = .valid, .mapping = &.{}, .status2 = .none, },
8512 .{ .from = 0x10916, .to = 0x10919, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8513 .{ .from = 0x1091A, .to = 0x1091B, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8514 .{ .from = 0x1091C, .to = 0x1091E, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8515 .{ .from = 0x10920, .to = 0x10939, .status = .valid, .mapping = &.{}, .status2 = .none, },
8516 .{ .from = 0x1093A, .to = 0x1093E, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8517 .{ .from = 0x10940, .to = 0x10959, .status = .valid, .mapping = &.{}, .status2 = .none, },
8518 .{ .from = 0x1095A, .to = 0x1097F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8519 .{ .from = 0x10980, .to = 0x109B7, .status = .valid, .mapping = &.{}, .status2 = .none, },
8520 .{ .from = 0x109B8, .to = 0x109BB, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8521 .{ .from = 0x109BC, .to = 0x109BD, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8522 .{ .from = 0x109BE, .to = 0x109BF, .status = .valid, .mapping = &.{}, .status2 = .none, },
8523 .{ .from = 0x109C0, .to = 0x109CF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8524 .{ .from = 0x109D0, .to = 0x109D1, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8525 .{ .from = 0x109D2, .to = 0x109FF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8526 .{ .from = 0x10A00, .to = 0x10A03, .status = .valid, .mapping = &.{}, .status2 = .none, },
8527 .{ .from = 0x10A05, .to = 0x10A06, .status = .valid, .mapping = &.{}, .status2 = .none, },
8528 .{ .from = 0x10A07, .to = 0x10A0B, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8529 .{ .from = 0x10A0C, .to = 0x10A13, .status = .valid, .mapping = &.{}, .status2 = .none, },
8530 .{ .from = 0x10A15, .to = 0x10A17, .status = .valid, .mapping = &.{}, .status2 = .none, },
8531 .{ .from = 0x10A19, .to = 0x10A33, .status = .valid, .mapping = &.{}, .status2 = .none, },
8532 .{ .from = 0x10A34, .to = 0x10A35, .status = .valid, .mapping = &.{}, .status2 = .none, },
8533 .{ .from = 0x10A36, .to = 0x10A37, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8534 .{ .from = 0x10A38, .to = 0x10A3A, .status = .valid, .mapping = &.{}, .status2 = .none, },
8535 .{ .from = 0x10A3B, .to = 0x10A3E, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8536 .{ .from = 0x10A40, .to = 0x10A47, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8537 .{ .from = 0x10A49, .to = 0x10A4F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8538 .{ .from = 0x10A50, .to = 0x10A58, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8539 .{ .from = 0x10A59, .to = 0x10A5F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8540 .{ .from = 0x10A60, .to = 0x10A7C, .status = .valid, .mapping = &.{}, .status2 = .none, },
8541 .{ .from = 0x10A7D, .to = 0x10A7F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8542 .{ .from = 0x10A80, .to = 0x10A9C, .status = .valid, .mapping = &.{}, .status2 = .none, },
8543 .{ .from = 0x10A9D, .to = 0x10A9F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8544 .{ .from = 0x10AA0, .to = 0x10ABF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8545 .{ .from = 0x10AC0, .to = 0x10AC7, .status = .valid, .mapping = &.{}, .status2 = .none, },
8546 .{ .from = 0x10AC9, .to = 0x10AE6, .status = .valid, .mapping = &.{}, .status2 = .none, },
8547 .{ .from = 0x10AE7, .to = 0x10AEA, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8548 .{ .from = 0x10AEB, .to = 0x10AF6, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8549 .{ .from = 0x10AF7, .to = 0x10AFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8550 .{ .from = 0x10B00, .to = 0x10B35, .status = .valid, .mapping = &.{}, .status2 = .none, },
8551 .{ .from = 0x10B36, .to = 0x10B38, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8552 .{ .from = 0x10B39, .to = 0x10B3F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8553 .{ .from = 0x10B40, .to = 0x10B55, .status = .valid, .mapping = &.{}, .status2 = .none, },
8554 .{ .from = 0x10B56, .to = 0x10B57, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8555 .{ .from = 0x10B58, .to = 0x10B5F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8556 .{ .from = 0x10B60, .to = 0x10B72, .status = .valid, .mapping = &.{}, .status2 = .none, },
8557 .{ .from = 0x10B73, .to = 0x10B77, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8558 .{ .from = 0x10B78, .to = 0x10B7F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8559 .{ .from = 0x10B80, .to = 0x10B91, .status = .valid, .mapping = &.{}, .status2 = .none, },
8560 .{ .from = 0x10B92, .to = 0x10B98, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8561 .{ .from = 0x10B99, .to = 0x10B9C, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8562 .{ .from = 0x10B9D, .to = 0x10BA8, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8563 .{ .from = 0x10BA9, .to = 0x10BAF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8564 .{ .from = 0x10BB0, .to = 0x10BFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8565 .{ .from = 0x10C00, .to = 0x10C48, .status = .valid, .mapping = &.{}, .status2 = .none, },
8566 .{ .from = 0x10C49, .to = 0x10C7F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8567 .{ .from = 0x10CB3, .to = 0x10CBF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8568 .{ .from = 0x10CC0, .to = 0x10CF2, .status = .valid, .mapping = &.{}, .status2 = .none, },
8569 .{ .from = 0x10CF3, .to = 0x10CF9, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8570 .{ .from = 0x10CFA, .to = 0x10CFF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8571 .{ .from = 0x10D00, .to = 0x10D27, .status = .valid, .mapping = &.{}, .status2 = .none, },
8572 .{ .from = 0x10D28, .to = 0x10D2F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8573 .{ .from = 0x10D30, .to = 0x10D39, .status = .valid, .mapping = &.{}, .status2 = .none, },
8574 .{ .from = 0x10D3A, .to = 0x10D3F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8575 .{ .from = 0x10D40, .to = 0x10D4F, .status = .valid, .mapping = &.{}, .status2 = .none, },
8576 .{ .from = 0x10D66, .to = 0x10D68, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8577 .{ .from = 0x10D69, .to = 0x10D6D, .status = .valid, .mapping = &.{}, .status2 = .none, },
8578 .{ .from = 0x10D6F, .to = 0x10D85, .status = .valid, .mapping = &.{}, .status2 = .none, },
8579 .{ .from = 0x10D86, .to = 0x10D8D, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8580 .{ .from = 0x10D8E, .to = 0x10D8F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8581 .{ .from = 0x10D90, .to = 0x10E5F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8582 .{ .from = 0x10E60, .to = 0x10E7E, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8583 .{ .from = 0x10E80, .to = 0x10EA9, .status = .valid, .mapping = &.{}, .status2 = .none, },
8584 .{ .from = 0x10EAB, .to = 0x10EAC, .status = .valid, .mapping = &.{}, .status2 = .none, },
8585 .{ .from = 0x10EAE, .to = 0x10EAF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8586 .{ .from = 0x10EB0, .to = 0x10EB1, .status = .valid, .mapping = &.{}, .status2 = .none, },
8587 .{ .from = 0x10EB2, .to = 0x10EC1, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8588 .{ .from = 0x10EC2, .to = 0x10EC4, .status = .valid, .mapping = &.{}, .status2 = .none, },
8589 .{ .from = 0x10EC5, .to = 0x10EC7, .status = .valid, .mapping = &.{}, .status2 = .none, },
8590 .{ .from = 0x10EC8, .to = 0x10ECF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8591 .{ .from = 0x10ED0, .to = 0x10ED8, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8592 .{ .from = 0x10ED9, .to = 0x10EF9, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8593 .{ .from = 0x10EFA, .to = 0x10EFB, .status = .valid, .mapping = &.{}, .status2 = .none, },
8594 .{ .from = 0x10EFD, .to = 0x10EFF, .status = .valid, .mapping = &.{}, .status2 = .none, },
8595 .{ .from = 0x10F00, .to = 0x10F1C, .status = .valid, .mapping = &.{}, .status2 = .none, },
8596 .{ .from = 0x10F1D, .to = 0x10F26, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8597 .{ .from = 0x10F28, .to = 0x10F2F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8598 .{ .from = 0x10F30, .to = 0x10F50, .status = .valid, .mapping = &.{}, .status2 = .none, },
8599 .{ .from = 0x10F51, .to = 0x10F59, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8600 .{ .from = 0x10F5A, .to = 0x10F6F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8601 .{ .from = 0x10F70, .to = 0x10F85, .status = .valid, .mapping = &.{}, .status2 = .none, },
8602 .{ .from = 0x10F86, .to = 0x10F89, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8603 .{ .from = 0x10F8A, .to = 0x10FAF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8604 .{ .from = 0x10FB0, .to = 0x10FC4, .status = .valid, .mapping = &.{}, .status2 = .none, },
8605 .{ .from = 0x10FC5, .to = 0x10FCB, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8606 .{ .from = 0x10FCC, .to = 0x10FDF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8607 .{ .from = 0x10FE0, .to = 0x10FF6, .status = .valid, .mapping = &.{}, .status2 = .none, },
8608 .{ .from = 0x10FF7, .to = 0x10FFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8609 .{ .from = 0x11000, .to = 0x11046, .status = .valid, .mapping = &.{}, .status2 = .none, },
8610 .{ .from = 0x11047, .to = 0x1104D, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8611 .{ .from = 0x1104E, .to = 0x11051, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8612 .{ .from = 0x11052, .to = 0x11065, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8613 .{ .from = 0x11066, .to = 0x1106F, .status = .valid, .mapping = &.{}, .status2 = .none, },
8614 .{ .from = 0x11070, .to = 0x11075, .status = .valid, .mapping = &.{}, .status2 = .none, },
8615 .{ .from = 0x11076, .to = 0x1107E, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8616 .{ .from = 0x11080, .to = 0x110BA, .status = .valid, .mapping = &.{}, .status2 = .none, },
8617 .{ .from = 0x110BB, .to = 0x110BC, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8618 .{ .from = 0x110BE, .to = 0x110C1, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8619 .{ .from = 0x110C3, .to = 0x110CC, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8620 .{ .from = 0x110CE, .to = 0x110CF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8621 .{ .from = 0x110D0, .to = 0x110E8, .status = .valid, .mapping = &.{}, .status2 = .none, },
8622 .{ .from = 0x110E9, .to = 0x110EF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8623 .{ .from = 0x110F0, .to = 0x110F9, .status = .valid, .mapping = &.{}, .status2 = .none, },
8624 .{ .from = 0x110FA, .to = 0x110FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8625 .{ .from = 0x11100, .to = 0x11134, .status = .valid, .mapping = &.{}, .status2 = .none, },
8626 .{ .from = 0x11136, .to = 0x1113F, .status = .valid, .mapping = &.{}, .status2 = .none, },
8627 .{ .from = 0x11140, .to = 0x11143, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8628 .{ .from = 0x11144, .to = 0x11146, .status = .valid, .mapping = &.{}, .status2 = .none, },
8629 .{ .from = 0x11148, .to = 0x1114F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8630 .{ .from = 0x11150, .to = 0x11173, .status = .valid, .mapping = &.{}, .status2 = .none, },
8631 .{ .from = 0x11174, .to = 0x11175, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8632 .{ .from = 0x11177, .to = 0x1117F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8633 .{ .from = 0x11180, .to = 0x111C4, .status = .valid, .mapping = &.{}, .status2 = .none, },
8634 .{ .from = 0x111C5, .to = 0x111C8, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8635 .{ .from = 0x111C9, .to = 0x111CC, .status = .valid, .mapping = &.{}, .status2 = .none, },
8636 .{ .from = 0x111CE, .to = 0x111CF, .status = .valid, .mapping = &.{}, .status2 = .none, },
8637 .{ .from = 0x111D0, .to = 0x111D9, .status = .valid, .mapping = &.{}, .status2 = .none, },
8638 .{ .from = 0x111DD, .to = 0x111DF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8639 .{ .from = 0x111E1, .to = 0x111F4, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8640 .{ .from = 0x111F5, .to = 0x111FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8641 .{ .from = 0x11200, .to = 0x11211, .status = .valid, .mapping = &.{}, .status2 = .none, },
8642 .{ .from = 0x11213, .to = 0x11237, .status = .valid, .mapping = &.{}, .status2 = .none, },
8643 .{ .from = 0x11238, .to = 0x1123D, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8644 .{ .from = 0x1123F, .to = 0x11241, .status = .valid, .mapping = &.{}, .status2 = .none, },
8645 .{ .from = 0x11242, .to = 0x1127F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8646 .{ .from = 0x11280, .to = 0x11286, .status = .valid, .mapping = &.{}, .status2 = .none, },
8647 .{ .from = 0x1128A, .to = 0x1128D, .status = .valid, .mapping = &.{}, .status2 = .none, },
8648 .{ .from = 0x1128F, .to = 0x1129D, .status = .valid, .mapping = &.{}, .status2 = .none, },
8649 .{ .from = 0x1129F, .to = 0x112A8, .status = .valid, .mapping = &.{}, .status2 = .none, },
8650 .{ .from = 0x112AA, .to = 0x112AF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8651 .{ .from = 0x112B0, .to = 0x112EA, .status = .valid, .mapping = &.{}, .status2 = .none, },
8652 .{ .from = 0x112EB, .to = 0x112EF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8653 .{ .from = 0x112F0, .to = 0x112F9, .status = .valid, .mapping = &.{}, .status2 = .none, },
8654 .{ .from = 0x112FA, .to = 0x112FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8655 .{ .from = 0x11301, .to = 0x11303, .status = .valid, .mapping = &.{}, .status2 = .none, },
8656 .{ .from = 0x11305, .to = 0x1130C, .status = .valid, .mapping = &.{}, .status2 = .none, },
8657 .{ .from = 0x1130D, .to = 0x1130E, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8658 .{ .from = 0x1130F, .to = 0x11310, .status = .valid, .mapping = &.{}, .status2 = .none, },
8659 .{ .from = 0x11311, .to = 0x11312, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8660 .{ .from = 0x11313, .to = 0x11328, .status = .valid, .mapping = &.{}, .status2 = .none, },
8661 .{ .from = 0x1132A, .to = 0x11330, .status = .valid, .mapping = &.{}, .status2 = .none, },
8662 .{ .from = 0x11332, .to = 0x11333, .status = .valid, .mapping = &.{}, .status2 = .none, },
8663 .{ .from = 0x11335, .to = 0x11339, .status = .valid, .mapping = &.{}, .status2 = .none, },
8664 .{ .from = 0x1133C, .to = 0x11344, .status = .valid, .mapping = &.{}, .status2 = .none, },
8665 .{ .from = 0x11345, .to = 0x11346, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8666 .{ .from = 0x11347, .to = 0x11348, .status = .valid, .mapping = &.{}, .status2 = .none, },
8667 .{ .from = 0x11349, .to = 0x1134A, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8668 .{ .from = 0x1134B, .to = 0x1134D, .status = .valid, .mapping = &.{}, .status2 = .none, },
8669 .{ .from = 0x1134E, .to = 0x1134F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8670 .{ .from = 0x11351, .to = 0x11356, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8671 .{ .from = 0x11358, .to = 0x1135C, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8672 .{ .from = 0x1135D, .to = 0x11363, .status = .valid, .mapping = &.{}, .status2 = .none, },
8673 .{ .from = 0x11364, .to = 0x11365, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8674 .{ .from = 0x11366, .to = 0x1136C, .status = .valid, .mapping = &.{}, .status2 = .none, },
8675 .{ .from = 0x1136D, .to = 0x1136F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8676 .{ .from = 0x11370, .to = 0x11374, .status = .valid, .mapping = &.{}, .status2 = .none, },
8677 .{ .from = 0x11375, .to = 0x1137F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8678 .{ .from = 0x11380, .to = 0x11389, .status = .valid, .mapping = &.{}, .status2 = .none, },
8679 .{ .from = 0x1138C, .to = 0x1138D, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8680 .{ .from = 0x11390, .to = 0x113B5, .status = .valid, .mapping = &.{}, .status2 = .none, },
8681 .{ .from = 0x113B7, .to = 0x113C0, .status = .valid, .mapping = &.{}, .status2 = .none, },
8682 .{ .from = 0x113C3, .to = 0x113C4, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8683 .{ .from = 0x113C7, .to = 0x113CA, .status = .valid, .mapping = &.{}, .status2 = .none, },
8684 .{ .from = 0x113CC, .to = 0x113D3, .status = .valid, .mapping = &.{}, .status2 = .none, },
8685 .{ .from = 0x113D4, .to = 0x113D5, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8686 .{ .from = 0x113D7, .to = 0x113D8, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8687 .{ .from = 0x113D9, .to = 0x113E0, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8688 .{ .from = 0x113E1, .to = 0x113E2, .status = .valid, .mapping = &.{}, .status2 = .none, },
8689 .{ .from = 0x113E3, .to = 0x113FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8690 .{ .from = 0x11400, .to = 0x1144A, .status = .valid, .mapping = &.{}, .status2 = .none, },
8691 .{ .from = 0x1144B, .to = 0x1144F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8692 .{ .from = 0x11450, .to = 0x11459, .status = .valid, .mapping = &.{}, .status2 = .none, },
8693 .{ .from = 0x11460, .to = 0x11461, .status = .valid, .mapping = &.{}, .status2 = .none, },
8694 .{ .from = 0x11462, .to = 0x1147F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8695 .{ .from = 0x11480, .to = 0x114C5, .status = .valid, .mapping = &.{}, .status2 = .none, },
8696 .{ .from = 0x114C8, .to = 0x114CF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8697 .{ .from = 0x114D0, .to = 0x114D9, .status = .valid, .mapping = &.{}, .status2 = .none, },
8698 .{ .from = 0x114DA, .to = 0x1157F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8699 .{ .from = 0x11580, .to = 0x115B5, .status = .valid, .mapping = &.{}, .status2 = .none, },
8700 .{ .from = 0x115B6, .to = 0x115B7, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8701 .{ .from = 0x115B8, .to = 0x115C0, .status = .valid, .mapping = &.{}, .status2 = .none, },
8702 .{ .from = 0x115C1, .to = 0x115C9, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8703 .{ .from = 0x115CA, .to = 0x115D7, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8704 .{ .from = 0x115D8, .to = 0x115DD, .status = .valid, .mapping = &.{}, .status2 = .none, },
8705 .{ .from = 0x115DE, .to = 0x115FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8706 .{ .from = 0x11600, .to = 0x11640, .status = .valid, .mapping = &.{}, .status2 = .none, },
8707 .{ .from = 0x11641, .to = 0x11643, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8708 .{ .from = 0x11645, .to = 0x1164F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8709 .{ .from = 0x11650, .to = 0x11659, .status = .valid, .mapping = &.{}, .status2 = .none, },
8710 .{ .from = 0x1165A, .to = 0x1165F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8711 .{ .from = 0x11660, .to = 0x1166C, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8712 .{ .from = 0x1166D, .to = 0x1167F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8713 .{ .from = 0x11680, .to = 0x116B7, .status = .valid, .mapping = &.{}, .status2 = .none, },
8714 .{ .from = 0x116BA, .to = 0x116BF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8715 .{ .from = 0x116C0, .to = 0x116C9, .status = .valid, .mapping = &.{}, .status2 = .none, },
8716 .{ .from = 0x116CA, .to = 0x116CF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8717 .{ .from = 0x116D0, .to = 0x116E3, .status = .valid, .mapping = &.{}, .status2 = .none, },
8718 .{ .from = 0x116E4, .to = 0x116FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8719 .{ .from = 0x11700, .to = 0x11719, .status = .valid, .mapping = &.{}, .status2 = .none, },
8720 .{ .from = 0x1171B, .to = 0x1171C, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8721 .{ .from = 0x1171D, .to = 0x1172B, .status = .valid, .mapping = &.{}, .status2 = .none, },
8722 .{ .from = 0x1172C, .to = 0x1172F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8723 .{ .from = 0x11730, .to = 0x11739, .status = .valid, .mapping = &.{}, .status2 = .none, },
8724 .{ .from = 0x1173A, .to = 0x1173F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8725 .{ .from = 0x11740, .to = 0x11746, .status = .valid, .mapping = &.{}, .status2 = .none, },
8726 .{ .from = 0x11747, .to = 0x117FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8727 .{ .from = 0x11800, .to = 0x1183A, .status = .valid, .mapping = &.{}, .status2 = .none, },
8728 .{ .from = 0x1183C, .to = 0x1189F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8729 .{ .from = 0x118C0, .to = 0x118E9, .status = .valid, .mapping = &.{}, .status2 = .none, },
8730 .{ .from = 0x118EA, .to = 0x118F2, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8731 .{ .from = 0x118F3, .to = 0x118FE, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8732 .{ .from = 0x11900, .to = 0x11906, .status = .valid, .mapping = &.{}, .status2 = .none, },
8733 .{ .from = 0x11907, .to = 0x11908, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8734 .{ .from = 0x1190A, .to = 0x1190B, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8735 .{ .from = 0x1190C, .to = 0x11913, .status = .valid, .mapping = &.{}, .status2 = .none, },
8736 .{ .from = 0x11915, .to = 0x11916, .status = .valid, .mapping = &.{}, .status2 = .none, },
8737 .{ .from = 0x11918, .to = 0x11935, .status = .valid, .mapping = &.{}, .status2 = .none, },
8738 .{ .from = 0x11937, .to = 0x11938, .status = .valid, .mapping = &.{}, .status2 = .none, },
8739 .{ .from = 0x11939, .to = 0x1193A, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8740 .{ .from = 0x1193B, .to = 0x11943, .status = .valid, .mapping = &.{}, .status2 = .none, },
8741 .{ .from = 0x11944, .to = 0x11946, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8742 .{ .from = 0x11947, .to = 0x1194F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8743 .{ .from = 0x11950, .to = 0x11959, .status = .valid, .mapping = &.{}, .status2 = .none, },
8744 .{ .from = 0x1195A, .to = 0x1199F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8745 .{ .from = 0x119A0, .to = 0x119A7, .status = .valid, .mapping = &.{}, .status2 = .none, },
8746 .{ .from = 0x119A8, .to = 0x119A9, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8747 .{ .from = 0x119AA, .to = 0x119D7, .status = .valid, .mapping = &.{}, .status2 = .none, },
8748 .{ .from = 0x119D8, .to = 0x119D9, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8749 .{ .from = 0x119DA, .to = 0x119E1, .status = .valid, .mapping = &.{}, .status2 = .none, },
8750 .{ .from = 0x119E3, .to = 0x119E4, .status = .valid, .mapping = &.{}, .status2 = .none, },
8751 .{ .from = 0x119E5, .to = 0x119FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8752 .{ .from = 0x11A00, .to = 0x11A3E, .status = .valid, .mapping = &.{}, .status2 = .none, },
8753 .{ .from = 0x11A3F, .to = 0x11A46, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8754 .{ .from = 0x11A48, .to = 0x11A4F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8755 .{ .from = 0x11A50, .to = 0x11A83, .status = .valid, .mapping = &.{}, .status2 = .none, },
8756 .{ .from = 0x11A84, .to = 0x11A85, .status = .valid, .mapping = &.{}, .status2 = .none, },
8757 .{ .from = 0x11A86, .to = 0x11A99, .status = .valid, .mapping = &.{}, .status2 = .none, },
8758 .{ .from = 0x11A9A, .to = 0x11A9C, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8759 .{ .from = 0x11A9E, .to = 0x11AA2, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8760 .{ .from = 0x11AA3, .to = 0x11AAF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8761 .{ .from = 0x11AB0, .to = 0x11ABF, .status = .valid, .mapping = &.{}, .status2 = .none, },
8762 .{ .from = 0x11AC0, .to = 0x11AF8, .status = .valid, .mapping = &.{}, .status2 = .none, },
8763 .{ .from = 0x11AF9, .to = 0x11AFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8764 .{ .from = 0x11B00, .to = 0x11B09, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8765 .{ .from = 0x11B0A, .to = 0x11B5F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8766 .{ .from = 0x11B60, .to = 0x11B67, .status = .valid, .mapping = &.{}, .status2 = .none, },
8767 .{ .from = 0x11B68, .to = 0x11BBF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8768 .{ .from = 0x11BC0, .to = 0x11BE0, .status = .valid, .mapping = &.{}, .status2 = .none, },
8769 .{ .from = 0x11BE2, .to = 0x11BEF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8770 .{ .from = 0x11BF0, .to = 0x11BF9, .status = .valid, .mapping = &.{}, .status2 = .none, },
8771 .{ .from = 0x11BFA, .to = 0x11BFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8772 .{ .from = 0x11C00, .to = 0x11C08, .status = .valid, .mapping = &.{}, .status2 = .none, },
8773 .{ .from = 0x11C0A, .to = 0x11C36, .status = .valid, .mapping = &.{}, .status2 = .none, },
8774 .{ .from = 0x11C38, .to = 0x11C40, .status = .valid, .mapping = &.{}, .status2 = .none, },
8775 .{ .from = 0x11C41, .to = 0x11C45, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8776 .{ .from = 0x11C46, .to = 0x11C4F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8777 .{ .from = 0x11C50, .to = 0x11C59, .status = .valid, .mapping = &.{}, .status2 = .none, },
8778 .{ .from = 0x11C5A, .to = 0x11C6C, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8779 .{ .from = 0x11C6D, .to = 0x11C6F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8780 .{ .from = 0x11C70, .to = 0x11C71, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8781 .{ .from = 0x11C72, .to = 0x11C8F, .status = .valid, .mapping = &.{}, .status2 = .none, },
8782 .{ .from = 0x11C90, .to = 0x11C91, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8783 .{ .from = 0x11C92, .to = 0x11CA7, .status = .valid, .mapping = &.{}, .status2 = .none, },
8784 .{ .from = 0x11CA9, .to = 0x11CB6, .status = .valid, .mapping = &.{}, .status2 = .none, },
8785 .{ .from = 0x11CB7, .to = 0x11CFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8786 .{ .from = 0x11D00, .to = 0x11D06, .status = .valid, .mapping = &.{}, .status2 = .none, },
8787 .{ .from = 0x11D08, .to = 0x11D09, .status = .valid, .mapping = &.{}, .status2 = .none, },
8788 .{ .from = 0x11D0B, .to = 0x11D36, .status = .valid, .mapping = &.{}, .status2 = .none, },
8789 .{ .from = 0x11D37, .to = 0x11D39, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8790 .{ .from = 0x11D3C, .to = 0x11D3D, .status = .valid, .mapping = &.{}, .status2 = .none, },
8791 .{ .from = 0x11D3F, .to = 0x11D47, .status = .valid, .mapping = &.{}, .status2 = .none, },
8792 .{ .from = 0x11D48, .to = 0x11D4F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8793 .{ .from = 0x11D50, .to = 0x11D59, .status = .valid, .mapping = &.{}, .status2 = .none, },
8794 .{ .from = 0x11D5A, .to = 0x11D5F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8795 .{ .from = 0x11D60, .to = 0x11D65, .status = .valid, .mapping = &.{}, .status2 = .none, },
8796 .{ .from = 0x11D67, .to = 0x11D68, .status = .valid, .mapping = &.{}, .status2 = .none, },
8797 .{ .from = 0x11D6A, .to = 0x11D8E, .status = .valid, .mapping = &.{}, .status2 = .none, },
8798 .{ .from = 0x11D90, .to = 0x11D91, .status = .valid, .mapping = &.{}, .status2 = .none, },
8799 .{ .from = 0x11D93, .to = 0x11D98, .status = .valid, .mapping = &.{}, .status2 = .none, },
8800 .{ .from = 0x11D99, .to = 0x11D9F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8801 .{ .from = 0x11DA0, .to = 0x11DA9, .status = .valid, .mapping = &.{}, .status2 = .none, },
8802 .{ .from = 0x11DAA, .to = 0x11DAF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8803 .{ .from = 0x11DB0, .to = 0x11DDB, .status = .valid, .mapping = &.{}, .status2 = .none, },
8804 .{ .from = 0x11DDC, .to = 0x11DDF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8805 .{ .from = 0x11DE0, .to = 0x11DE9, .status = .valid, .mapping = &.{}, .status2 = .none, },
8806 .{ .from = 0x11DEA, .to = 0x11EDF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8807 .{ .from = 0x11EE0, .to = 0x11EF6, .status = .valid, .mapping = &.{}, .status2 = .none, },
8808 .{ .from = 0x11EF7, .to = 0x11EF8, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8809 .{ .from = 0x11EF9, .to = 0x11EFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8810 .{ .from = 0x11F00, .to = 0x11F10, .status = .valid, .mapping = &.{}, .status2 = .none, },
8811 .{ .from = 0x11F12, .to = 0x11F3A, .status = .valid, .mapping = &.{}, .status2 = .none, },
8812 .{ .from = 0x11F3B, .to = 0x11F3D, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8813 .{ .from = 0x11F3E, .to = 0x11F42, .status = .valid, .mapping = &.{}, .status2 = .none, },
8814 .{ .from = 0x11F43, .to = 0x11F4F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8815 .{ .from = 0x11F50, .to = 0x11F59, .status = .valid, .mapping = &.{}, .status2 = .none, },
8816 .{ .from = 0x11F5B, .to = 0x11FAF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8817 .{ .from = 0x11FB1, .to = 0x11FBF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8818 .{ .from = 0x11FC0, .to = 0x11FF1, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8819 .{ .from = 0x11FF2, .to = 0x11FFE, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8820 .{ .from = 0x12000, .to = 0x1236E, .status = .valid, .mapping = &.{}, .status2 = .none, },
8821 .{ .from = 0x1236F, .to = 0x12398, .status = .valid, .mapping = &.{}, .status2 = .none, },
8822 .{ .from = 0x1239A, .to = 0x123FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8823 .{ .from = 0x12400, .to = 0x12462, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8824 .{ .from = 0x12463, .to = 0x1246E, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8825 .{ .from = 0x12470, .to = 0x12473, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8826 .{ .from = 0x12475, .to = 0x1247F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8827 .{ .from = 0x12480, .to = 0x12543, .status = .valid, .mapping = &.{}, .status2 = .none, },
8828 .{ .from = 0x12544, .to = 0x12F8F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8829 .{ .from = 0x12F90, .to = 0x12FF0, .status = .valid, .mapping = &.{}, .status2 = .none, },
8830 .{ .from = 0x12FF1, .to = 0x12FF2, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8831 .{ .from = 0x12FF3, .to = 0x12FFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8832 .{ .from = 0x13000, .to = 0x1342E, .status = .valid, .mapping = &.{}, .status2 = .none, },
8833 .{ .from = 0x13430, .to = 0x13438, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8834 .{ .from = 0x13439, .to = 0x1343F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8835 .{ .from = 0x13440, .to = 0x13455, .status = .valid, .mapping = &.{}, .status2 = .none, },
8836 .{ .from = 0x13456, .to = 0x1345F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8837 .{ .from = 0x13460, .to = 0x143FA, .status = .valid, .mapping = &.{}, .status2 = .none, },
8838 .{ .from = 0x143FB, .to = 0x143FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8839 .{ .from = 0x14400, .to = 0x14646, .status = .valid, .mapping = &.{}, .status2 = .none, },
8840 .{ .from = 0x14647, .to = 0x160FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8841 .{ .from = 0x16100, .to = 0x16139, .status = .valid, .mapping = &.{}, .status2 = .none, },
8842 .{ .from = 0x1613A, .to = 0x167FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8843 .{ .from = 0x16800, .to = 0x16A38, .status = .valid, .mapping = &.{}, .status2 = .none, },
8844 .{ .from = 0x16A39, .to = 0x16A3F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8845 .{ .from = 0x16A40, .to = 0x16A5E, .status = .valid, .mapping = &.{}, .status2 = .none, },
8846 .{ .from = 0x16A60, .to = 0x16A69, .status = .valid, .mapping = &.{}, .status2 = .none, },
8847 .{ .from = 0x16A6A, .to = 0x16A6D, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8848 .{ .from = 0x16A6E, .to = 0x16A6F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8849 .{ .from = 0x16A70, .to = 0x16ABE, .status = .valid, .mapping = &.{}, .status2 = .none, },
8850 .{ .from = 0x16AC0, .to = 0x16AC9, .status = .valid, .mapping = &.{}, .status2 = .none, },
8851 .{ .from = 0x16ACA, .to = 0x16ACF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8852 .{ .from = 0x16AD0, .to = 0x16AED, .status = .valid, .mapping = &.{}, .status2 = .none, },
8853 .{ .from = 0x16AEE, .to = 0x16AEF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8854 .{ .from = 0x16AF0, .to = 0x16AF4, .status = .valid, .mapping = &.{}, .status2 = .none, },
8855 .{ .from = 0x16AF6, .to = 0x16AFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8856 .{ .from = 0x16B00, .to = 0x16B36, .status = .valid, .mapping = &.{}, .status2 = .none, },
8857 .{ .from = 0x16B37, .to = 0x16B3F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8858 .{ .from = 0x16B40, .to = 0x16B43, .status = .valid, .mapping = &.{}, .status2 = .none, },
8859 .{ .from = 0x16B44, .to = 0x16B45, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8860 .{ .from = 0x16B46, .to = 0x16B4F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8861 .{ .from = 0x16B50, .to = 0x16B59, .status = .valid, .mapping = &.{}, .status2 = .none, },
8862 .{ .from = 0x16B5B, .to = 0x16B61, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8863 .{ .from = 0x16B63, .to = 0x16B77, .status = .valid, .mapping = &.{}, .status2 = .none, },
8864 .{ .from = 0x16B78, .to = 0x16B7C, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8865 .{ .from = 0x16B7D, .to = 0x16B8F, .status = .valid, .mapping = &.{}, .status2 = .none, },
8866 .{ .from = 0x16B90, .to = 0x16D3F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8867 .{ .from = 0x16D40, .to = 0x16D6C, .status = .valid, .mapping = &.{}, .status2 = .none, },
8868 .{ .from = 0x16D6D, .to = 0x16D6F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8869 .{ .from = 0x16D70, .to = 0x16D79, .status = .valid, .mapping = &.{}, .status2 = .none, },
8870 .{ .from = 0x16D7A, .to = 0x16E3F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8871 .{ .from = 0x16E60, .to = 0x16E7F, .status = .valid, .mapping = &.{}, .status2 = .none, },
8872 .{ .from = 0x16E80, .to = 0x16E9A, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8873 .{ .from = 0x16E9B, .to = 0x16E9F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8874 .{ .from = 0x16EB9, .to = 0x16EBA, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8875 .{ .from = 0x16EBB, .to = 0x16ED3, .status = .valid, .mapping = &.{}, .status2 = .none, },
8876 .{ .from = 0x16ED4, .to = 0x16EFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8877 .{ .from = 0x16F00, .to = 0x16F44, .status = .valid, .mapping = &.{}, .status2 = .none, },
8878 .{ .from = 0x16F45, .to = 0x16F4A, .status = .valid, .mapping = &.{}, .status2 = .none, },
8879 .{ .from = 0x16F4B, .to = 0x16F4E, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8880 .{ .from = 0x16F50, .to = 0x16F7E, .status = .valid, .mapping = &.{}, .status2 = .none, },
8881 .{ .from = 0x16F7F, .to = 0x16F87, .status = .valid, .mapping = &.{}, .status2 = .none, },
8882 .{ .from = 0x16F88, .to = 0x16F8E, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8883 .{ .from = 0x16F8F, .to = 0x16F9F, .status = .valid, .mapping = &.{}, .status2 = .none, },
8884 .{ .from = 0x16FA0, .to = 0x16FDF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8885 .{ .from = 0x16FE5, .to = 0x16FEF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8886 .{ .from = 0x16FF0, .to = 0x16FF1, .status = .valid, .mapping = &.{}, .status2 = .none, },
8887 .{ .from = 0x16FF2, .to = 0x16FF3, .status = .valid, .mapping = &.{}, .status2 = .none, },
8888 .{ .from = 0x16FF4, .to = 0x16FF6, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8889 .{ .from = 0x16FF7, .to = 0x16FFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8890 .{ .from = 0x17000, .to = 0x187EC, .status = .valid, .mapping = &.{}, .status2 = .none, },
8891 .{ .from = 0x187ED, .to = 0x187F1, .status = .valid, .mapping = &.{}, .status2 = .none, },
8892 .{ .from = 0x187F2, .to = 0x187F7, .status = .valid, .mapping = &.{}, .status2 = .none, },
8893 .{ .from = 0x187F8, .to = 0x187FF, .status = .valid, .mapping = &.{}, .status2 = .none, },
8894 .{ .from = 0x18800, .to = 0x18AF2, .status = .valid, .mapping = &.{}, .status2 = .none, },
8895 .{ .from = 0x18AF3, .to = 0x18CD5, .status = .valid, .mapping = &.{}, .status2 = .none, },
8896 .{ .from = 0x18CD6, .to = 0x18CFE, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8897 .{ .from = 0x18D00, .to = 0x18D08, .status = .valid, .mapping = &.{}, .status2 = .none, },
8898 .{ .from = 0x18D09, .to = 0x18D1E, .status = .valid, .mapping = &.{}, .status2 = .none, },
8899 .{ .from = 0x18D1F, .to = 0x18D7F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8900 .{ .from = 0x18D80, .to = 0x18DF2, .status = .valid, .mapping = &.{}, .status2 = .none, },
8901 .{ .from = 0x18DF3, .to = 0x1AFEF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8902 .{ .from = 0x1AFF0, .to = 0x1AFF3, .status = .valid, .mapping = &.{}, .status2 = .none, },
8903 .{ .from = 0x1AFF5, .to = 0x1AFFB, .status = .valid, .mapping = &.{}, .status2 = .none, },
8904 .{ .from = 0x1AFFD, .to = 0x1AFFE, .status = .valid, .mapping = &.{}, .status2 = .none, },
8905 .{ .from = 0x1B000, .to = 0x1B001, .status = .valid, .mapping = &.{}, .status2 = .none, },
8906 .{ .from = 0x1B002, .to = 0x1B11E, .status = .valid, .mapping = &.{}, .status2 = .none, },
8907 .{ .from = 0x1B11F, .to = 0x1B122, .status = .valid, .mapping = &.{}, .status2 = .none, },
8908 .{ .from = 0x1B123, .to = 0x1B131, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8909 .{ .from = 0x1B133, .to = 0x1B14F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8910 .{ .from = 0x1B150, .to = 0x1B152, .status = .valid, .mapping = &.{}, .status2 = .none, },
8911 .{ .from = 0x1B153, .to = 0x1B154, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8912 .{ .from = 0x1B156, .to = 0x1B163, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8913 .{ .from = 0x1B164, .to = 0x1B167, .status = .valid, .mapping = &.{}, .status2 = .none, },
8914 .{ .from = 0x1B168, .to = 0x1B16F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8915 .{ .from = 0x1B170, .to = 0x1B2FB, .status = .valid, .mapping = &.{}, .status2 = .none, },
8916 .{ .from = 0x1B2FC, .to = 0x1BBFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8917 .{ .from = 0x1BC00, .to = 0x1BC6A, .status = .valid, .mapping = &.{}, .status2 = .none, },
8918 .{ .from = 0x1BC6B, .to = 0x1BC6F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8919 .{ .from = 0x1BC70, .to = 0x1BC7C, .status = .valid, .mapping = &.{}, .status2 = .none, },
8920 .{ .from = 0x1BC7D, .to = 0x1BC7F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8921 .{ .from = 0x1BC80, .to = 0x1BC88, .status = .valid, .mapping = &.{}, .status2 = .none, },
8922 .{ .from = 0x1BC89, .to = 0x1BC8F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8923 .{ .from = 0x1BC90, .to = 0x1BC99, .status = .valid, .mapping = &.{}, .status2 = .none, },
8924 .{ .from = 0x1BC9A, .to = 0x1BC9B, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8925 .{ .from = 0x1BC9D, .to = 0x1BC9E, .status = .valid, .mapping = &.{}, .status2 = .none, },
8926 .{ .from = 0x1BCA0, .to = 0x1BCA3, .status = .ignored, .mapping = &.{}, .status2 = .none, },
8927 .{ .from = 0x1BCA4, .to = 0x1CBFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8928 .{ .from = 0x1CC00, .to = 0x1CCD5, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8929 .{ .from = 0x1CCFA, .to = 0x1CCFC, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8930 .{ .from = 0x1CCFD, .to = 0x1CCFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8931 .{ .from = 0x1CD00, .to = 0x1CEB3, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8932 .{ .from = 0x1CEB4, .to = 0x1CEB9, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8933 .{ .from = 0x1CEBA, .to = 0x1CED0, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8934 .{ .from = 0x1CED1, .to = 0x1CEDF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8935 .{ .from = 0x1CEE0, .to = 0x1CEF0, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8936 .{ .from = 0x1CEF1, .to = 0x1CEFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8937 .{ .from = 0x1CF00, .to = 0x1CF2D, .status = .valid, .mapping = &.{}, .status2 = .none, },
8938 .{ .from = 0x1CF2E, .to = 0x1CF2F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8939 .{ .from = 0x1CF30, .to = 0x1CF46, .status = .valid, .mapping = &.{}, .status2 = .none, },
8940 .{ .from = 0x1CF47, .to = 0x1CF4F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8941 .{ .from = 0x1CF50, .to = 0x1CFC3, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8942 .{ .from = 0x1CFC4, .to = 0x1CFFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8943 .{ .from = 0x1D000, .to = 0x1D0F5, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8944 .{ .from = 0x1D0F6, .to = 0x1D0FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8945 .{ .from = 0x1D100, .to = 0x1D126, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8946 .{ .from = 0x1D127, .to = 0x1D128, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8947 .{ .from = 0x1D12A, .to = 0x1D15D, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8948 .{ .from = 0x1D165, .to = 0x1D172, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8949 .{ .from = 0x1D173, .to = 0x1D17A, .status = .ignored, .mapping = &.{}, .status2 = .none, },
8950 .{ .from = 0x1D17B, .to = 0x1D1BA, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8951 .{ .from = 0x1D1C1, .to = 0x1D1DD, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8952 .{ .from = 0x1D1DE, .to = 0x1D1E8, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8953 .{ .from = 0x1D1E9, .to = 0x1D1EA, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8954 .{ .from = 0x1D1EB, .to = 0x1D1FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8955 .{ .from = 0x1D200, .to = 0x1D245, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8956 .{ .from = 0x1D246, .to = 0x1D2BF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8957 .{ .from = 0x1D2C0, .to = 0x1D2D3, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8958 .{ .from = 0x1D2D4, .to = 0x1D2DF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8959 .{ .from = 0x1D2E0, .to = 0x1D2F3, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8960 .{ .from = 0x1D2F4, .to = 0x1D2FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8961 .{ .from = 0x1D300, .to = 0x1D356, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8962 .{ .from = 0x1D357, .to = 0x1D35F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8963 .{ .from = 0x1D360, .to = 0x1D371, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8964 .{ .from = 0x1D372, .to = 0x1D378, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8965 .{ .from = 0x1D379, .to = 0x1D3FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8966 .{ .from = 0x1D4A0, .to = 0x1D4A1, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8967 .{ .from = 0x1D4A3, .to = 0x1D4A4, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8968 .{ .from = 0x1D4A7, .to = 0x1D4A8, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8969 .{ .from = 0x1D50B, .to = 0x1D50C, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8970 .{ .from = 0x1D547, .to = 0x1D549, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8971 .{ .from = 0x1D6A6, .to = 0x1D6A7, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8972 .{ .from = 0x1D6D3, .to = 0x1D6D4, .status = .mapped, .mapping = &.{0x03C3}, .status2 = .none, },
8973 .{ .from = 0x1D70D, .to = 0x1D70E, .status = .mapped, .mapping = &.{0x03C3}, .status2 = .none, },
8974 .{ .from = 0x1D747, .to = 0x1D748, .status = .mapped, .mapping = &.{0x03C3}, .status2 = .none, },
8975 .{ .from = 0x1D781, .to = 0x1D782, .status = .mapped, .mapping = &.{0x03C3}, .status2 = .none, },
8976 .{ .from = 0x1D7BB, .to = 0x1D7BC, .status = .mapped, .mapping = &.{0x03C3}, .status2 = .none, },
8977 .{ .from = 0x1D7CA, .to = 0x1D7CB, .status = .mapped, .mapping = &.{0x03DD}, .status2 = .none, },
8978 .{ .from = 0x1D7CC, .to = 0x1D7CD, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8979 .{ .from = 0x1D800, .to = 0x1D9FF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8980 .{ .from = 0x1DA00, .to = 0x1DA36, .status = .valid, .mapping = &.{}, .status2 = .none, },
8981 .{ .from = 0x1DA37, .to = 0x1DA3A, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8982 .{ .from = 0x1DA3B, .to = 0x1DA6C, .status = .valid, .mapping = &.{}, .status2 = .none, },
8983 .{ .from = 0x1DA6D, .to = 0x1DA74, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8984 .{ .from = 0x1DA76, .to = 0x1DA83, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8985 .{ .from = 0x1DA85, .to = 0x1DA8B, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
8986 .{ .from = 0x1DA8C, .to = 0x1DA9A, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8987 .{ .from = 0x1DA9B, .to = 0x1DA9F, .status = .valid, .mapping = &.{}, .status2 = .none, },
8988 .{ .from = 0x1DAA1, .to = 0x1DAAF, .status = .valid, .mapping = &.{}, .status2 = .none, },
8989 .{ .from = 0x1DAB0, .to = 0x1DEFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8990 .{ .from = 0x1DF00, .to = 0x1DF1E, .status = .valid, .mapping = &.{}, .status2 = .none, },
8991 .{ .from = 0x1DF1F, .to = 0x1DF24, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8992 .{ .from = 0x1DF25, .to = 0x1DF2A, .status = .valid, .mapping = &.{}, .status2 = .none, },
8993 .{ .from = 0x1DF2B, .to = 0x1DFFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8994 .{ .from = 0x1E000, .to = 0x1E006, .status = .valid, .mapping = &.{}, .status2 = .none, },
8995 .{ .from = 0x1E008, .to = 0x1E018, .status = .valid, .mapping = &.{}, .status2 = .none, },
8996 .{ .from = 0x1E019, .to = 0x1E01A, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
8997 .{ .from = 0x1E01B, .to = 0x1E021, .status = .valid, .mapping = &.{}, .status2 = .none, },
8998 .{ .from = 0x1E023, .to = 0x1E024, .status = .valid, .mapping = &.{}, .status2 = .none, },
8999 .{ .from = 0x1E026, .to = 0x1E02A, .status = .valid, .mapping = &.{}, .status2 = .none, },
9000 .{ .from = 0x1E02B, .to = 0x1E02F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9001 .{ .from = 0x1E06E, .to = 0x1E08E, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9002 .{ .from = 0x1E090, .to = 0x1E0FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9003 .{ .from = 0x1E100, .to = 0x1E12C, .status = .valid, .mapping = &.{}, .status2 = .none, },
9004 .{ .from = 0x1E12D, .to = 0x1E12F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9005 .{ .from = 0x1E130, .to = 0x1E13D, .status = .valid, .mapping = &.{}, .status2 = .none, },
9006 .{ .from = 0x1E13E, .to = 0x1E13F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9007 .{ .from = 0x1E140, .to = 0x1E149, .status = .valid, .mapping = &.{}, .status2 = .none, },
9008 .{ .from = 0x1E14A, .to = 0x1E14D, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9009 .{ .from = 0x1E150, .to = 0x1E28F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9010 .{ .from = 0x1E290, .to = 0x1E2AE, .status = .valid, .mapping = &.{}, .status2 = .none, },
9011 .{ .from = 0x1E2AF, .to = 0x1E2BF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9012 .{ .from = 0x1E2C0, .to = 0x1E2F9, .status = .valid, .mapping = &.{}, .status2 = .none, },
9013 .{ .from = 0x1E2FA, .to = 0x1E2FE, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9014 .{ .from = 0x1E300, .to = 0x1E4CF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9015 .{ .from = 0x1E4D0, .to = 0x1E4F9, .status = .valid, .mapping = &.{}, .status2 = .none, },
9016 .{ .from = 0x1E4FA, .to = 0x1E5CF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9017 .{ .from = 0x1E5D0, .to = 0x1E5FA, .status = .valid, .mapping = &.{}, .status2 = .none, },
9018 .{ .from = 0x1E5FB, .to = 0x1E5FE, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9019 .{ .from = 0x1E600, .to = 0x1E6BF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9020 .{ .from = 0x1E6C0, .to = 0x1E6DE, .status = .valid, .mapping = &.{}, .status2 = .none, },
9021 .{ .from = 0x1E6E0, .to = 0x1E6F5, .status = .valid, .mapping = &.{}, .status2 = .none, },
9022 .{ .from = 0x1E6F6, .to = 0x1E6FD, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9023 .{ .from = 0x1E6FE, .to = 0x1E6FF, .status = .valid, .mapping = &.{}, .status2 = .none, },
9024 .{ .from = 0x1E700, .to = 0x1E7DF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9025 .{ .from = 0x1E7E0, .to = 0x1E7E6, .status = .valid, .mapping = &.{}, .status2 = .none, },
9026 .{ .from = 0x1E7E8, .to = 0x1E7EB, .status = .valid, .mapping = &.{}, .status2 = .none, },
9027 .{ .from = 0x1E7ED, .to = 0x1E7EE, .status = .valid, .mapping = &.{}, .status2 = .none, },
9028 .{ .from = 0x1E7F0, .to = 0x1E7FE, .status = .valid, .mapping = &.{}, .status2 = .none, },
9029 .{ .from = 0x1E800, .to = 0x1E8C4, .status = .valid, .mapping = &.{}, .status2 = .none, },
9030 .{ .from = 0x1E8C5, .to = 0x1E8C6, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9031 .{ .from = 0x1E8C7, .to = 0x1E8CF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9032 .{ .from = 0x1E8D0, .to = 0x1E8D6, .status = .valid, .mapping = &.{}, .status2 = .none, },
9033 .{ .from = 0x1E8D7, .to = 0x1E8FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9034 .{ .from = 0x1E922, .to = 0x1E94A, .status = .valid, .mapping = &.{}, .status2 = .none, },
9035 .{ .from = 0x1E94C, .to = 0x1E94F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9036 .{ .from = 0x1E950, .to = 0x1E959, .status = .valid, .mapping = &.{}, .status2 = .none, },
9037 .{ .from = 0x1E95A, .to = 0x1E95D, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9038 .{ .from = 0x1E95E, .to = 0x1E95F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9039 .{ .from = 0x1E960, .to = 0x1EC70, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9040 .{ .from = 0x1EC71, .to = 0x1ECB4, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9041 .{ .from = 0x1ECB5, .to = 0x1ED00, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9042 .{ .from = 0x1ED01, .to = 0x1ED3D, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9043 .{ .from = 0x1ED3E, .to = 0x1EDFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9044 .{ .from = 0x1EE25, .to = 0x1EE26, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9045 .{ .from = 0x1EE3C, .to = 0x1EE41, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9046 .{ .from = 0x1EE43, .to = 0x1EE46, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9047 .{ .from = 0x1EE55, .to = 0x1EE56, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9048 .{ .from = 0x1EE65, .to = 0x1EE66, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9049 .{ .from = 0x1EE9C, .to = 0x1EEA0, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9050 .{ .from = 0x1EEBC, .to = 0x1EEEF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9051 .{ .from = 0x1EEF0, .to = 0x1EEF1, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9052 .{ .from = 0x1EEF2, .to = 0x1EFFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9053 .{ .from = 0x1F000, .to = 0x1F02B, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9054 .{ .from = 0x1F02C, .to = 0x1F02F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9055 .{ .from = 0x1F030, .to = 0x1F093, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9056 .{ .from = 0x1F094, .to = 0x1F09F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9057 .{ .from = 0x1F0A0, .to = 0x1F0AE, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9058 .{ .from = 0x1F0AF, .to = 0x1F0B0, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9059 .{ .from = 0x1F0B1, .to = 0x1F0BE, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9060 .{ .from = 0x1F0C1, .to = 0x1F0CF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9061 .{ .from = 0x1F0D1, .to = 0x1F0DF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9062 .{ .from = 0x1F0E0, .to = 0x1F0F5, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9063 .{ .from = 0x1F0F6, .to = 0x1F0FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9064 .{ .from = 0x1F10B, .to = 0x1F10C, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9065 .{ .from = 0x1F10D, .to = 0x1F10F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9066 .{ .from = 0x1F150, .to = 0x1F156, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9067 .{ .from = 0x1F158, .to = 0x1F15E, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9068 .{ .from = 0x1F160, .to = 0x1F169, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9069 .{ .from = 0x1F16D, .to = 0x1F16F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9070 .{ .from = 0x1F170, .to = 0x1F178, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9071 .{ .from = 0x1F17B, .to = 0x1F17C, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9072 .{ .from = 0x1F17D, .to = 0x1F17E, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9073 .{ .from = 0x1F180, .to = 0x1F189, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9074 .{ .from = 0x1F18A, .to = 0x1F18D, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9075 .{ .from = 0x1F18E, .to = 0x1F18F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9076 .{ .from = 0x1F191, .to = 0x1F19A, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9077 .{ .from = 0x1F19B, .to = 0x1F1AC, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9078 .{ .from = 0x1F1AE, .to = 0x1F1E5, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9079 .{ .from = 0x1F1E6, .to = 0x1F1FF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9080 .{ .from = 0x1F203, .to = 0x1F20F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9081 .{ .from = 0x1F23C, .to = 0x1F23F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9082 .{ .from = 0x1F249, .to = 0x1F24F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9083 .{ .from = 0x1F252, .to = 0x1F25F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9084 .{ .from = 0x1F260, .to = 0x1F265, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9085 .{ .from = 0x1F266, .to = 0x1F2FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9086 .{ .from = 0x1F300, .to = 0x1F320, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9087 .{ .from = 0x1F321, .to = 0x1F32C, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9088 .{ .from = 0x1F32D, .to = 0x1F32F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9089 .{ .from = 0x1F330, .to = 0x1F335, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9090 .{ .from = 0x1F337, .to = 0x1F37C, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9091 .{ .from = 0x1F37E, .to = 0x1F37F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9092 .{ .from = 0x1F380, .to = 0x1F393, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9093 .{ .from = 0x1F394, .to = 0x1F39F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9094 .{ .from = 0x1F3A0, .to = 0x1F3C4, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9095 .{ .from = 0x1F3C6, .to = 0x1F3CA, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9096 .{ .from = 0x1F3CB, .to = 0x1F3CE, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9097 .{ .from = 0x1F3CF, .to = 0x1F3D3, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9098 .{ .from = 0x1F3D4, .to = 0x1F3DF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9099 .{ .from = 0x1F3E0, .to = 0x1F3F0, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9100 .{ .from = 0x1F3F1, .to = 0x1F3F7, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9101 .{ .from = 0x1F3F8, .to = 0x1F3FF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9102 .{ .from = 0x1F400, .to = 0x1F43E, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9103 .{ .from = 0x1F442, .to = 0x1F4F7, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9104 .{ .from = 0x1F4F9, .to = 0x1F4FC, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9105 .{ .from = 0x1F4FD, .to = 0x1F4FE, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9106 .{ .from = 0x1F500, .to = 0x1F53D, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9107 .{ .from = 0x1F53E, .to = 0x1F53F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9108 .{ .from = 0x1F540, .to = 0x1F543, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9109 .{ .from = 0x1F544, .to = 0x1F54A, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9110 .{ .from = 0x1F54B, .to = 0x1F54F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9111 .{ .from = 0x1F550, .to = 0x1F567, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9112 .{ .from = 0x1F568, .to = 0x1F579, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9113 .{ .from = 0x1F57B, .to = 0x1F5A3, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9114 .{ .from = 0x1F5A5, .to = 0x1F5FA, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9115 .{ .from = 0x1F5FB, .to = 0x1F5FF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9116 .{ .from = 0x1F601, .to = 0x1F610, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9117 .{ .from = 0x1F612, .to = 0x1F614, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9118 .{ .from = 0x1F61C, .to = 0x1F61E, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9119 .{ .from = 0x1F620, .to = 0x1F625, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9120 .{ .from = 0x1F626, .to = 0x1F627, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9121 .{ .from = 0x1F628, .to = 0x1F62B, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9122 .{ .from = 0x1F62E, .to = 0x1F62F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9123 .{ .from = 0x1F630, .to = 0x1F633, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9124 .{ .from = 0x1F635, .to = 0x1F640, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9125 .{ .from = 0x1F641, .to = 0x1F642, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9126 .{ .from = 0x1F643, .to = 0x1F644, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9127 .{ .from = 0x1F645, .to = 0x1F64F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9128 .{ .from = 0x1F650, .to = 0x1F67F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9129 .{ .from = 0x1F680, .to = 0x1F6C5, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9130 .{ .from = 0x1F6C6, .to = 0x1F6CF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9131 .{ .from = 0x1F6D1, .to = 0x1F6D2, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9132 .{ .from = 0x1F6D3, .to = 0x1F6D4, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9133 .{ .from = 0x1F6D6, .to = 0x1F6D7, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9134 .{ .from = 0x1F6D9, .to = 0x1F6DB, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9135 .{ .from = 0x1F6DD, .to = 0x1F6DF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9136 .{ .from = 0x1F6E0, .to = 0x1F6EC, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9137 .{ .from = 0x1F6ED, .to = 0x1F6EF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9138 .{ .from = 0x1F6F0, .to = 0x1F6F3, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9139 .{ .from = 0x1F6F4, .to = 0x1F6F6, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9140 .{ .from = 0x1F6F7, .to = 0x1F6F8, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9141 .{ .from = 0x1F6FB, .to = 0x1F6FC, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9142 .{ .from = 0x1F6FD, .to = 0x1F6FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9143 .{ .from = 0x1F700, .to = 0x1F773, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9144 .{ .from = 0x1F774, .to = 0x1F776, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9145 .{ .from = 0x1F777, .to = 0x1F77A, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9146 .{ .from = 0x1F77B, .to = 0x1F77F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9147 .{ .from = 0x1F780, .to = 0x1F7D4, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9148 .{ .from = 0x1F7D5, .to = 0x1F7D8, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9149 .{ .from = 0x1F7DA, .to = 0x1F7DF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9150 .{ .from = 0x1F7E0, .to = 0x1F7EB, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9151 .{ .from = 0x1F7EC, .to = 0x1F7EF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9152 .{ .from = 0x1F7F1, .to = 0x1F7FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9153 .{ .from = 0x1F800, .to = 0x1F80B, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9154 .{ .from = 0x1F80C, .to = 0x1F80F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9155 .{ .from = 0x1F810, .to = 0x1F847, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9156 .{ .from = 0x1F848, .to = 0x1F84F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9157 .{ .from = 0x1F850, .to = 0x1F859, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9158 .{ .from = 0x1F85A, .to = 0x1F85F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9159 .{ .from = 0x1F860, .to = 0x1F887, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9160 .{ .from = 0x1F888, .to = 0x1F88F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9161 .{ .from = 0x1F890, .to = 0x1F8AD, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9162 .{ .from = 0x1F8AE, .to = 0x1F8AF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9163 .{ .from = 0x1F8B0, .to = 0x1F8B1, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9164 .{ .from = 0x1F8B2, .to = 0x1F8BB, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9165 .{ .from = 0x1F8BC, .to = 0x1F8BF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9166 .{ .from = 0x1F8C0, .to = 0x1F8C1, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9167 .{ .from = 0x1F8C2, .to = 0x1F8CF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9168 .{ .from = 0x1F8D0, .to = 0x1F8D8, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9169 .{ .from = 0x1F8D9, .to = 0x1F8FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9170 .{ .from = 0x1F900, .to = 0x1F90B, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9171 .{ .from = 0x1F90D, .to = 0x1F90F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9172 .{ .from = 0x1F910, .to = 0x1F918, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9173 .{ .from = 0x1F919, .to = 0x1F91E, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9174 .{ .from = 0x1F920, .to = 0x1F927, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9175 .{ .from = 0x1F928, .to = 0x1F92F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9176 .{ .from = 0x1F931, .to = 0x1F932, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9177 .{ .from = 0x1F933, .to = 0x1F93E, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9178 .{ .from = 0x1F940, .to = 0x1F94B, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9179 .{ .from = 0x1F94D, .to = 0x1F94F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9180 .{ .from = 0x1F950, .to = 0x1F95E, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9181 .{ .from = 0x1F95F, .to = 0x1F96B, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9182 .{ .from = 0x1F96C, .to = 0x1F970, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9183 .{ .from = 0x1F973, .to = 0x1F976, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9184 .{ .from = 0x1F977, .to = 0x1F978, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9185 .{ .from = 0x1F97C, .to = 0x1F97F, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9186 .{ .from = 0x1F980, .to = 0x1F984, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9187 .{ .from = 0x1F985, .to = 0x1F991, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9188 .{ .from = 0x1F992, .to = 0x1F997, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9189 .{ .from = 0x1F998, .to = 0x1F9A2, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9190 .{ .from = 0x1F9A3, .to = 0x1F9A4, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9191 .{ .from = 0x1F9A5, .to = 0x1F9AA, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9192 .{ .from = 0x1F9AB, .to = 0x1F9AD, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9193 .{ .from = 0x1F9AE, .to = 0x1F9AF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9194 .{ .from = 0x1F9B0, .to = 0x1F9B9, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9195 .{ .from = 0x1F9BA, .to = 0x1F9BF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9196 .{ .from = 0x1F9C1, .to = 0x1F9C2, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9197 .{ .from = 0x1F9C3, .to = 0x1F9CA, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9198 .{ .from = 0x1F9CD, .to = 0x1F9CF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9199 .{ .from = 0x1F9D0, .to = 0x1F9E6, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9200 .{ .from = 0x1F9E7, .to = 0x1F9FF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9201 .{ .from = 0x1FA00, .to = 0x1FA53, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9202 .{ .from = 0x1FA54, .to = 0x1FA57, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9203 .{ .from = 0x1FA58, .to = 0x1FA5F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9204 .{ .from = 0x1FA60, .to = 0x1FA6D, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9205 .{ .from = 0x1FA6E, .to = 0x1FA6F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9206 .{ .from = 0x1FA70, .to = 0x1FA73, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9207 .{ .from = 0x1FA75, .to = 0x1FA77, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9208 .{ .from = 0x1FA78, .to = 0x1FA7A, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9209 .{ .from = 0x1FA7B, .to = 0x1FA7C, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9210 .{ .from = 0x1FA7D, .to = 0x1FA7F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9211 .{ .from = 0x1FA80, .to = 0x1FA82, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9212 .{ .from = 0x1FA83, .to = 0x1FA86, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9213 .{ .from = 0x1FA87, .to = 0x1FA88, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9214 .{ .from = 0x1FA8B, .to = 0x1FA8D, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9215 .{ .from = 0x1FA90, .to = 0x1FA95, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9216 .{ .from = 0x1FA96, .to = 0x1FAA8, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9217 .{ .from = 0x1FAA9, .to = 0x1FAAC, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9218 .{ .from = 0x1FAAD, .to = 0x1FAAF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9219 .{ .from = 0x1FAB0, .to = 0x1FAB6, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9220 .{ .from = 0x1FAB7, .to = 0x1FABA, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9221 .{ .from = 0x1FABB, .to = 0x1FABD, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9222 .{ .from = 0x1FAC0, .to = 0x1FAC2, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9223 .{ .from = 0x1FAC3, .to = 0x1FAC5, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9224 .{ .from = 0x1FAC9, .to = 0x1FACC, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9225 .{ .from = 0x1FACE, .to = 0x1FACF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9226 .{ .from = 0x1FAD0, .to = 0x1FAD6, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9227 .{ .from = 0x1FAD7, .to = 0x1FAD9, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9228 .{ .from = 0x1FADA, .to = 0x1FADB, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9229 .{ .from = 0x1FADD, .to = 0x1FADE, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9230 .{ .from = 0x1FAE0, .to = 0x1FAE7, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9231 .{ .from = 0x1FAEB, .to = 0x1FAEE, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9232 .{ .from = 0x1FAF0, .to = 0x1FAF6, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9233 .{ .from = 0x1FAF7, .to = 0x1FAF8, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9234 .{ .from = 0x1FAF9, .to = 0x1FAFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9235 .{ .from = 0x1FB00, .to = 0x1FB92, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9236 .{ .from = 0x1FB94, .to = 0x1FBCA, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9237 .{ .from = 0x1FBCB, .to = 0x1FBEF, .status = .valid, .mapping = &.{}, .status2 = .NV8, },
9238 .{ .from = 0x1FBFB, .to = 0x1FFFD, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9239 .{ .from = 0x1FFFE, .to = 0x1FFFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9240 .{ .from = 0x20000, .to = 0x2A6D6, .status = .valid, .mapping = &.{}, .status2 = .none, },
9241 .{ .from = 0x2A6D7, .to = 0x2A6DD, .status = .valid, .mapping = &.{}, .status2 = .none, },
9242 .{ .from = 0x2A6DE, .to = 0x2A6DF, .status = .valid, .mapping = &.{}, .status2 = .none, },
9243 .{ .from = 0x2A6E0, .to = 0x2A6FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9244 .{ .from = 0x2A700, .to = 0x2B734, .status = .valid, .mapping = &.{}, .status2 = .none, },
9245 .{ .from = 0x2B735, .to = 0x2B738, .status = .valid, .mapping = &.{}, .status2 = .none, },
9246 .{ .from = 0x2B73A, .to = 0x2B73F, .status = .valid, .mapping = &.{}, .status2 = .none, },
9247 .{ .from = 0x2B740, .to = 0x2B81D, .status = .valid, .mapping = &.{}, .status2 = .none, },
9248 .{ .from = 0x2B81E, .to = 0x2B81F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9249 .{ .from = 0x2B820, .to = 0x2CEA1, .status = .valid, .mapping = &.{}, .status2 = .none, },
9250 .{ .from = 0x2CEA2, .to = 0x2CEAD, .status = .valid, .mapping = &.{}, .status2 = .none, },
9251 .{ .from = 0x2CEAE, .to = 0x2CEAF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9252 .{ .from = 0x2CEB0, .to = 0x2EBE0, .status = .valid, .mapping = &.{}, .status2 = .none, },
9253 .{ .from = 0x2EBE1, .to = 0x2EBEF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9254 .{ .from = 0x2EBF0, .to = 0x2EE5D, .status = .valid, .mapping = &.{}, .status2 = .none, },
9255 .{ .from = 0x2EE5E, .to = 0x2F7FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9256 .{ .from = 0x2F831, .to = 0x2F833, .status = .mapped, .mapping = &.{0x537F}, .status2 = .none, },
9257 .{ .from = 0x2F845, .to = 0x2F846, .status = .mapped, .mapping = &.{0x5584}, .status2 = .none, },
9258 .{ .from = 0x2F86A, .to = 0x2F86B, .status = .mapped, .mapping = &.{0x5B3E}, .status2 = .none, },
9259 .{ .from = 0x2F891, .to = 0x2F892, .status = .mapped, .mapping = &.{0x22331}, .status2 = .none, },
9260 .{ .from = 0x2F894, .to = 0x2F895, .status = .mapped, .mapping = &.{0x5F22}, .status2 = .none, },
9261 .{ .from = 0x2F92C, .to = 0x2F92D, .status = .mapped, .mapping = &.{0x3EB8}, .status2 = .none, },
9262 .{ .from = 0x2F946, .to = 0x2F947, .status = .mapped, .mapping = &.{0x771F}, .status2 = .none, },
9263 .{ .from = 0x2F95D, .to = 0x2F95E, .status = .mapped, .mapping = &.{0x25AA7}, .status2 = .none, },
9264 .{ .from = 0x2F9FE, .to = 0x2F9FF, .status = .mapped, .mapping = &.{0x980B}, .status2 = .none, },
9265 .{ .from = 0x2FA1E, .to = 0x2FFFD, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9266 .{ .from = 0x2FFFE, .to = 0x2FFFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9267 .{ .from = 0x30000, .to = 0x3134A, .status = .valid, .mapping = &.{}, .status2 = .none, },
9268 .{ .from = 0x3134B, .to = 0x3134F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9269 .{ .from = 0x31350, .to = 0x323AF, .status = .valid, .mapping = &.{}, .status2 = .none, },
9270 .{ .from = 0x323B0, .to = 0x33479, .status = .valid, .mapping = &.{}, .status2 = .none, },
9271 .{ .from = 0x3347A, .to = 0x3FFFD, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9272 .{ .from = 0x3FFFE, .to = 0x3FFFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9273 .{ .from = 0x40000, .to = 0x4FFFD, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9274 .{ .from = 0x4FFFE, .to = 0x4FFFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9275 .{ .from = 0x50000, .to = 0x5FFFD, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9276 .{ .from = 0x5FFFE, .to = 0x5FFFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9277 .{ .from = 0x60000, .to = 0x6FFFD, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9278 .{ .from = 0x6FFFE, .to = 0x6FFFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9279 .{ .from = 0x70000, .to = 0x7FFFD, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9280 .{ .from = 0x7FFFE, .to = 0x7FFFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9281 .{ .from = 0x80000, .to = 0x8FFFD, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9282 .{ .from = 0x8FFFE, .to = 0x8FFFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9283 .{ .from = 0x90000, .to = 0x9FFFD, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9284 .{ .from = 0x9FFFE, .to = 0x9FFFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9285 .{ .from = 0xA0000, .to = 0xAFFFD, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9286 .{ .from = 0xAFFFE, .to = 0xAFFFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9287 .{ .from = 0xB0000, .to = 0xBFFFD, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9288 .{ .from = 0xBFFFE, .to = 0xBFFFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9289 .{ .from = 0xC0000, .to = 0xCFFFD, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9290 .{ .from = 0xCFFFE, .to = 0xCFFFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9291 .{ .from = 0xD0000, .to = 0xDFFFD, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9292 .{ .from = 0xDFFFE, .to = 0xDFFFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9293 .{ .from = 0xE0002, .to = 0xE001F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9294 .{ .from = 0xE0020, .to = 0xE007F, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9295 .{ .from = 0xE0080, .to = 0xE00FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9296 .{ .from = 0xE0100, .to = 0xE01EF, .status = .ignored, .mapping = &.{}, .status2 = .none, },
9297 .{ .from = 0xE01F0, .to = 0xEFFFD, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9298 .{ .from = 0xEFFFE, .to = 0xEFFFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9299 .{ .from = 0xF0000, .to = 0xFFFFD, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9300 .{ .from = 0xFFFFE, .to = 0xFFFFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9301 .{ .from = 0x100000, .to = 0x10FFFD, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9302 .{ .from = 0x10FFFE, .to = 0x10FFFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, },
9303};
test.zig created+14
...@@ -0,0 +1,14 @@
1const std = @import("std");
2const idna = @import("unicode-idna");
3
4test {
5 _ = @import("./testv2.zig");
6}
7test {
8 _ = &idna.@"2008".data;
9 _ = &idna.@"2008".data_range;
10}
11test {
12 _ = &idna.table.data;
13 _ = &idna.table.data_range;
14}
testv2.zig created+7
...@@ -0,0 +1,7 @@
1// This file is part of Unicode IDNA Compatibility Processing
2// For documentation, see http://www.unicode.org/reports/tr46/
3//
4
5// Based on the source file: https://www.unicode.org/Public/17.0.0/idna/IdnaTestV2.txt
6//
7
tsconfig.json created+29
...@@ -0,0 +1,29 @@
1{
2 "compilerOptions": {
3 // Environment setup & latest features
4 "lib": ["ESNext"],
5 "target": "ESNext",
6 "module": "Preserve",
7 "moduleDetection": "force",
8 "jsx": "react-jsx",
9 "allowJs": true,
10
11 // Bundler mode
12 "moduleResolution": "bundler",
13 "allowImportingTsExtensions": true,
14 "verbatimModuleSyntax": true,
15 "noEmit": true,
16
17 // Best practices
18 "strict": true,
19 "skipLibCheck": true,
20 "noFallthroughCasesInSwitch": true,
21 "noUncheckedIndexedAccess": true,
22 "noImplicitOverride": true,
23
24 // Some stricter flags (disabled by default)
25 "noUnusedLocals": false,
26 "noUnusedParameters": false,
27 "noPropertyAccessFromIndexSignature": false
28 }
29}
zigmod.yml created+6
...@@ -0,0 +1,6 @@
1id: i06sa6zt2xq2wia61uem2konpnwboe01ge80rkj5fi02xcxn
2name: unicode-idna
3main: idna.zig
4license: MIT
5description: "UTS #46"
6dependencies: