@fairyhunter13/opentui-core 0.1.112 → 0.1.114

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (591) hide show
  1. package/dev/keypress-debug-renderer.ts +148 -0
  2. package/dev/keypress-debug.ts +43 -0
  3. package/dev/print-env-vars.ts +32 -0
  4. package/dev/test-tmux-graphics-334.sh +68 -0
  5. package/dev/thai-debug-test.ts +68 -0
  6. package/docs/development.md +144 -0
  7. package/package.json +63 -51
  8. package/scripts/build.ts +400 -0
  9. package/scripts/publish.ts +60 -0
  10. package/src/3d/SpriteResourceManager.ts +286 -0
  11. package/src/3d/SpriteUtils.ts +70 -0
  12. package/src/3d/TextureUtils.ts +196 -0
  13. package/src/3d/ThreeRenderable.ts +197 -0
  14. package/src/3d/WGPURenderer.ts +294 -0
  15. package/src/3d/animation/ExplodingSpriteEffect.ts +513 -0
  16. package/src/3d/animation/PhysicsExplodingSpriteEffect.ts +429 -0
  17. package/src/3d/animation/SpriteAnimator.ts +633 -0
  18. package/src/3d/animation/SpriteParticleGenerator.ts +435 -0
  19. package/src/3d/canvas.ts +464 -0
  20. package/src/3d/index.ts +12 -0
  21. package/src/3d/physics/PlanckPhysicsAdapter.ts +72 -0
  22. package/src/3d/physics/RapierPhysicsAdapter.ts +66 -0
  23. package/src/3d/physics/physics-interface.ts +31 -0
  24. package/src/3d/shaders/supersampling.wgsl +201 -0
  25. package/src/3d.ts +3 -0
  26. package/src/NativeSpanFeed.ts +300 -0
  27. package/src/Renderable.ts +1704 -0
  28. package/src/__snapshots__/buffer.test.ts.snap +28 -0
  29. package/src/animation/Timeline.test.ts +2709 -0
  30. package/src/animation/Timeline.ts +598 -0
  31. package/src/ansi.ts +18 -0
  32. package/src/benchmark/attenuation-benchmark.ts +81 -0
  33. package/src/benchmark/colormatrix-benchmark.ts +128 -0
  34. package/src/benchmark/gain-benchmark.ts +80 -0
  35. package/src/benchmark/latest-all-bench-run.json +707 -0
  36. package/src/benchmark/latest-async-bench-run.json +336 -0
  37. package/src/benchmark/latest-default-bench-run.json +657 -0
  38. package/src/benchmark/latest-large-bench-run.json +707 -0
  39. package/src/benchmark/latest-quick-bench-run.json +207 -0
  40. package/src/benchmark/markdown-benchmark.ts +1796 -0
  41. package/src/benchmark/native-span-feed-async-benchmark.ts +355 -0
  42. package/src/benchmark/native-span-feed-benchmark.md +56 -0
  43. package/src/benchmark/native-span-feed-benchmark.ts +596 -0
  44. package/src/benchmark/native-span-feed-compare.ts +280 -0
  45. package/src/benchmark/renderer-benchmark.ts +754 -0
  46. package/src/benchmark/text-table-benchmark.ts +948 -0
  47. package/src/buffer.test.ts +291 -0
  48. package/src/buffer.ts +554 -0
  49. package/src/console.test.ts +612 -0
  50. package/src/console.ts +1254 -0
  51. package/src/edit-buffer.test.ts +1769 -0
  52. package/src/edit-buffer.ts +411 -0
  53. package/src/editor-view.test.ts +1032 -0
  54. package/src/editor-view.ts +284 -0
  55. package/src/examples/ascii-font-selection-demo.ts +245 -0
  56. package/src/examples/assets/Water_2_M_Normal.jpg +0 -0
  57. package/src/examples/assets/concrete.png +0 -0
  58. package/src/examples/assets/crate.png +0 -0
  59. package/src/examples/assets/crate_emissive.png +0 -0
  60. package/src/examples/assets/forrest_background.png +0 -0
  61. package/src/examples/assets/hast-example.json +1018 -0
  62. package/src/examples/assets/heart.png +0 -0
  63. package/src/examples/assets/main_char_heavy_attack.png +0 -0
  64. package/src/examples/assets/main_char_idle.png +0 -0
  65. package/src/examples/assets/main_char_jump_end.png +0 -0
  66. package/src/examples/assets/main_char_jump_landing.png +0 -0
  67. package/src/examples/assets/main_char_jump_start.png +0 -0
  68. package/src/examples/assets/main_char_run_loop.png +0 -0
  69. package/src/examples/assets/roughness_map.jpg +0 -0
  70. package/src/examples/build.ts +115 -0
  71. package/src/examples/code-demo.ts +924 -0
  72. package/src/examples/console-demo.ts +358 -0
  73. package/src/examples/core-plugin-slots-demo.ts +759 -0
  74. package/src/examples/diff-demo.ts +701 -0
  75. package/src/examples/draggable-three-demo.ts +259 -0
  76. package/src/examples/editor-demo.ts +322 -0
  77. package/src/examples/extmarks-demo.ts +196 -0
  78. package/src/examples/focus-restore-demo.ts +310 -0
  79. package/src/examples/fonts.ts +245 -0
  80. package/src/examples/fractal-shader-demo.ts +268 -0
  81. package/src/examples/framebuffer-demo.ts +674 -0
  82. package/src/examples/full-unicode-demo.ts +241 -0
  83. package/src/examples/golden-star-demo.ts +933 -0
  84. package/src/examples/grayscale-buffer-demo.ts +249 -0
  85. package/src/examples/hast-syntax-highlighting-demo.ts +129 -0
  86. package/src/examples/index.ts +926 -0
  87. package/src/examples/input-demo.ts +377 -0
  88. package/src/examples/input-select-layout-demo.ts +425 -0
  89. package/src/examples/install.sh +143 -0
  90. package/src/examples/keypress-debug-demo.ts +452 -0
  91. package/src/examples/lib/HexList.ts +122 -0
  92. package/src/examples/lib/PaletteGrid.ts +125 -0
  93. package/src/examples/lib/standalone-keys.ts +25 -0
  94. package/src/examples/lib/tab-controller.ts +243 -0
  95. package/src/examples/lights-phong-demo.ts +290 -0
  96. package/src/examples/link-demo.ts +220 -0
  97. package/src/examples/live-state-demo.ts +480 -0
  98. package/src/examples/markdown-demo.ts +725 -0
  99. package/src/examples/mouse-interaction-demo.ts +428 -0
  100. package/src/examples/nested-zindex-demo.ts +357 -0
  101. package/src/examples/opacity-example.ts +235 -0
  102. package/src/examples/opentui-demo.ts +1057 -0
  103. package/src/examples/physx-planck-2d-demo.ts +623 -0
  104. package/src/examples/physx-rapier-2d-demo.ts +655 -0
  105. package/src/examples/relative-positioning-demo.ts +323 -0
  106. package/src/examples/scroll-example.ts +214 -0
  107. package/src/examples/scrollbox-mouse-test.ts +112 -0
  108. package/src/examples/scrollbox-overlay-hit-test.ts +206 -0
  109. package/src/examples/select-demo.ts +237 -0
  110. package/src/examples/shader-cube-demo.ts +1015 -0
  111. package/src/examples/simple-layout-example.ts +591 -0
  112. package/src/examples/slider-demo.ts +617 -0
  113. package/src/examples/split-mode-demo.ts +453 -0
  114. package/src/examples/sprite-animation-demo.ts +443 -0
  115. package/src/examples/sprite-particle-generator-demo.ts +486 -0
  116. package/src/examples/static-sprite-demo.ts +193 -0
  117. package/src/examples/sticky-scroll-example.ts +308 -0
  118. package/src/examples/styled-text-demo.ts +282 -0
  119. package/src/examples/tab-select-demo.ts +219 -0
  120. package/src/examples/terminal-title.ts +29 -0
  121. package/src/examples/terminal.ts +305 -0
  122. package/src/examples/text-node-demo.ts +416 -0
  123. package/src/examples/text-selection-demo.ts +377 -0
  124. package/src/examples/text-table-demo.ts +503 -0
  125. package/src/examples/text-truncation-demo.ts +481 -0
  126. package/src/examples/text-wrap.ts +757 -0
  127. package/src/examples/texture-loading-demo.ts +259 -0
  128. package/src/examples/timeline-example.ts +670 -0
  129. package/src/examples/transparency-demo.ts +400 -0
  130. package/src/examples/vnode-composition-demo.ts +404 -0
  131. package/src/examples/wide-grapheme-overlay-demo.ts +280 -0
  132. package/src/index.ts +24 -0
  133. package/src/lib/KeyHandler.integration.test.ts +292 -0
  134. package/src/lib/KeyHandler.stopPropagation.test.ts +289 -0
  135. package/src/lib/KeyHandler.test.ts +662 -0
  136. package/src/lib/KeyHandler.ts +222 -0
  137. package/src/lib/RGBA.test.ts +984 -0
  138. package/src/lib/RGBA.ts +204 -0
  139. package/src/lib/ascii.font.ts +330 -0
  140. package/src/lib/border.test.ts +83 -0
  141. package/src/lib/border.ts +170 -0
  142. package/src/lib/bunfs.test.ts +27 -0
  143. package/src/lib/bunfs.ts +18 -0
  144. package/src/lib/clipboard.test.ts +41 -0
  145. package/src/lib/clipboard.ts +47 -0
  146. package/src/lib/clock.ts +35 -0
  147. package/src/lib/data-paths.test.ts +133 -0
  148. package/src/lib/data-paths.ts +109 -0
  149. package/src/lib/debounce.ts +106 -0
  150. package/src/lib/detect-links.test.ts +98 -0
  151. package/src/lib/detect-links.ts +56 -0
  152. package/src/lib/env.test.ts +228 -0
  153. package/src/lib/env.ts +209 -0
  154. package/src/lib/extmarks-history.ts +51 -0
  155. package/src/lib/extmarks-multiwidth.test.ts +322 -0
  156. package/src/lib/extmarks.test.ts +3457 -0
  157. package/src/lib/extmarks.ts +843 -0
  158. package/src/lib/fonts/block.json +405 -0
  159. package/src/lib/fonts/grid.json +265 -0
  160. package/src/lib/fonts/huge.json +741 -0
  161. package/src/lib/fonts/pallet.json +314 -0
  162. package/src/lib/fonts/shade.json +591 -0
  163. package/src/lib/fonts/slick.json +321 -0
  164. package/src/lib/fonts/tiny.json +69 -0
  165. package/src/lib/hast-styled-text.ts +59 -0
  166. package/src/lib/index.ts +21 -0
  167. package/src/lib/keymapping.test.ts +317 -0
  168. package/src/lib/keymapping.ts +115 -0
  169. package/src/lib/objects-in-viewport.test.ts +787 -0
  170. package/src/lib/objects-in-viewport.ts +153 -0
  171. package/src/lib/output.capture.ts +58 -0
  172. package/src/lib/parse.keypress-kitty.protocol.test.ts +340 -0
  173. package/src/lib/parse.keypress-kitty.test.ts +663 -0
  174. package/src/lib/parse.keypress-kitty.ts +439 -0
  175. package/src/lib/parse.keypress.test.ts +1849 -0
  176. package/src/lib/parse.keypress.ts +397 -0
  177. package/src/lib/parse.mouse.test.ts +552 -0
  178. package/src/lib/parse.mouse.ts +232 -0
  179. package/src/lib/paste.ts +16 -0
  180. package/src/lib/queue.ts +65 -0
  181. package/src/lib/renderable.validations.test.ts +87 -0
  182. package/src/lib/renderable.validations.ts +83 -0
  183. package/src/lib/scroll-acceleration.ts +98 -0
  184. package/src/lib/selection.ts +240 -0
  185. package/src/lib/singleton.ts +28 -0
  186. package/src/lib/stdin-parser.test.ts +2290 -0
  187. package/src/lib/stdin-parser.ts +1810 -0
  188. package/src/lib/styled-text.ts +178 -0
  189. package/src/lib/terminal-capability-detection.test.ts +202 -0
  190. package/src/lib/terminal-capability-detection.ts +79 -0
  191. package/src/lib/terminal-palette.test.ts +878 -0
  192. package/src/lib/terminal-palette.ts +383 -0
  193. package/src/lib/tree-sitter/assets/README.md +118 -0
  194. package/src/lib/tree-sitter/assets/update.ts +334 -0
  195. package/src/lib/tree-sitter/assets.d.ts +9 -0
  196. package/src/lib/tree-sitter/cache.test.ts +273 -0
  197. package/src/lib/tree-sitter/client.test.ts +1165 -0
  198. package/src/lib/tree-sitter/client.ts +607 -0
  199. package/src/lib/tree-sitter/default-parsers.ts +86 -0
  200. package/src/lib/tree-sitter/download-utils.ts +148 -0
  201. package/src/lib/tree-sitter/index.ts +28 -0
  202. package/src/lib/tree-sitter/parser.worker.ts +1042 -0
  203. package/src/lib/tree-sitter/parsers-config.ts +81 -0
  204. package/src/lib/tree-sitter/resolve-ft.test.ts +55 -0
  205. package/src/lib/tree-sitter/resolve-ft.ts +189 -0
  206. package/src/lib/tree-sitter/types.ts +82 -0
  207. package/src/lib/tree-sitter-styled-text.test.ts +1253 -0
  208. package/src/lib/tree-sitter-styled-text.ts +306 -0
  209. package/src/lib/validate-dir-name.ts +55 -0
  210. package/src/lib/yoga.options.test.ts +628 -0
  211. package/src/lib/yoga.options.ts +346 -0
  212. package/src/plugins/core-slot.ts +579 -0
  213. package/src/plugins/registry.ts +402 -0
  214. package/src/plugins/types.ts +46 -0
  215. package/src/post/effects.ts +930 -0
  216. package/src/post/filters.ts +489 -0
  217. package/src/post/matrices.ts +288 -0
  218. package/src/renderables/ASCIIFont.ts +219 -0
  219. package/src/renderables/Box.test.ts +205 -0
  220. package/src/renderables/Box.ts +326 -0
  221. package/src/renderables/Code.test.ts +2062 -0
  222. package/src/renderables/Code.ts +357 -0
  223. package/src/renderables/Diff.regression.test.ts +226 -0
  224. package/src/renderables/Diff.test.ts +3101 -0
  225. package/src/renderables/Diff.ts +1211 -0
  226. package/src/renderables/EditBufferRenderable.test.ts +288 -0
  227. package/src/renderables/EditBufferRenderable.ts +1166 -0
  228. package/src/renderables/FrameBuffer.ts +47 -0
  229. package/src/renderables/Input.test.ts +1228 -0
  230. package/src/renderables/Input.ts +247 -0
  231. package/src/renderables/LineNumberRenderable.ts +724 -0
  232. package/src/renderables/Markdown.ts +1393 -0
  233. package/src/renderables/ScrollBar.ts +422 -0
  234. package/src/renderables/ScrollBox.ts +883 -0
  235. package/src/renderables/Select.test.ts +1033 -0
  236. package/src/renderables/Select.ts +524 -0
  237. package/src/renderables/Slider.test.ts +456 -0
  238. package/src/renderables/Slider.ts +342 -0
  239. package/src/renderables/TabSelect.test.ts +197 -0
  240. package/src/renderables/TabSelect.ts +455 -0
  241. package/src/renderables/Text.selection-buffer.test.ts +123 -0
  242. package/src/renderables/Text.test.ts +2660 -0
  243. package/src/renderables/Text.ts +147 -0
  244. package/src/renderables/TextBufferRenderable.ts +518 -0
  245. package/src/renderables/TextNode.test.ts +1058 -0
  246. package/src/renderables/TextNode.ts +325 -0
  247. package/src/renderables/TextTable.test.ts +1421 -0
  248. package/src/renderables/TextTable.ts +1344 -0
  249. package/src/renderables/Textarea.ts +430 -0
  250. package/src/renderables/TimeToFirstDraw.ts +89 -0
  251. package/src/renderables/__snapshots__/Code.test.ts.snap +13 -0
  252. package/src/renderables/__snapshots__/Diff.test.ts.snap +785 -0
  253. package/src/renderables/__snapshots__/Text.test.ts.snap +421 -0
  254. package/src/renderables/__snapshots__/TextTable.test.ts.snap +215 -0
  255. package/src/renderables/__tests__/LineNumberRenderable.scrollbox-simple.test.ts +144 -0
  256. package/src/renderables/__tests__/LineNumberRenderable.scrollbox.test.ts +816 -0
  257. package/src/renderables/__tests__/LineNumberRenderable.test.ts +1865 -0
  258. package/src/renderables/__tests__/LineNumberRenderable.wrapping.test.ts +85 -0
  259. package/src/renderables/__tests__/Markdown.code-colors.test.ts +242 -0
  260. package/src/renderables/__tests__/Markdown.test.ts +2518 -0
  261. package/src/renderables/__tests__/MultiRenderable.selection.test.ts +87 -0
  262. package/src/renderables/__tests__/Textarea.buffer.test.ts +682 -0
  263. package/src/renderables/__tests__/Textarea.destroyed-events.test.ts +675 -0
  264. package/src/renderables/__tests__/Textarea.editing.test.ts +2041 -0
  265. package/src/renderables/__tests__/Textarea.error-handling.test.ts +35 -0
  266. package/src/renderables/__tests__/Textarea.events.test.ts +738 -0
  267. package/src/renderables/__tests__/Textarea.highlights.test.ts +590 -0
  268. package/src/renderables/__tests__/Textarea.keybinding.test.ts +3149 -0
  269. package/src/renderables/__tests__/Textarea.paste.test.ts +357 -0
  270. package/src/renderables/__tests__/Textarea.rendering.test.ts +1866 -0
  271. package/src/renderables/__tests__/Textarea.scroll.test.ts +733 -0
  272. package/src/renderables/__tests__/Textarea.selection.test.ts +1590 -0
  273. package/src/renderables/__tests__/Textarea.stress.test.ts +670 -0
  274. package/src/renderables/__tests__/Textarea.undo-redo.test.ts +383 -0
  275. package/src/renderables/__tests__/Textarea.visual-lines.test.ts +310 -0
  276. package/src/renderables/__tests__/__snapshots__/LineNumberRenderable.code.test.ts.snap +221 -0
  277. package/src/renderables/__tests__/__snapshots__/LineNumberRenderable.scrollbox-simple.test.ts.snap +89 -0
  278. package/src/renderables/__tests__/__snapshots__/LineNumberRenderable.scrollbox.test.ts.snap +457 -0
  279. package/src/renderables/__tests__/__snapshots__/LineNumberRenderable.test.ts.snap +158 -0
  280. package/src/renderables/__tests__/__snapshots__/Textarea.rendering.test.ts.snap +387 -0
  281. package/src/renderables/__tests__/markdown-parser.test.ts +217 -0
  282. package/src/renderables/__tests__/renderable-test-utils.ts +60 -0
  283. package/src/renderables/composition/README.md +8 -0
  284. package/src/renderables/composition/VRenderable.ts +32 -0
  285. package/src/renderables/composition/constructs.ts +127 -0
  286. package/src/renderables/composition/vnode.ts +289 -0
  287. package/src/renderables/index.ts +23 -0
  288. package/src/renderables/markdown-parser.ts +66 -0
  289. package/src/renderer.ts +2681 -0
  290. package/src/runtime-plugin-support.ts +39 -0
  291. package/src/runtime-plugin.ts +615 -0
  292. package/src/syntax-style.test.ts +841 -0
  293. package/src/syntax-style.ts +257 -0
  294. package/src/testing/README.md +210 -0
  295. package/src/testing/capture-spans.test.ts +194 -0
  296. package/src/testing/integration.test.ts +276 -0
  297. package/src/testing/manual-clock.ts +117 -0
  298. package/src/testing/mock-keys.test.ts +1378 -0
  299. package/src/testing/mock-keys.ts +457 -0
  300. package/src/testing/mock-mouse.test.ts +218 -0
  301. package/src/testing/mock-mouse.ts +247 -0
  302. package/src/testing/mock-tree-sitter-client.ts +73 -0
  303. package/src/testing/spy.ts +13 -0
  304. package/src/testing/test-recorder.test.ts +415 -0
  305. package/src/testing/test-recorder.ts +145 -0
  306. package/src/testing/test-renderer.ts +132 -0
  307. package/src/testing.ts +7 -0
  308. package/src/tests/__snapshots__/absolute-positioning.snapshot.test.ts.snap +481 -0
  309. package/src/tests/__snapshots__/renderable.snapshot.test.ts.snap +19 -0
  310. package/src/tests/__snapshots__/scrollbox.test.ts.snap +29 -0
  311. package/src/tests/absolute-positioning.snapshot.test.ts +638 -0
  312. package/src/tests/allocator-stats.test.ts +38 -0
  313. package/src/tests/destroy-during-render.test.ts +200 -0
  314. package/src/tests/destroy-on-exit.fixture.ts +36 -0
  315. package/src/tests/destroy-on-exit.test.ts +41 -0
  316. package/src/tests/hover-cursor.test.ts +98 -0
  317. package/src/tests/native-span-feed-async.test.ts +173 -0
  318. package/src/tests/native-span-feed-close.test.ts +120 -0
  319. package/src/tests/native-span-feed-coverage.test.ts +227 -0
  320. package/src/tests/native-span-feed-edge-cases.test.ts +352 -0
  321. package/src/tests/native-span-feed-use-after-free.test.ts +45 -0
  322. package/src/tests/opacity.test.ts +123 -0
  323. package/src/tests/renderable.snapshot.test.ts +524 -0
  324. package/src/tests/renderable.test.ts +1281 -0
  325. package/src/tests/renderer.clock.test.ts +158 -0
  326. package/src/tests/renderer.console-startup.test.ts +185 -0
  327. package/src/tests/renderer.control.test.ts +425 -0
  328. package/src/tests/renderer.core-slot-binding.test.ts +952 -0
  329. package/src/tests/renderer.cursor.test.ts +26 -0
  330. package/src/tests/renderer.destroy-during-render.test.ts +147 -0
  331. package/src/tests/renderer.focus-restore.test.ts +257 -0
  332. package/src/tests/renderer.focus.test.ts +294 -0
  333. package/src/tests/renderer.idle.test.ts +219 -0
  334. package/src/tests/renderer.input.test.ts +2237 -0
  335. package/src/tests/renderer.kitty-flags.test.ts +195 -0
  336. package/src/tests/renderer.mouse.test.ts +1274 -0
  337. package/src/tests/renderer.palette.test.ts +629 -0
  338. package/src/tests/renderer.selection.test.ts +49 -0
  339. package/src/tests/renderer.slot-registry.test.ts +684 -0
  340. package/src/tests/renderer.useMouse.test.ts +47 -0
  341. package/src/tests/runtime-plugin-node-modules-cycle.fixture.ts +76 -0
  342. package/src/tests/runtime-plugin-node-modules-mjs.fixture.ts +43 -0
  343. package/src/tests/runtime-plugin-node-modules-no-bare-rewrite.fixture.ts +67 -0
  344. package/src/tests/runtime-plugin-node-modules-package-type-cache.fixture.ts +72 -0
  345. package/src/tests/runtime-plugin-node-modules-runtime-specifier.fixture.ts +44 -0
  346. package/src/tests/runtime-plugin-node-modules-scoped-package-bare-rewrite.fixture.ts +85 -0
  347. package/src/tests/runtime-plugin-path-alias.fixture.ts +43 -0
  348. package/src/tests/runtime-plugin-resolve-roots.fixture.ts +65 -0
  349. package/src/tests/runtime-plugin-support.fixture.ts +11 -0
  350. package/src/tests/runtime-plugin-support.test.ts +19 -0
  351. package/src/tests/runtime-plugin-windows-file-url.fixture.ts +30 -0
  352. package/src/tests/runtime-plugin.fixture.ts +40 -0
  353. package/src/tests/runtime-plugin.test.ts +354 -0
  354. package/src/tests/scrollbox-culling-bug.test.ts +114 -0
  355. package/src/tests/scrollbox-hitgrid-resize.test.ts +136 -0
  356. package/src/tests/scrollbox-hitgrid.test.ts +909 -0
  357. package/src/tests/scrollbox.test.ts +1530 -0
  358. package/src/tests/wrap-resize-perf.test.ts +276 -0
  359. package/src/tests/yoga-setters.test.ts +921 -0
  360. package/src/text-buffer-view.test.ts +705 -0
  361. package/src/text-buffer-view.ts +189 -0
  362. package/src/text-buffer.test.ts +347 -0
  363. package/src/text-buffer.ts +250 -0
  364. package/src/types.ts +161 -0
  365. package/src/utils.ts +88 -0
  366. package/src/zig/ansi.zig +268 -0
  367. package/src/zig/bench/README.md +50 -0
  368. package/src/zig/bench/buffer-draw-text-buffer_bench.zig +887 -0
  369. package/src/zig/bench/edit-buffer_bench.zig +476 -0
  370. package/src/zig/bench/native-span-feed_bench.zig +100 -0
  371. package/src/zig/bench/rope-markers_bench.zig +713 -0
  372. package/src/zig/bench/rope_bench.zig +514 -0
  373. package/src/zig/bench/styled-text_bench.zig +470 -0
  374. package/src/zig/bench/text-buffer-coords_bench.zig +362 -0
  375. package/src/zig/bench/text-buffer-view_bench.zig +459 -0
  376. package/src/zig/bench/text-chunk-graphemes_bench.zig +273 -0
  377. package/src/zig/bench/utf8_bench.zig +799 -0
  378. package/src/zig/bench-utils.zig +431 -0
  379. package/src/zig/bench.zig +217 -0
  380. package/src/zig/buffer-methods.zig +211 -0
  381. package/src/zig/buffer.zig +2281 -0
  382. package/src/zig/build.zig +289 -0
  383. package/src/zig/build.zig.zon +16 -0
  384. package/src/zig/edit-buffer.zig +825 -0
  385. package/src/zig/editor-view.zig +802 -0
  386. package/src/zig/event-bus.zig +13 -0
  387. package/src/zig/event-emitter.zig +65 -0
  388. package/src/zig/file-logger.zig +92 -0
  389. package/src/zig/grapheme.zig +599 -0
  390. package/src/zig/lib.zig +1854 -0
  391. package/src/zig/link.zig +333 -0
  392. package/src/zig/logger.zig +43 -0
  393. package/src/zig/mem-registry.zig +125 -0
  394. package/src/zig/native-span-feed-bench-lib.zig +7 -0
  395. package/src/zig/native-span-feed.zig +708 -0
  396. package/src/zig/renderer.zig +1393 -0
  397. package/src/zig/rope.zig +1220 -0
  398. package/src/zig/syntax-style.zig +161 -0
  399. package/src/zig/terminal.zig +987 -0
  400. package/src/zig/test.zig +72 -0
  401. package/src/zig/tests/README.md +18 -0
  402. package/src/zig/tests/buffer-methods_test.zig +1109 -0
  403. package/src/zig/tests/buffer_test.zig +2557 -0
  404. package/src/zig/tests/edit-buffer-history_test.zig +271 -0
  405. package/src/zig/tests/edit-buffer_test.zig +1689 -0
  406. package/src/zig/tests/editor-view_test.zig +3299 -0
  407. package/src/zig/tests/event-emitter_test.zig +249 -0
  408. package/src/zig/tests/grapheme_test.zig +1304 -0
  409. package/src/zig/tests/link_test.zig +190 -0
  410. package/src/zig/tests/mem-registry_test.zig +473 -0
  411. package/src/zig/tests/memory_leak_regression_test.zig +159 -0
  412. package/src/zig/tests/native-span-feed_test.zig +1264 -0
  413. package/src/zig/tests/renderer_test.zig +1017 -0
  414. package/src/zig/tests/rope-nested_test.zig +712 -0
  415. package/src/zig/tests/rope_fuzz_test.zig +238 -0
  416. package/src/zig/tests/rope_test.zig +2362 -0
  417. package/src/zig/tests/segment-merge.test.zig +148 -0
  418. package/src/zig/tests/syntax-style_test.zig +557 -0
  419. package/src/zig/tests/terminal_test.zig +754 -0
  420. package/src/zig/tests/text-buffer-drawing_test.zig +3237 -0
  421. package/src/zig/tests/text-buffer-highlights_test.zig +666 -0
  422. package/src/zig/tests/text-buffer-iterators_test.zig +776 -0
  423. package/src/zig/tests/text-buffer-segment_test.zig +320 -0
  424. package/src/zig/tests/text-buffer-selection_test.zig +1035 -0
  425. package/src/zig/tests/text-buffer-selection_viewport_test.zig +358 -0
  426. package/src/zig/tests/text-buffer-view_test.zig +3649 -0
  427. package/src/zig/tests/text-buffer_test.zig +2191 -0
  428. package/src/zig/tests/unicode-width-map.zon +3909 -0
  429. package/src/zig/tests/utf8_no_zwj_test.zig +260 -0
  430. package/src/zig/tests/utf8_test.zig +4057 -0
  431. package/src/zig/tests/utf8_wcwidth_cursor_test.zig +267 -0
  432. package/src/zig/tests/utf8_wcwidth_test.zig +357 -0
  433. package/src/zig/tests/word-wrap-editing_test.zig +498 -0
  434. package/src/zig/tests/wrap-cache-perf_test.zig +113 -0
  435. package/src/zig/text-buffer-iterators.zig +499 -0
  436. package/src/zig/text-buffer-segment.zig +404 -0
  437. package/src/zig/text-buffer-view.zig +1371 -0
  438. package/src/zig/text-buffer.zig +1180 -0
  439. package/src/zig/utf8.zig +1948 -0
  440. package/src/zig/utils.zig +9 -0
  441. package/src/zig-structs.ts +261 -0
  442. package/src/zig.ts +3884 -0
  443. package/tsconfig.build.json +24 -0
  444. package/tsconfig.json +27 -0
  445. package/3d/SpriteResourceManager.d.ts +0 -74
  446. package/3d/SpriteUtils.d.ts +0 -13
  447. package/3d/TextureUtils.d.ts +0 -24
  448. package/3d/ThreeRenderable.d.ts +0 -40
  449. package/3d/WGPURenderer.d.ts +0 -61
  450. package/3d/animation/ExplodingSpriteEffect.d.ts +0 -71
  451. package/3d/animation/PhysicsExplodingSpriteEffect.d.ts +0 -76
  452. package/3d/animation/SpriteAnimator.d.ts +0 -124
  453. package/3d/animation/SpriteParticleGenerator.d.ts +0 -62
  454. package/3d/canvas.d.ts +0 -44
  455. package/3d/index.d.ts +0 -12
  456. package/3d/physics/PlanckPhysicsAdapter.d.ts +0 -19
  457. package/3d/physics/RapierPhysicsAdapter.d.ts +0 -19
  458. package/3d/physics/physics-interface.d.ts +0 -27
  459. package/3d.d.ts +0 -2
  460. package/3d.js +0 -34041
  461. package/3d.js.map +0 -155
  462. package/LICENSE +0 -21
  463. package/NativeSpanFeed.d.ts +0 -41
  464. package/Renderable.d.ts +0 -334
  465. package/animation/Timeline.d.ts +0 -126
  466. package/ansi.d.ts +0 -13
  467. package/buffer.d.ts +0 -111
  468. package/console.d.ts +0 -144
  469. package/edit-buffer.d.ts +0 -98
  470. package/editor-view.d.ts +0 -73
  471. package/index-8fks7yv1.js +0 -411
  472. package/index-8fks7yv1.js.map +0 -10
  473. package/index-egy5e2rs.js +0 -12267
  474. package/index-egy5e2rs.js.map +0 -42
  475. package/index-tse8gzh0.js +0 -20614
  476. package/index-tse8gzh0.js.map +0 -67
  477. package/index.d.ts +0 -23
  478. package/index.js +0 -478
  479. package/index.js.map +0 -9
  480. package/lib/KeyHandler.d.ts +0 -61
  481. package/lib/RGBA.d.ts +0 -25
  482. package/lib/ascii.font.d.ts +0 -508
  483. package/lib/border.d.ts +0 -51
  484. package/lib/bunfs.d.ts +0 -7
  485. package/lib/clipboard.d.ts +0 -17
  486. package/lib/clock.d.ts +0 -15
  487. package/lib/data-paths.d.ts +0 -26
  488. package/lib/debounce.d.ts +0 -42
  489. package/lib/detect-links.d.ts +0 -6
  490. package/lib/env.d.ts +0 -42
  491. package/lib/extmarks-history.d.ts +0 -17
  492. package/lib/extmarks.d.ts +0 -89
  493. package/lib/hast-styled-text.d.ts +0 -17
  494. package/lib/index.d.ts +0 -21
  495. package/lib/keymapping.d.ts +0 -25
  496. package/lib/objects-in-viewport.d.ts +0 -24
  497. package/lib/output.capture.d.ts +0 -24
  498. package/lib/parse.keypress-kitty.d.ts +0 -2
  499. package/lib/parse.keypress.d.ts +0 -26
  500. package/lib/parse.mouse.d.ts +0 -30
  501. package/lib/paste.d.ts +0 -7
  502. package/lib/queue.d.ts +0 -15
  503. package/lib/renderable.validations.d.ts +0 -12
  504. package/lib/scroll-acceleration.d.ts +0 -43
  505. package/lib/selection.d.ts +0 -63
  506. package/lib/singleton.d.ts +0 -7
  507. package/lib/stdin-parser.d.ts +0 -87
  508. package/lib/styled-text.d.ts +0 -63
  509. package/lib/terminal-capability-detection.d.ts +0 -30
  510. package/lib/terminal-palette.d.ts +0 -50
  511. package/lib/tree-sitter/assets/update.d.ts +0 -11
  512. package/lib/tree-sitter/client.d.ts +0 -47
  513. package/lib/tree-sitter/default-parsers.d.ts +0 -2
  514. package/lib/tree-sitter/download-utils.d.ts +0 -21
  515. package/lib/tree-sitter/index.d.ts +0 -8
  516. package/lib/tree-sitter/parser.worker.d.ts +0 -1
  517. package/lib/tree-sitter/parsers-config.d.ts +0 -53
  518. package/lib/tree-sitter/resolve-ft.d.ts +0 -5
  519. package/lib/tree-sitter/types.d.ts +0 -82
  520. package/lib/tree-sitter-styled-text.d.ts +0 -14
  521. package/lib/validate-dir-name.d.ts +0 -1
  522. package/lib/yoga.options.d.ts +0 -32
  523. package/parser.worker.js +0 -899
  524. package/parser.worker.js.map +0 -12
  525. package/plugins/core-slot.d.ts +0 -72
  526. package/plugins/registry.d.ts +0 -42
  527. package/plugins/types.d.ts +0 -34
  528. package/post/effects.d.ts +0 -147
  529. package/post/filters.d.ts +0 -65
  530. package/post/matrices.d.ts +0 -20
  531. package/renderables/ASCIIFont.d.ts +0 -52
  532. package/renderables/Box.d.ts +0 -81
  533. package/renderables/Code.d.ts +0 -78
  534. package/renderables/Diff.d.ts +0 -142
  535. package/renderables/EditBufferRenderable.d.ts +0 -237
  536. package/renderables/FrameBuffer.d.ts +0 -16
  537. package/renderables/Input.d.ts +0 -67
  538. package/renderables/LineNumberRenderable.d.ts +0 -78
  539. package/renderables/Markdown.d.ts +0 -185
  540. package/renderables/ScrollBar.d.ts +0 -77
  541. package/renderables/ScrollBox.d.ts +0 -124
  542. package/renderables/Select.d.ts +0 -115
  543. package/renderables/Slider.d.ts +0 -47
  544. package/renderables/TabSelect.d.ts +0 -96
  545. package/renderables/Text.d.ts +0 -36
  546. package/renderables/TextBufferRenderable.d.ts +0 -105
  547. package/renderables/TextNode.d.ts +0 -91
  548. package/renderables/TextTable.d.ts +0 -140
  549. package/renderables/Textarea.d.ts +0 -63
  550. package/renderables/TimeToFirstDraw.d.ts +0 -24
  551. package/renderables/__tests__/renderable-test-utils.d.ts +0 -12
  552. package/renderables/composition/VRenderable.d.ts +0 -16
  553. package/renderables/composition/constructs.d.ts +0 -35
  554. package/renderables/composition/vnode.d.ts +0 -46
  555. package/renderables/index.d.ts +0 -23
  556. package/renderables/markdown-parser.d.ts +0 -10
  557. package/renderer.d.ts +0 -419
  558. package/runtime-plugin-support.d.ts +0 -3
  559. package/runtime-plugin-support.js +0 -29
  560. package/runtime-plugin-support.js.map +0 -10
  561. package/runtime-plugin.d.ts +0 -16
  562. package/runtime-plugin.js +0 -16
  563. package/runtime-plugin.js.map +0 -9
  564. package/syntax-style.d.ts +0 -54
  565. package/testing/manual-clock.d.ts +0 -17
  566. package/testing/mock-keys.d.ts +0 -81
  567. package/testing/mock-mouse.d.ts +0 -38
  568. package/testing/mock-tree-sitter-client.d.ts +0 -23
  569. package/testing/spy.d.ts +0 -7
  570. package/testing/test-recorder.d.ts +0 -61
  571. package/testing/test-renderer.d.ts +0 -23
  572. package/testing.d.ts +0 -6
  573. package/testing.js +0 -697
  574. package/testing.js.map +0 -15
  575. package/text-buffer-view.d.ts +0 -42
  576. package/text-buffer.d.ts +0 -67
  577. package/types.d.ts +0 -139
  578. package/utils.d.ts +0 -14
  579. package/zig-structs.d.ts +0 -155
  580. package/zig.d.ts +0 -353
  581. /package/{assets → src/lib/tree-sitter/assets}/javascript/highlights.scm +0 -0
  582. /package/{assets → src/lib/tree-sitter/assets}/javascript/tree-sitter-javascript.wasm +0 -0
  583. /package/{assets → src/lib/tree-sitter/assets}/markdown/highlights.scm +0 -0
  584. /package/{assets → src/lib/tree-sitter/assets}/markdown/injections.scm +0 -0
  585. /package/{assets → src/lib/tree-sitter/assets}/markdown/tree-sitter-markdown.wasm +0 -0
  586. /package/{assets → src/lib/tree-sitter/assets}/markdown_inline/highlights.scm +0 -0
  587. /package/{assets → src/lib/tree-sitter/assets}/markdown_inline/tree-sitter-markdown_inline.wasm +0 -0
  588. /package/{assets → src/lib/tree-sitter/assets}/typescript/highlights.scm +0 -0
  589. /package/{assets → src/lib/tree-sitter/assets}/typescript/tree-sitter-typescript.wasm +0 -0
  590. /package/{assets → src/lib/tree-sitter/assets}/zig/highlights.scm +0 -0
  591. /package/{assets → src/lib/tree-sitter/assets}/zig/tree-sitter-zig.wasm +0 -0
@@ -0,0 +1,3909 @@
1
+ .{
2
+ .{ .codepoint = "U+0000", .width = 0 },
3
+ .{ .codepoint = "U+0010", .width = 0 },
4
+ .{ .codepoint = "U+0020", .width = 1 },
5
+ .{ .codepoint = "U+0021", .width = 1 },
6
+ .{ .codepoint = "U+0022", .width = 1 },
7
+ .{ .codepoint = "U+0023", .width = 1 },
8
+ .{ .codepoint = "U+0024", .width = 1 },
9
+ .{ .codepoint = "U+0025", .width = 1 },
10
+ .{ .codepoint = "U+0026", .width = 1 },
11
+ .{ .codepoint = "U+0027", .width = 1 },
12
+ .{ .codepoint = "U+0028", .width = 1 },
13
+ .{ .codepoint = "U+0029", .width = 1 },
14
+ .{ .codepoint = "U+002A", .width = 1 },
15
+ .{ .codepoint = "U+002B", .width = 1 },
16
+ .{ .codepoint = "U+002C", .width = 1 },
17
+ .{ .codepoint = "U+002D", .width = 1 },
18
+ .{ .codepoint = "U+002E", .width = 1 },
19
+ .{ .codepoint = "U+002F", .width = 1 },
20
+ .{ .codepoint = "U+0030", .width = 1 },
21
+ .{ .codepoint = "U+0031", .width = 1 },
22
+ .{ .codepoint = "U+0032", .width = 1 },
23
+ .{ .codepoint = "U+0033", .width = 1 },
24
+ .{ .codepoint = "U+0034", .width = 1 },
25
+ .{ .codepoint = "U+0035", .width = 1 },
26
+ .{ .codepoint = "U+0036", .width = 1 },
27
+ .{ .codepoint = "U+0037", .width = 1 },
28
+ .{ .codepoint = "U+0038", .width = 1 },
29
+ .{ .codepoint = "U+0039", .width = 1 },
30
+ .{ .codepoint = "U+003A", .width = 1 },
31
+ .{ .codepoint = "U+003B", .width = 1 },
32
+ .{ .codepoint = "U+003C", .width = 1 },
33
+ .{ .codepoint = "U+003D", .width = 1 },
34
+ .{ .codepoint = "U+003E", .width = 1 },
35
+ .{ .codepoint = "U+003F", .width = 1 },
36
+ .{ .codepoint = "U+0040", .width = 1 },
37
+ .{ .codepoint = "U+0041", .width = 1 },
38
+ .{ .codepoint = "U+0042", .width = 1 },
39
+ .{ .codepoint = "U+0043", .width = 1 },
40
+ .{ .codepoint = "U+0044", .width = 1 },
41
+ .{ .codepoint = "U+0045", .width = 1 },
42
+ .{ .codepoint = "U+0046", .width = 1 },
43
+ .{ .codepoint = "U+0047", .width = 1 },
44
+ .{ .codepoint = "U+0048", .width = 1 },
45
+ .{ .codepoint = "U+0049", .width = 1 },
46
+ .{ .codepoint = "U+004A", .width = 1 },
47
+ .{ .codepoint = "U+004B", .width = 1 },
48
+ .{ .codepoint = "U+004C", .width = 1 },
49
+ .{ .codepoint = "U+004D", .width = 1 },
50
+ .{ .codepoint = "U+004E", .width = 1 },
51
+ .{ .codepoint = "U+004F", .width = 1 },
52
+ .{ .codepoint = "U+0050", .width = 1 },
53
+ .{ .codepoint = "U+0051", .width = 1 },
54
+ .{ .codepoint = "U+0052", .width = 1 },
55
+ .{ .codepoint = "U+0053", .width = 1 },
56
+ .{ .codepoint = "U+0054", .width = 1 },
57
+ .{ .codepoint = "U+0055", .width = 1 },
58
+ .{ .codepoint = "U+0056", .width = 1 },
59
+ .{ .codepoint = "U+0057", .width = 1 },
60
+ .{ .codepoint = "U+0058", .width = 1 },
61
+ .{ .codepoint = "U+0059", .width = 1 },
62
+ .{ .codepoint = "U+005A", .width = 1 },
63
+ .{ .codepoint = "U+005B", .width = 1 },
64
+ .{ .codepoint = "U+005C", .width = 1 },
65
+ .{ .codepoint = "U+005D", .width = 1 },
66
+ .{ .codepoint = "U+005E", .width = 1 },
67
+ .{ .codepoint = "U+005F", .width = 1 },
68
+ .{ .codepoint = "U+0060", .width = 1 },
69
+ .{ .codepoint = "U+0061", .width = 1 },
70
+ .{ .codepoint = "U+0062", .width = 1 },
71
+ .{ .codepoint = "U+0063", .width = 1 },
72
+ .{ .codepoint = "U+0064", .width = 1 },
73
+ .{ .codepoint = "U+0065", .width = 1 },
74
+ .{ .codepoint = "U+0066", .width = 1 },
75
+ .{ .codepoint = "U+0067", .width = 1 },
76
+ .{ .codepoint = "U+0068", .width = 1 },
77
+ .{ .codepoint = "U+0069", .width = 1 },
78
+ .{ .codepoint = "U+006A", .width = 1 },
79
+ .{ .codepoint = "U+006B", .width = 1 },
80
+ .{ .codepoint = "U+006C", .width = 1 },
81
+ .{ .codepoint = "U+006D", .width = 1 },
82
+ .{ .codepoint = "U+006E", .width = 1 },
83
+ .{ .codepoint = "U+006F", .width = 1 },
84
+ .{ .codepoint = "U+0070", .width = 1 },
85
+ .{ .codepoint = "U+0071", .width = 1 },
86
+ .{ .codepoint = "U+0072", .width = 1 },
87
+ .{ .codepoint = "U+0073", .width = 1 },
88
+ .{ .codepoint = "U+0074", .width = 1 },
89
+ .{ .codepoint = "U+0075", .width = 1 },
90
+ .{ .codepoint = "U+0076", .width = 1 },
91
+ .{ .codepoint = "U+0077", .width = 1 },
92
+ .{ .codepoint = "U+0078", .width = 1 },
93
+ .{ .codepoint = "U+0079", .width = 1 },
94
+ .{ .codepoint = "U+007A", .width = 1 },
95
+ .{ .codepoint = "U+007B", .width = 1 },
96
+ .{ .codepoint = "U+007C", .width = 1 },
97
+ .{ .codepoint = "U+007D", .width = 1 },
98
+ .{ .codepoint = "U+007E", .width = 1 },
99
+ .{ .codepoint = "U+0080", .width = 0 },
100
+ .{ .codepoint = "U+0090", .width = 0 },
101
+ .{ .codepoint = "U+00A0", .width = 1 },
102
+ .{ .codepoint = "U+00A1", .width = 1 },
103
+ .{ .codepoint = "U+00A2", .width = 1 },
104
+ .{ .codepoint = "U+00A3", .width = 1 },
105
+ .{ .codepoint = "U+00A4", .width = 1 },
106
+ .{ .codepoint = "U+00A5", .width = 1 },
107
+ .{ .codepoint = "U+00A6", .width = 1 },
108
+ .{ .codepoint = "U+00A7", .width = 1 },
109
+ .{ .codepoint = "U+00A8", .width = 1 },
110
+ .{ .codepoint = "U+00A9", .width = 1 },
111
+ .{ .codepoint = "U+00AA", .width = 1 },
112
+ .{ .codepoint = "U+00AB", .width = 1 },
113
+ .{ .codepoint = "U+00AC", .width = 1 },
114
+ .{ .codepoint = "U+00AD", .width = 1 },
115
+ .{ .codepoint = "U+00AE", .width = 1 },
116
+ .{ .codepoint = "U+00AF", .width = 1 },
117
+ .{ .codepoint = "U+00B0", .width = 1 },
118
+ .{ .codepoint = "U+00B1", .width = 1 },
119
+ .{ .codepoint = "U+00B2", .width = 1 },
120
+ .{ .codepoint = "U+00B3", .width = 1 },
121
+ .{ .codepoint = "U+00B4", .width = 1 },
122
+ .{ .codepoint = "U+00B5", .width = 1 },
123
+ .{ .codepoint = "U+00B6", .width = 1 },
124
+ .{ .codepoint = "U+00B7", .width = 1 },
125
+ .{ .codepoint = "U+00B8", .width = 1 },
126
+ .{ .codepoint = "U+00B9", .width = 1 },
127
+ .{ .codepoint = "U+00BA", .width = 1 },
128
+ .{ .codepoint = "U+00BB", .width = 1 },
129
+ .{ .codepoint = "U+00BC", .width = 1 },
130
+ .{ .codepoint = "U+00BD", .width = 1 },
131
+ .{ .codepoint = "U+00BE", .width = 1 },
132
+ .{ .codepoint = "U+00BF", .width = 1 },
133
+ .{ .codepoint = "U+00C0", .width = 1 },
134
+ .{ .codepoint = "U+00C1", .width = 1 },
135
+ .{ .codepoint = "U+00C2", .width = 1 },
136
+ .{ .codepoint = "U+00C3", .width = 1 },
137
+ .{ .codepoint = "U+00C4", .width = 1 },
138
+ .{ .codepoint = "U+00C5", .width = 1 },
139
+ .{ .codepoint = "U+00C6", .width = 1 },
140
+ .{ .codepoint = "U+00C7", .width = 1 },
141
+ .{ .codepoint = "U+00C8", .width = 1 },
142
+ .{ .codepoint = "U+00C9", .width = 1 },
143
+ .{ .codepoint = "U+00CA", .width = 1 },
144
+ .{ .codepoint = "U+00CB", .width = 1 },
145
+ .{ .codepoint = "U+00CC", .width = 1 },
146
+ .{ .codepoint = "U+00CD", .width = 1 },
147
+ .{ .codepoint = "U+00CE", .width = 1 },
148
+ .{ .codepoint = "U+00CF", .width = 1 },
149
+ .{ .codepoint = "U+00D0", .width = 1 },
150
+ .{ .codepoint = "U+00D1", .width = 1 },
151
+ .{ .codepoint = "U+00D2", .width = 1 },
152
+ .{ .codepoint = "U+00D3", .width = 1 },
153
+ .{ .codepoint = "U+00D4", .width = 1 },
154
+ .{ .codepoint = "U+00D5", .width = 1 },
155
+ .{ .codepoint = "U+00D6", .width = 1 },
156
+ .{ .codepoint = "U+00D7", .width = 1 },
157
+ .{ .codepoint = "U+00D8", .width = 1 },
158
+ .{ .codepoint = "U+00D9", .width = 1 },
159
+ .{ .codepoint = "U+00DA", .width = 1 },
160
+ .{ .codepoint = "U+00DB", .width = 1 },
161
+ .{ .codepoint = "U+00DC", .width = 1 },
162
+ .{ .codepoint = "U+00DD", .width = 1 },
163
+ .{ .codepoint = "U+00DE", .width = 1 },
164
+ .{ .codepoint = "U+00DF", .width = 1 },
165
+ .{ .codepoint = "U+00E0", .width = 1 },
166
+ .{ .codepoint = "U+00E1", .width = 1 },
167
+ .{ .codepoint = "U+00E2", .width = 1 },
168
+ .{ .codepoint = "U+00E3", .width = 1 },
169
+ .{ .codepoint = "U+00E4", .width = 1 },
170
+ .{ .codepoint = "U+00E5", .width = 1 },
171
+ .{ .codepoint = "U+00E6", .width = 1 },
172
+ .{ .codepoint = "U+00E7", .width = 1 },
173
+ .{ .codepoint = "U+00E8", .width = 1 },
174
+ .{ .codepoint = "U+00E9", .width = 1 },
175
+ .{ .codepoint = "U+00EA", .width = 1 },
176
+ .{ .codepoint = "U+00EB", .width = 1 },
177
+ .{ .codepoint = "U+00EC", .width = 1 },
178
+ .{ .codepoint = "U+00ED", .width = 1 },
179
+ .{ .codepoint = "U+00EE", .width = 1 },
180
+ .{ .codepoint = "U+00EF", .width = 1 },
181
+ .{ .codepoint = "U+00F0", .width = 1 },
182
+ .{ .codepoint = "U+00F1", .width = 1 },
183
+ .{ .codepoint = "U+00F2", .width = 1 },
184
+ .{ .codepoint = "U+00F3", .width = 1 },
185
+ .{ .codepoint = "U+00F4", .width = 1 },
186
+ .{ .codepoint = "U+00F5", .width = 1 },
187
+ .{ .codepoint = "U+00F6", .width = 1 },
188
+ .{ .codepoint = "U+00F7", .width = 1 },
189
+ .{ .codepoint = "U+00F8", .width = 1 },
190
+ .{ .codepoint = "U+00F9", .width = 1 },
191
+ .{ .codepoint = "U+00FA", .width = 1 },
192
+ .{ .codepoint = "U+00FB", .width = 1 },
193
+ .{ .codepoint = "U+00FC", .width = 1 },
194
+ .{ .codepoint = "U+00FD", .width = 1 },
195
+ .{ .codepoint = "U+00FE", .width = 1 },
196
+ .{ .codepoint = "U+00FF", .width = 1 },
197
+ .{ .codepoint = "U+0100", .width = 1 },
198
+ .{ .codepoint = "U+0101", .width = 1 },
199
+ .{ .codepoint = "U+0102", .width = 1 },
200
+ .{ .codepoint = "U+0103", .width = 1 },
201
+ .{ .codepoint = "U+0104", .width = 1 },
202
+ .{ .codepoint = "U+0105", .width = 1 },
203
+ .{ .codepoint = "U+0106", .width = 1 },
204
+ .{ .codepoint = "U+0107", .width = 1 },
205
+ .{ .codepoint = "U+0108", .width = 1 },
206
+ .{ .codepoint = "U+0109", .width = 1 },
207
+ .{ .codepoint = "U+010A", .width = 1 },
208
+ .{ .codepoint = "U+010B", .width = 1 },
209
+ .{ .codepoint = "U+010C", .width = 1 },
210
+ .{ .codepoint = "U+010D", .width = 1 },
211
+ .{ .codepoint = "U+010E", .width = 1 },
212
+ .{ .codepoint = "U+010F", .width = 1 },
213
+ .{ .codepoint = "U+0110", .width = 1 },
214
+ .{ .codepoint = "U+0111", .width = 1 },
215
+ .{ .codepoint = "U+0112", .width = 1 },
216
+ .{ .codepoint = "U+0113", .width = 1 },
217
+ .{ .codepoint = "U+0114", .width = 1 },
218
+ .{ .codepoint = "U+0115", .width = 1 },
219
+ .{ .codepoint = "U+0116", .width = 1 },
220
+ .{ .codepoint = "U+0117", .width = 1 },
221
+ .{ .codepoint = "U+0118", .width = 1 },
222
+ .{ .codepoint = "U+0119", .width = 1 },
223
+ .{ .codepoint = "U+011A", .width = 1 },
224
+ .{ .codepoint = "U+011B", .width = 1 },
225
+ .{ .codepoint = "U+011C", .width = 1 },
226
+ .{ .codepoint = "U+011D", .width = 1 },
227
+ .{ .codepoint = "U+011E", .width = 1 },
228
+ .{ .codepoint = "U+011F", .width = 1 },
229
+ .{ .codepoint = "U+0120", .width = 1 },
230
+ .{ .codepoint = "U+0121", .width = 1 },
231
+ .{ .codepoint = "U+0122", .width = 1 },
232
+ .{ .codepoint = "U+0123", .width = 1 },
233
+ .{ .codepoint = "U+0124", .width = 1 },
234
+ .{ .codepoint = "U+0125", .width = 1 },
235
+ .{ .codepoint = "U+0126", .width = 1 },
236
+ .{ .codepoint = "U+0127", .width = 1 },
237
+ .{ .codepoint = "U+0128", .width = 1 },
238
+ .{ .codepoint = "U+0129", .width = 1 },
239
+ .{ .codepoint = "U+012A", .width = 1 },
240
+ .{ .codepoint = "U+012B", .width = 1 },
241
+ .{ .codepoint = "U+012C", .width = 1 },
242
+ .{ .codepoint = "U+012D", .width = 1 },
243
+ .{ .codepoint = "U+012E", .width = 1 },
244
+ .{ .codepoint = "U+012F", .width = 1 },
245
+ .{ .codepoint = "U+0130", .width = 1 },
246
+ .{ .codepoint = "U+0131", .width = 1 },
247
+ .{ .codepoint = "U+0132", .width = 1 },
248
+ .{ .codepoint = "U+0133", .width = 1 },
249
+ .{ .codepoint = "U+0134", .width = 1 },
250
+ .{ .codepoint = "U+0135", .width = 1 },
251
+ .{ .codepoint = "U+0136", .width = 1 },
252
+ .{ .codepoint = "U+0137", .width = 1 },
253
+ .{ .codepoint = "U+0138", .width = 1 },
254
+ .{ .codepoint = "U+0139", .width = 1 },
255
+ .{ .codepoint = "U+013A", .width = 1 },
256
+ .{ .codepoint = "U+013B", .width = 1 },
257
+ .{ .codepoint = "U+013C", .width = 1 },
258
+ .{ .codepoint = "U+013D", .width = 1 },
259
+ .{ .codepoint = "U+013E", .width = 1 },
260
+ .{ .codepoint = "U+013F", .width = 1 },
261
+ .{ .codepoint = "U+0140", .width = 1 },
262
+ .{ .codepoint = "U+0141", .width = 1 },
263
+ .{ .codepoint = "U+0142", .width = 1 },
264
+ .{ .codepoint = "U+0143", .width = 1 },
265
+ .{ .codepoint = "U+0144", .width = 1 },
266
+ .{ .codepoint = "U+0145", .width = 1 },
267
+ .{ .codepoint = "U+0146", .width = 1 },
268
+ .{ .codepoint = "U+0147", .width = 1 },
269
+ .{ .codepoint = "U+0148", .width = 1 },
270
+ .{ .codepoint = "U+0149", .width = 1 },
271
+ .{ .codepoint = "U+014A", .width = 1 },
272
+ .{ .codepoint = "U+014B", .width = 1 },
273
+ .{ .codepoint = "U+014C", .width = 1 },
274
+ .{ .codepoint = "U+014D", .width = 1 },
275
+ .{ .codepoint = "U+014E", .width = 1 },
276
+ .{ .codepoint = "U+014F", .width = 1 },
277
+ .{ .codepoint = "U+0150", .width = 1 },
278
+ .{ .codepoint = "U+0151", .width = 1 },
279
+ .{ .codepoint = "U+0152", .width = 1 },
280
+ .{ .codepoint = "U+0153", .width = 1 },
281
+ .{ .codepoint = "U+0154", .width = 1 },
282
+ .{ .codepoint = "U+0155", .width = 1 },
283
+ .{ .codepoint = "U+0156", .width = 1 },
284
+ .{ .codepoint = "U+0157", .width = 1 },
285
+ .{ .codepoint = "U+0158", .width = 1 },
286
+ .{ .codepoint = "U+0159", .width = 1 },
287
+ .{ .codepoint = "U+015A", .width = 1 },
288
+ .{ .codepoint = "U+015B", .width = 1 },
289
+ .{ .codepoint = "U+015C", .width = 1 },
290
+ .{ .codepoint = "U+015D", .width = 1 },
291
+ .{ .codepoint = "U+015E", .width = 1 },
292
+ .{ .codepoint = "U+015F", .width = 1 },
293
+ .{ .codepoint = "U+0160", .width = 1 },
294
+ .{ .codepoint = "U+0161", .width = 1 },
295
+ .{ .codepoint = "U+0162", .width = 1 },
296
+ .{ .codepoint = "U+0163", .width = 1 },
297
+ .{ .codepoint = "U+0164", .width = 1 },
298
+ .{ .codepoint = "U+0165", .width = 1 },
299
+ .{ .codepoint = "U+0166", .width = 1 },
300
+ .{ .codepoint = "U+0167", .width = 1 },
301
+ .{ .codepoint = "U+0168", .width = 1 },
302
+ .{ .codepoint = "U+0169", .width = 1 },
303
+ .{ .codepoint = "U+016A", .width = 1 },
304
+ .{ .codepoint = "U+016B", .width = 1 },
305
+ .{ .codepoint = "U+016C", .width = 1 },
306
+ .{ .codepoint = "U+016D", .width = 1 },
307
+ .{ .codepoint = "U+016E", .width = 1 },
308
+ .{ .codepoint = "U+016F", .width = 1 },
309
+ .{ .codepoint = "U+0170", .width = 1 },
310
+ .{ .codepoint = "U+0171", .width = 1 },
311
+ .{ .codepoint = "U+0172", .width = 1 },
312
+ .{ .codepoint = "U+0173", .width = 1 },
313
+ .{ .codepoint = "U+0174", .width = 1 },
314
+ .{ .codepoint = "U+0175", .width = 1 },
315
+ .{ .codepoint = "U+0176", .width = 1 },
316
+ .{ .codepoint = "U+0177", .width = 1 },
317
+ .{ .codepoint = "U+0178", .width = 1 },
318
+ .{ .codepoint = "U+0179", .width = 1 },
319
+ .{ .codepoint = "U+017A", .width = 1 },
320
+ .{ .codepoint = "U+017B", .width = 1 },
321
+ .{ .codepoint = "U+017C", .width = 1 },
322
+ .{ .codepoint = "U+017D", .width = 1 },
323
+ .{ .codepoint = "U+017E", .width = 1 },
324
+ .{ .codepoint = "U+017F", .width = 1 },
325
+ .{ .codepoint = "U+0180", .width = 1 },
326
+ .{ .codepoint = "U+0181", .width = 1 },
327
+ .{ .codepoint = "U+0182", .width = 1 },
328
+ .{ .codepoint = "U+0183", .width = 1 },
329
+ .{ .codepoint = "U+0184", .width = 1 },
330
+ .{ .codepoint = "U+0185", .width = 1 },
331
+ .{ .codepoint = "U+0186", .width = 1 },
332
+ .{ .codepoint = "U+0187", .width = 1 },
333
+ .{ .codepoint = "U+0188", .width = 1 },
334
+ .{ .codepoint = "U+0189", .width = 1 },
335
+ .{ .codepoint = "U+018A", .width = 1 },
336
+ .{ .codepoint = "U+018B", .width = 1 },
337
+ .{ .codepoint = "U+018C", .width = 1 },
338
+ .{ .codepoint = "U+018D", .width = 1 },
339
+ .{ .codepoint = "U+018E", .width = 1 },
340
+ .{ .codepoint = "U+018F", .width = 1 },
341
+ .{ .codepoint = "U+0190", .width = 1 },
342
+ .{ .codepoint = "U+0191", .width = 1 },
343
+ .{ .codepoint = "U+0192", .width = 1 },
344
+ .{ .codepoint = "U+0193", .width = 1 },
345
+ .{ .codepoint = "U+0194", .width = 1 },
346
+ .{ .codepoint = "U+0195", .width = 1 },
347
+ .{ .codepoint = "U+0196", .width = 1 },
348
+ .{ .codepoint = "U+0197", .width = 1 },
349
+ .{ .codepoint = "U+0198", .width = 1 },
350
+ .{ .codepoint = "U+0199", .width = 1 },
351
+ .{ .codepoint = "U+019A", .width = 1 },
352
+ .{ .codepoint = "U+019B", .width = 1 },
353
+ .{ .codepoint = "U+019C", .width = 1 },
354
+ .{ .codepoint = "U+019D", .width = 1 },
355
+ .{ .codepoint = "U+019E", .width = 1 },
356
+ .{ .codepoint = "U+019F", .width = 1 },
357
+ .{ .codepoint = "U+01A0", .width = 1 },
358
+ .{ .codepoint = "U+01A1", .width = 1 },
359
+ .{ .codepoint = "U+01A2", .width = 1 },
360
+ .{ .codepoint = "U+01A3", .width = 1 },
361
+ .{ .codepoint = "U+01A4", .width = 1 },
362
+ .{ .codepoint = "U+01A5", .width = 1 },
363
+ .{ .codepoint = "U+01A6", .width = 1 },
364
+ .{ .codepoint = "U+01A7", .width = 1 },
365
+ .{ .codepoint = "U+01A8", .width = 1 },
366
+ .{ .codepoint = "U+01A9", .width = 1 },
367
+ .{ .codepoint = "U+01AA", .width = 1 },
368
+ .{ .codepoint = "U+01AB", .width = 1 },
369
+ .{ .codepoint = "U+01AC", .width = 1 },
370
+ .{ .codepoint = "U+01AD", .width = 1 },
371
+ .{ .codepoint = "U+01AE", .width = 1 },
372
+ .{ .codepoint = "U+01AF", .width = 1 },
373
+ .{ .codepoint = "U+01B0", .width = 1 },
374
+ .{ .codepoint = "U+01B1", .width = 1 },
375
+ .{ .codepoint = "U+01B2", .width = 1 },
376
+ .{ .codepoint = "U+01B3", .width = 1 },
377
+ .{ .codepoint = "U+01B4", .width = 1 },
378
+ .{ .codepoint = "U+01B5", .width = 1 },
379
+ .{ .codepoint = "U+01B6", .width = 1 },
380
+ .{ .codepoint = "U+01B7", .width = 1 },
381
+ .{ .codepoint = "U+01B8", .width = 1 },
382
+ .{ .codepoint = "U+01B9", .width = 1 },
383
+ .{ .codepoint = "U+01BA", .width = 1 },
384
+ .{ .codepoint = "U+01BB", .width = 1 },
385
+ .{ .codepoint = "U+01BC", .width = 1 },
386
+ .{ .codepoint = "U+01BD", .width = 1 },
387
+ .{ .codepoint = "U+01BE", .width = 1 },
388
+ .{ .codepoint = "U+01BF", .width = 1 },
389
+ .{ .codepoint = "U+01C0", .width = 1 },
390
+ .{ .codepoint = "U+01C1", .width = 1 },
391
+ .{ .codepoint = "U+01C2", .width = 1 },
392
+ .{ .codepoint = "U+01C3", .width = 1 },
393
+ .{ .codepoint = "U+01C4", .width = 1 },
394
+ .{ .codepoint = "U+01C5", .width = 1 },
395
+ .{ .codepoint = "U+01C6", .width = 1 },
396
+ .{ .codepoint = "U+01C7", .width = 1 },
397
+ .{ .codepoint = "U+01C8", .width = 1 },
398
+ .{ .codepoint = "U+01C9", .width = 1 },
399
+ .{ .codepoint = "U+01CA", .width = 1 },
400
+ .{ .codepoint = "U+01CB", .width = 1 },
401
+ .{ .codepoint = "U+01CC", .width = 1 },
402
+ .{ .codepoint = "U+01CD", .width = 1 },
403
+ .{ .codepoint = "U+01CE", .width = 1 },
404
+ .{ .codepoint = "U+01CF", .width = 1 },
405
+ .{ .codepoint = "U+01D0", .width = 1 },
406
+ .{ .codepoint = "U+01D1", .width = 1 },
407
+ .{ .codepoint = "U+01D2", .width = 1 },
408
+ .{ .codepoint = "U+01D3", .width = 1 },
409
+ .{ .codepoint = "U+01D4", .width = 1 },
410
+ .{ .codepoint = "U+01D5", .width = 1 },
411
+ .{ .codepoint = "U+01D6", .width = 1 },
412
+ .{ .codepoint = "U+01D7", .width = 1 },
413
+ .{ .codepoint = "U+01D8", .width = 1 },
414
+ .{ .codepoint = "U+01D9", .width = 1 },
415
+ .{ .codepoint = "U+01DA", .width = 1 },
416
+ .{ .codepoint = "U+01DB", .width = 1 },
417
+ .{ .codepoint = "U+01DC", .width = 1 },
418
+ .{ .codepoint = "U+01DD", .width = 1 },
419
+ .{ .codepoint = "U+01DE", .width = 1 },
420
+ .{ .codepoint = "U+01DF", .width = 1 },
421
+ .{ .codepoint = "U+01E0", .width = 1 },
422
+ .{ .codepoint = "U+01E1", .width = 1 },
423
+ .{ .codepoint = "U+01E2", .width = 1 },
424
+ .{ .codepoint = "U+01E3", .width = 1 },
425
+ .{ .codepoint = "U+01E4", .width = 1 },
426
+ .{ .codepoint = "U+01E5", .width = 1 },
427
+ .{ .codepoint = "U+01E6", .width = 1 },
428
+ .{ .codepoint = "U+01E7", .width = 1 },
429
+ .{ .codepoint = "U+01E8", .width = 1 },
430
+ .{ .codepoint = "U+01E9", .width = 1 },
431
+ .{ .codepoint = "U+01EA", .width = 1 },
432
+ .{ .codepoint = "U+01EB", .width = 1 },
433
+ .{ .codepoint = "U+01EC", .width = 1 },
434
+ .{ .codepoint = "U+01ED", .width = 1 },
435
+ .{ .codepoint = "U+01EE", .width = 1 },
436
+ .{ .codepoint = "U+01EF", .width = 1 },
437
+ .{ .codepoint = "U+01F0", .width = 1 },
438
+ .{ .codepoint = "U+01F1", .width = 1 },
439
+ .{ .codepoint = "U+01F2", .width = 1 },
440
+ .{ .codepoint = "U+01F3", .width = 1 },
441
+ .{ .codepoint = "U+01F4", .width = 1 },
442
+ .{ .codepoint = "U+01F5", .width = 1 },
443
+ .{ .codepoint = "U+01F6", .width = 1 },
444
+ .{ .codepoint = "U+01F7", .width = 1 },
445
+ .{ .codepoint = "U+01F8", .width = 1 },
446
+ .{ .codepoint = "U+01F9", .width = 1 },
447
+ .{ .codepoint = "U+01FA", .width = 1 },
448
+ .{ .codepoint = "U+01FB", .width = 1 },
449
+ .{ .codepoint = "U+01FC", .width = 1 },
450
+ .{ .codepoint = "U+01FD", .width = 1 },
451
+ .{ .codepoint = "U+01FE", .width = 1 },
452
+ .{ .codepoint = "U+01FF", .width = 1 },
453
+ .{ .codepoint = "U+0200", .width = 1 },
454
+ .{ .codepoint = "U+0201", .width = 1 },
455
+ .{ .codepoint = "U+0202", .width = 1 },
456
+ .{ .codepoint = "U+0203", .width = 1 },
457
+ .{ .codepoint = "U+0204", .width = 1 },
458
+ .{ .codepoint = "U+0205", .width = 1 },
459
+ .{ .codepoint = "U+0206", .width = 1 },
460
+ .{ .codepoint = "U+0207", .width = 1 },
461
+ .{ .codepoint = "U+0208", .width = 1 },
462
+ .{ .codepoint = "U+0209", .width = 1 },
463
+ .{ .codepoint = "U+020A", .width = 1 },
464
+ .{ .codepoint = "U+020B", .width = 1 },
465
+ .{ .codepoint = "U+020C", .width = 1 },
466
+ .{ .codepoint = "U+020D", .width = 1 },
467
+ .{ .codepoint = "U+020E", .width = 1 },
468
+ .{ .codepoint = "U+020F", .width = 1 },
469
+ .{ .codepoint = "U+0210", .width = 1 },
470
+ .{ .codepoint = "U+0211", .width = 1 },
471
+ .{ .codepoint = "U+0212", .width = 1 },
472
+ .{ .codepoint = "U+0213", .width = 1 },
473
+ .{ .codepoint = "U+0214", .width = 1 },
474
+ .{ .codepoint = "U+0215", .width = 1 },
475
+ .{ .codepoint = "U+0216", .width = 1 },
476
+ .{ .codepoint = "U+0217", .width = 1 },
477
+ .{ .codepoint = "U+0218", .width = 1 },
478
+ .{ .codepoint = "U+0219", .width = 1 },
479
+ .{ .codepoint = "U+021A", .width = 1 },
480
+ .{ .codepoint = "U+021B", .width = 1 },
481
+ .{ .codepoint = "U+021C", .width = 1 },
482
+ .{ .codepoint = "U+021D", .width = 1 },
483
+ .{ .codepoint = "U+021E", .width = 1 },
484
+ .{ .codepoint = "U+021F", .width = 1 },
485
+ .{ .codepoint = "U+0220", .width = 1 },
486
+ .{ .codepoint = "U+0221", .width = 1 },
487
+ .{ .codepoint = "U+0222", .width = 1 },
488
+ .{ .codepoint = "U+0223", .width = 1 },
489
+ .{ .codepoint = "U+0224", .width = 1 },
490
+ .{ .codepoint = "U+0225", .width = 1 },
491
+ .{ .codepoint = "U+0226", .width = 1 },
492
+ .{ .codepoint = "U+0227", .width = 1 },
493
+ .{ .codepoint = "U+0228", .width = 1 },
494
+ .{ .codepoint = "U+0229", .width = 1 },
495
+ .{ .codepoint = "U+022A", .width = 1 },
496
+ .{ .codepoint = "U+022B", .width = 1 },
497
+ .{ .codepoint = "U+022C", .width = 1 },
498
+ .{ .codepoint = "U+022D", .width = 1 },
499
+ .{ .codepoint = "U+022E", .width = 1 },
500
+ .{ .codepoint = "U+022F", .width = 1 },
501
+ .{ .codepoint = "U+0230", .width = 1 },
502
+ .{ .codepoint = "U+0231", .width = 1 },
503
+ .{ .codepoint = "U+0232", .width = 1 },
504
+ .{ .codepoint = "U+0233", .width = 1 },
505
+ .{ .codepoint = "U+0234", .width = 1 },
506
+ .{ .codepoint = "U+0235", .width = 1 },
507
+ .{ .codepoint = "U+0236", .width = 1 },
508
+ .{ .codepoint = "U+0237", .width = 1 },
509
+ .{ .codepoint = "U+0238", .width = 1 },
510
+ .{ .codepoint = "U+0239", .width = 1 },
511
+ .{ .codepoint = "U+023A", .width = 1 },
512
+ .{ .codepoint = "U+023B", .width = 1 },
513
+ .{ .codepoint = "U+023C", .width = 1 },
514
+ .{ .codepoint = "U+023D", .width = 1 },
515
+ .{ .codepoint = "U+023E", .width = 1 },
516
+ .{ .codepoint = "U+023F", .width = 1 },
517
+ .{ .codepoint = "U+0240", .width = 1 },
518
+ .{ .codepoint = "U+0241", .width = 1 },
519
+ .{ .codepoint = "U+0242", .width = 1 },
520
+ .{ .codepoint = "U+0243", .width = 1 },
521
+ .{ .codepoint = "U+0244", .width = 1 },
522
+ .{ .codepoint = "U+0245", .width = 1 },
523
+ .{ .codepoint = "U+0246", .width = 1 },
524
+ .{ .codepoint = "U+0247", .width = 1 },
525
+ .{ .codepoint = "U+0248", .width = 1 },
526
+ .{ .codepoint = "U+0249", .width = 1 },
527
+ .{ .codepoint = "U+024A", .width = 1 },
528
+ .{ .codepoint = "U+024B", .width = 1 },
529
+ .{ .codepoint = "U+024C", .width = 1 },
530
+ .{ .codepoint = "U+024D", .width = 1 },
531
+ .{ .codepoint = "U+024E", .width = 1 },
532
+ .{ .codepoint = "U+024F", .width = 1 },
533
+ .{ .codepoint = "U+2000", .width = 1 },
534
+ .{ .codepoint = "U+2001", .width = 1 },
535
+ .{ .codepoint = "U+2002", .width = 1 },
536
+ .{ .codepoint = "U+2003", .width = 1 },
537
+ .{ .codepoint = "U+2004", .width = 1 },
538
+ .{ .codepoint = "U+2005", .width = 1 },
539
+ .{ .codepoint = "U+2006", .width = 1 },
540
+ .{ .codepoint = "U+2007", .width = 1 },
541
+ .{ .codepoint = "U+2008", .width = 1 },
542
+ .{ .codepoint = "U+2009", .width = 1 },
543
+ .{ .codepoint = "U+200A", .width = 1 },
544
+ .{ .codepoint = "U+2010", .width = 1 },
545
+ .{ .codepoint = "U+2011", .width = 1 },
546
+ .{ .codepoint = "U+2012", .width = 1 },
547
+ .{ .codepoint = "U+2013", .width = 1 },
548
+ .{ .codepoint = "U+2014", .width = 1 },
549
+ .{ .codepoint = "U+2015", .width = 1 },
550
+ .{ .codepoint = "U+2016", .width = 1 },
551
+ .{ .codepoint = "U+2017", .width = 1 },
552
+ .{ .codepoint = "U+2018", .width = 1 },
553
+ .{ .codepoint = "U+2019", .width = 1 },
554
+ .{ .codepoint = "U+201A", .width = 1 },
555
+ .{ .codepoint = "U+201B", .width = 1 },
556
+ .{ .codepoint = "U+201C", .width = 1 },
557
+ .{ .codepoint = "U+201D", .width = 1 },
558
+ .{ .codepoint = "U+201E", .width = 1 },
559
+ .{ .codepoint = "U+201F", .width = 1 },
560
+ .{ .codepoint = "U+2020", .width = 1 },
561
+ .{ .codepoint = "U+2021", .width = 1 },
562
+ .{ .codepoint = "U+2022", .width = 1 },
563
+ .{ .codepoint = "U+2023", .width = 1 },
564
+ .{ .codepoint = "U+2024", .width = 1 },
565
+ .{ .codepoint = "U+2025", .width = 1 },
566
+ .{ .codepoint = "U+2026", .width = 1 },
567
+ .{ .codepoint = "U+2027", .width = 1 },
568
+ .{ .codepoint = "U+202F", .width = 1 },
569
+ .{ .codepoint = "U+2030", .width = 1 },
570
+ .{ .codepoint = "U+2031", .width = 1 },
571
+ .{ .codepoint = "U+2032", .width = 1 },
572
+ .{ .codepoint = "U+2033", .width = 1 },
573
+ .{ .codepoint = "U+2034", .width = 1 },
574
+ .{ .codepoint = "U+2035", .width = 1 },
575
+ .{ .codepoint = "U+2036", .width = 1 },
576
+ .{ .codepoint = "U+2037", .width = 1 },
577
+ .{ .codepoint = "U+2038", .width = 1 },
578
+ .{ .codepoint = "U+2039", .width = 1 },
579
+ .{ .codepoint = "U+203A", .width = 1 },
580
+ .{ .codepoint = "U+203B", .width = 1 },
581
+ .{ .codepoint = "U+203C", .width = 2 },
582
+ .{ .codepoint = "U+203D", .width = 1 },
583
+ .{ .codepoint = "U+203E", .width = 1 },
584
+ .{ .codepoint = "U+203F", .width = 1 },
585
+ .{ .codepoint = "U+2040", .width = 1 },
586
+ .{ .codepoint = "U+2041", .width = 1 },
587
+ .{ .codepoint = "U+2042", .width = 1 },
588
+ .{ .codepoint = "U+2043", .width = 1 },
589
+ .{ .codepoint = "U+2044", .width = 1 },
590
+ .{ .codepoint = "U+2045", .width = 1 },
591
+ .{ .codepoint = "U+2046", .width = 1 },
592
+ .{ .codepoint = "U+2047", .width = 1 },
593
+ .{ .codepoint = "U+2048", .width = 1 },
594
+ .{ .codepoint = "U+2049", .width = 2 },
595
+ .{ .codepoint = "U+204A", .width = 1 },
596
+ .{ .codepoint = "U+204B", .width = 1 },
597
+ .{ .codepoint = "U+204C", .width = 1 },
598
+ .{ .codepoint = "U+204D", .width = 1 },
599
+ .{ .codepoint = "U+204E", .width = 1 },
600
+ .{ .codepoint = "U+204F", .width = 1 },
601
+ .{ .codepoint = "U+2050", .width = 1 },
602
+ .{ .codepoint = "U+2051", .width = 1 },
603
+ .{ .codepoint = "U+2052", .width = 1 },
604
+ .{ .codepoint = "U+2053", .width = 1 },
605
+ .{ .codepoint = "U+2054", .width = 1 },
606
+ .{ .codepoint = "U+2055", .width = 1 },
607
+ .{ .codepoint = "U+2056", .width = 1 },
608
+ .{ .codepoint = "U+2057", .width = 1 },
609
+ .{ .codepoint = "U+2058", .width = 1 },
610
+ .{ .codepoint = "U+2059", .width = 1 },
611
+ .{ .codepoint = "U+205A", .width = 1 },
612
+ .{ .codepoint = "U+205B", .width = 1 },
613
+ .{ .codepoint = "U+205C", .width = 1 },
614
+ .{ .codepoint = "U+205D", .width = 1 },
615
+ .{ .codepoint = "U+205E", .width = 1 },
616
+ .{ .codepoint = "U+205F", .width = 1 },
617
+ .{ .codepoint = "U+2070", .width = 1 },
618
+ .{ .codepoint = "U+2071", .width = 1 },
619
+ .{ .codepoint = "U+2072", .width = 1 },
620
+ .{ .codepoint = "U+2073", .width = 1 },
621
+ .{ .codepoint = "U+2074", .width = 1 },
622
+ .{ .codepoint = "U+2075", .width = 1 },
623
+ .{ .codepoint = "U+2076", .width = 1 },
624
+ .{ .codepoint = "U+2077", .width = 1 },
625
+ .{ .codepoint = "U+2078", .width = 1 },
626
+ .{ .codepoint = "U+2079", .width = 1 },
627
+ .{ .codepoint = "U+207A", .width = 1 },
628
+ .{ .codepoint = "U+207B", .width = 1 },
629
+ .{ .codepoint = "U+207C", .width = 1 },
630
+ .{ .codepoint = "U+207D", .width = 1 },
631
+ .{ .codepoint = "U+207E", .width = 1 },
632
+ .{ .codepoint = "U+207F", .width = 1 },
633
+ .{ .codepoint = "U+2080", .width = 1 },
634
+ .{ .codepoint = "U+2081", .width = 1 },
635
+ .{ .codepoint = "U+2082", .width = 1 },
636
+ .{ .codepoint = "U+2083", .width = 1 },
637
+ .{ .codepoint = "U+2084", .width = 1 },
638
+ .{ .codepoint = "U+2085", .width = 1 },
639
+ .{ .codepoint = "U+2086", .width = 1 },
640
+ .{ .codepoint = "U+2087", .width = 1 },
641
+ .{ .codepoint = "U+2088", .width = 1 },
642
+ .{ .codepoint = "U+2089", .width = 1 },
643
+ .{ .codepoint = "U+208A", .width = 1 },
644
+ .{ .codepoint = "U+208B", .width = 1 },
645
+ .{ .codepoint = "U+208C", .width = 1 },
646
+ .{ .codepoint = "U+208D", .width = 1 },
647
+ .{ .codepoint = "U+208E", .width = 1 },
648
+ .{ .codepoint = "U+208F", .width = 1 },
649
+ .{ .codepoint = "U+2090", .width = 1 },
650
+ .{ .codepoint = "U+2091", .width = 1 },
651
+ .{ .codepoint = "U+2092", .width = 1 },
652
+ .{ .codepoint = "U+2093", .width = 1 },
653
+ .{ .codepoint = "U+2094", .width = 1 },
654
+ .{ .codepoint = "U+2095", .width = 1 },
655
+ .{ .codepoint = "U+2096", .width = 1 },
656
+ .{ .codepoint = "U+2097", .width = 1 },
657
+ .{ .codepoint = "U+2098", .width = 1 },
658
+ .{ .codepoint = "U+2099", .width = 1 },
659
+ .{ .codepoint = "U+209A", .width = 1 },
660
+ .{ .codepoint = "U+209B", .width = 1 },
661
+ .{ .codepoint = "U+209C", .width = 1 },
662
+ .{ .codepoint = "U+209D", .width = 1 },
663
+ .{ .codepoint = "U+209E", .width = 1 },
664
+ .{ .codepoint = "U+209F", .width = 1 },
665
+ .{ .codepoint = "U+20A0", .width = 1 },
666
+ .{ .codepoint = "U+20A1", .width = 1 },
667
+ .{ .codepoint = "U+20A2", .width = 1 },
668
+ .{ .codepoint = "U+20A3", .width = 1 },
669
+ .{ .codepoint = "U+20A4", .width = 1 },
670
+ .{ .codepoint = "U+20A5", .width = 1 },
671
+ .{ .codepoint = "U+20A6", .width = 1 },
672
+ .{ .codepoint = "U+20A7", .width = 1 },
673
+ .{ .codepoint = "U+20A8", .width = 1 },
674
+ .{ .codepoint = "U+20A9", .width = 1 },
675
+ .{ .codepoint = "U+20AA", .width = 1 },
676
+ .{ .codepoint = "U+20AB", .width = 1 },
677
+ .{ .codepoint = "U+20AC", .width = 1 },
678
+ .{ .codepoint = "U+20AD", .width = 1 },
679
+ .{ .codepoint = "U+20AE", .width = 1 },
680
+ .{ .codepoint = "U+20AF", .width = 1 },
681
+ .{ .codepoint = "U+20B0", .width = 1 },
682
+ .{ .codepoint = "U+20B1", .width = 1 },
683
+ .{ .codepoint = "U+20B2", .width = 1 },
684
+ .{ .codepoint = "U+20B3", .width = 1 },
685
+ .{ .codepoint = "U+20B4", .width = 1 },
686
+ .{ .codepoint = "U+20B5", .width = 1 },
687
+ .{ .codepoint = "U+20B6", .width = 1 },
688
+ .{ .codepoint = "U+20B7", .width = 1 },
689
+ .{ .codepoint = "U+20B8", .width = 1 },
690
+ .{ .codepoint = "U+20B9", .width = 1 },
691
+ .{ .codepoint = "U+20BA", .width = 1 },
692
+ .{ .codepoint = "U+20BB", .width = 1 },
693
+ .{ .codepoint = "U+20BC", .width = 1 },
694
+ .{ .codepoint = "U+20BD", .width = 1 },
695
+ .{ .codepoint = "U+20BE", .width = 1 },
696
+ .{ .codepoint = "U+20BF", .width = 1 },
697
+ .{ .codepoint = "U+20C0", .width = 1 },
698
+ .{ .codepoint = "U+20C1", .width = 1 },
699
+ .{ .codepoint = "U+20C2", .width = 1 },
700
+ .{ .codepoint = "U+20C3", .width = 1 },
701
+ .{ .codepoint = "U+20C4", .width = 1 },
702
+ .{ .codepoint = "U+20C5", .width = 1 },
703
+ .{ .codepoint = "U+20C6", .width = 1 },
704
+ .{ .codepoint = "U+20C7", .width = 1 },
705
+ .{ .codepoint = "U+20C8", .width = 1 },
706
+ .{ .codepoint = "U+20C9", .width = 1 },
707
+ .{ .codepoint = "U+20CA", .width = 1 },
708
+ .{ .codepoint = "U+20CB", .width = 1 },
709
+ .{ .codepoint = "U+20CC", .width = 1 },
710
+ .{ .codepoint = "U+20CD", .width = 1 },
711
+ .{ .codepoint = "U+20CE", .width = 1 },
712
+ .{ .codepoint = "U+20CF", .width = 1 },
713
+ .{ .codepoint = "U+2100", .width = 1 },
714
+ .{ .codepoint = "U+2101", .width = 1 },
715
+ .{ .codepoint = "U+2102", .width = 1 },
716
+ .{ .codepoint = "U+2103", .width = 1 },
717
+ .{ .codepoint = "U+2104", .width = 1 },
718
+ .{ .codepoint = "U+2105", .width = 1 },
719
+ .{ .codepoint = "U+2106", .width = 1 },
720
+ .{ .codepoint = "U+2107", .width = 1 },
721
+ .{ .codepoint = "U+2108", .width = 1 },
722
+ .{ .codepoint = "U+2109", .width = 1 },
723
+ .{ .codepoint = "U+210A", .width = 1 },
724
+ .{ .codepoint = "U+210B", .width = 1 },
725
+ .{ .codepoint = "U+210C", .width = 1 },
726
+ .{ .codepoint = "U+210D", .width = 1 },
727
+ .{ .codepoint = "U+210E", .width = 1 },
728
+ .{ .codepoint = "U+210F", .width = 1 },
729
+ .{ .codepoint = "U+2110", .width = 1 },
730
+ .{ .codepoint = "U+2111", .width = 1 },
731
+ .{ .codepoint = "U+2112", .width = 1 },
732
+ .{ .codepoint = "U+2113", .width = 1 },
733
+ .{ .codepoint = "U+2114", .width = 1 },
734
+ .{ .codepoint = "U+2115", .width = 1 },
735
+ .{ .codepoint = "U+2116", .width = 1 },
736
+ .{ .codepoint = "U+2117", .width = 1 },
737
+ .{ .codepoint = "U+2118", .width = 1 },
738
+ .{ .codepoint = "U+2119", .width = 1 },
739
+ .{ .codepoint = "U+211A", .width = 1 },
740
+ .{ .codepoint = "U+211B", .width = 1 },
741
+ .{ .codepoint = "U+211C", .width = 1 },
742
+ .{ .codepoint = "U+211D", .width = 1 },
743
+ .{ .codepoint = "U+211E", .width = 1 },
744
+ .{ .codepoint = "U+211F", .width = 1 },
745
+ .{ .codepoint = "U+2120", .width = 1 },
746
+ .{ .codepoint = "U+2121", .width = 1 },
747
+ .{ .codepoint = "U+2122", .width = 1 },
748
+ .{ .codepoint = "U+2123", .width = 1 },
749
+ .{ .codepoint = "U+2124", .width = 1 },
750
+ .{ .codepoint = "U+2125", .width = 1 },
751
+ .{ .codepoint = "U+2126", .width = 1 },
752
+ .{ .codepoint = "U+2127", .width = 1 },
753
+ .{ .codepoint = "U+2128", .width = 1 },
754
+ .{ .codepoint = "U+2129", .width = 1 },
755
+ .{ .codepoint = "U+212A", .width = 1 },
756
+ .{ .codepoint = "U+212B", .width = 1 },
757
+ .{ .codepoint = "U+212C", .width = 1 },
758
+ .{ .codepoint = "U+212D", .width = 1 },
759
+ .{ .codepoint = "U+212E", .width = 1 },
760
+ .{ .codepoint = "U+212F", .width = 1 },
761
+ .{ .codepoint = "U+2130", .width = 1 },
762
+ .{ .codepoint = "U+2131", .width = 1 },
763
+ .{ .codepoint = "U+2132", .width = 1 },
764
+ .{ .codepoint = "U+2133", .width = 1 },
765
+ .{ .codepoint = "U+2134", .width = 1 },
766
+ .{ .codepoint = "U+2135", .width = 1 },
767
+ .{ .codepoint = "U+2136", .width = 1 },
768
+ .{ .codepoint = "U+2137", .width = 1 },
769
+ .{ .codepoint = "U+2138", .width = 1 },
770
+ .{ .codepoint = "U+2139", .width = 1 },
771
+ .{ .codepoint = "U+213A", .width = 1 },
772
+ .{ .codepoint = "U+213B", .width = 1 },
773
+ .{ .codepoint = "U+213C", .width = 1 },
774
+ .{ .codepoint = "U+213D", .width = 1 },
775
+ .{ .codepoint = "U+213E", .width = 1 },
776
+ .{ .codepoint = "U+213F", .width = 1 },
777
+ .{ .codepoint = "U+2140", .width = 1 },
778
+ .{ .codepoint = "U+2141", .width = 1 },
779
+ .{ .codepoint = "U+2142", .width = 1 },
780
+ .{ .codepoint = "U+2143", .width = 1 },
781
+ .{ .codepoint = "U+2144", .width = 1 },
782
+ .{ .codepoint = "U+2145", .width = 1 },
783
+ .{ .codepoint = "U+2146", .width = 1 },
784
+ .{ .codepoint = "U+2147", .width = 1 },
785
+ .{ .codepoint = "U+2148", .width = 1 },
786
+ .{ .codepoint = "U+2149", .width = 1 },
787
+ .{ .codepoint = "U+214A", .width = 1 },
788
+ .{ .codepoint = "U+214B", .width = 1 },
789
+ .{ .codepoint = "U+214C", .width = 1 },
790
+ .{ .codepoint = "U+214D", .width = 1 },
791
+ .{ .codepoint = "U+214E", .width = 1 },
792
+ .{ .codepoint = "U+214F", .width = 1 },
793
+ .{ .codepoint = "U+2190", .width = 1 },
794
+ .{ .codepoint = "U+2191", .width = 1 },
795
+ .{ .codepoint = "U+2192", .width = 1 },
796
+ .{ .codepoint = "U+2193", .width = 1 },
797
+ .{ .codepoint = "U+2194", .width = 1 },
798
+ .{ .codepoint = "U+2195", .width = 1 },
799
+ .{ .codepoint = "U+2196", .width = 1 },
800
+ .{ .codepoint = "U+2197", .width = 1 },
801
+ .{ .codepoint = "U+2198", .width = 1 },
802
+ .{ .codepoint = "U+2199", .width = 1 },
803
+ .{ .codepoint = "U+219A", .width = 1 },
804
+ .{ .codepoint = "U+219B", .width = 1 },
805
+ .{ .codepoint = "U+219C", .width = 1 },
806
+ .{ .codepoint = "U+219D", .width = 1 },
807
+ .{ .codepoint = "U+219E", .width = 1 },
808
+ .{ .codepoint = "U+219F", .width = 1 },
809
+ .{ .codepoint = "U+21A0", .width = 1 },
810
+ .{ .codepoint = "U+21A1", .width = 1 },
811
+ .{ .codepoint = "U+21A2", .width = 1 },
812
+ .{ .codepoint = "U+21A3", .width = 1 },
813
+ .{ .codepoint = "U+21A4", .width = 1 },
814
+ .{ .codepoint = "U+21A5", .width = 1 },
815
+ .{ .codepoint = "U+21A6", .width = 1 },
816
+ .{ .codepoint = "U+21A7", .width = 1 },
817
+ .{ .codepoint = "U+21A8", .width = 1 },
818
+ .{ .codepoint = "U+21A9", .width = 1 },
819
+ .{ .codepoint = "U+21AA", .width = 1 },
820
+ .{ .codepoint = "U+21AB", .width = 1 },
821
+ .{ .codepoint = "U+21AC", .width = 1 },
822
+ .{ .codepoint = "U+21AD", .width = 1 },
823
+ .{ .codepoint = "U+21AE", .width = 1 },
824
+ .{ .codepoint = "U+21AF", .width = 1 },
825
+ .{ .codepoint = "U+21B0", .width = 1 },
826
+ .{ .codepoint = "U+21B1", .width = 1 },
827
+ .{ .codepoint = "U+21B2", .width = 1 },
828
+ .{ .codepoint = "U+21B3", .width = 1 },
829
+ .{ .codepoint = "U+21B4", .width = 1 },
830
+ .{ .codepoint = "U+21B5", .width = 1 },
831
+ .{ .codepoint = "U+21B6", .width = 1 },
832
+ .{ .codepoint = "U+21B7", .width = 1 },
833
+ .{ .codepoint = "U+21B8", .width = 1 },
834
+ .{ .codepoint = "U+21B9", .width = 1 },
835
+ .{ .codepoint = "U+21BA", .width = 1 },
836
+ .{ .codepoint = "U+21BB", .width = 1 },
837
+ .{ .codepoint = "U+21BC", .width = 1 },
838
+ .{ .codepoint = "U+21BD", .width = 1 },
839
+ .{ .codepoint = "U+21BE", .width = 1 },
840
+ .{ .codepoint = "U+21BF", .width = 1 },
841
+ .{ .codepoint = "U+21C0", .width = 1 },
842
+ .{ .codepoint = "U+21C1", .width = 1 },
843
+ .{ .codepoint = "U+21C2", .width = 1 },
844
+ .{ .codepoint = "U+21C3", .width = 1 },
845
+ .{ .codepoint = "U+21C4", .width = 1 },
846
+ .{ .codepoint = "U+21C5", .width = 1 },
847
+ .{ .codepoint = "U+21C6", .width = 1 },
848
+ .{ .codepoint = "U+21C7", .width = 1 },
849
+ .{ .codepoint = "U+21C8", .width = 1 },
850
+ .{ .codepoint = "U+21C9", .width = 1 },
851
+ .{ .codepoint = "U+21CA", .width = 1 },
852
+ .{ .codepoint = "U+21CB", .width = 1 },
853
+ .{ .codepoint = "U+21CC", .width = 1 },
854
+ .{ .codepoint = "U+21CD", .width = 1 },
855
+ .{ .codepoint = "U+21CE", .width = 1 },
856
+ .{ .codepoint = "U+21CF", .width = 1 },
857
+ .{ .codepoint = "U+21D0", .width = 1 },
858
+ .{ .codepoint = "U+21D1", .width = 1 },
859
+ .{ .codepoint = "U+21D2", .width = 1 },
860
+ .{ .codepoint = "U+21D3", .width = 1 },
861
+ .{ .codepoint = "U+21D4", .width = 1 },
862
+ .{ .codepoint = "U+21D5", .width = 1 },
863
+ .{ .codepoint = "U+21D6", .width = 1 },
864
+ .{ .codepoint = "U+21D7", .width = 1 },
865
+ .{ .codepoint = "U+21D8", .width = 1 },
866
+ .{ .codepoint = "U+21D9", .width = 1 },
867
+ .{ .codepoint = "U+21DA", .width = 1 },
868
+ .{ .codepoint = "U+21DB", .width = 1 },
869
+ .{ .codepoint = "U+21DC", .width = 1 },
870
+ .{ .codepoint = "U+21DD", .width = 1 },
871
+ .{ .codepoint = "U+21DE", .width = 1 },
872
+ .{ .codepoint = "U+21DF", .width = 1 },
873
+ .{ .codepoint = "U+21E0", .width = 1 },
874
+ .{ .codepoint = "U+21E1", .width = 1 },
875
+ .{ .codepoint = "U+21E2", .width = 1 },
876
+ .{ .codepoint = "U+21E3", .width = 1 },
877
+ .{ .codepoint = "U+21E4", .width = 1 },
878
+ .{ .codepoint = "U+21E5", .width = 1 },
879
+ .{ .codepoint = "U+21E6", .width = 1 },
880
+ .{ .codepoint = "U+21E7", .width = 1 },
881
+ .{ .codepoint = "U+21E8", .width = 1 },
882
+ .{ .codepoint = "U+21E9", .width = 1 },
883
+ .{ .codepoint = "U+21EA", .width = 1 },
884
+ .{ .codepoint = "U+21EB", .width = 1 },
885
+ .{ .codepoint = "U+21EC", .width = 1 },
886
+ .{ .codepoint = "U+21ED", .width = 1 },
887
+ .{ .codepoint = "U+21EE", .width = 1 },
888
+ .{ .codepoint = "U+21EF", .width = 1 },
889
+ .{ .codepoint = "U+21F0", .width = 1 },
890
+ .{ .codepoint = "U+21F1", .width = 1 },
891
+ .{ .codepoint = "U+21F2", .width = 1 },
892
+ .{ .codepoint = "U+21F3", .width = 1 },
893
+ .{ .codepoint = "U+21F4", .width = 1 },
894
+ .{ .codepoint = "U+21F5", .width = 1 },
895
+ .{ .codepoint = "U+21F6", .width = 1 },
896
+ .{ .codepoint = "U+21F7", .width = 1 },
897
+ .{ .codepoint = "U+21F8", .width = 1 },
898
+ .{ .codepoint = "U+21F9", .width = 1 },
899
+ .{ .codepoint = "U+21FA", .width = 1 },
900
+ .{ .codepoint = "U+21FB", .width = 1 },
901
+ .{ .codepoint = "U+21FC", .width = 1 },
902
+ .{ .codepoint = "U+21FD", .width = 1 },
903
+ .{ .codepoint = "U+21FE", .width = 1 },
904
+ .{ .codepoint = "U+21FF", .width = 1 },
905
+ .{ .codepoint = "U+2200", .width = 1 },
906
+ .{ .codepoint = "U+2201", .width = 1 },
907
+ .{ .codepoint = "U+2202", .width = 1 },
908
+ .{ .codepoint = "U+2203", .width = 1 },
909
+ .{ .codepoint = "U+2204", .width = 1 },
910
+ .{ .codepoint = "U+2205", .width = 1 },
911
+ .{ .codepoint = "U+2206", .width = 1 },
912
+ .{ .codepoint = "U+2207", .width = 1 },
913
+ .{ .codepoint = "U+2208", .width = 1 },
914
+ .{ .codepoint = "U+2209", .width = 1 },
915
+ .{ .codepoint = "U+220A", .width = 1 },
916
+ .{ .codepoint = "U+220B", .width = 1 },
917
+ .{ .codepoint = "U+220C", .width = 1 },
918
+ .{ .codepoint = "U+220D", .width = 1 },
919
+ .{ .codepoint = "U+220E", .width = 1 },
920
+ .{ .codepoint = "U+220F", .width = 1 },
921
+ .{ .codepoint = "U+2210", .width = 1 },
922
+ .{ .codepoint = "U+2211", .width = 1 },
923
+ .{ .codepoint = "U+2212", .width = 1 },
924
+ .{ .codepoint = "U+2213", .width = 1 },
925
+ .{ .codepoint = "U+2214", .width = 1 },
926
+ .{ .codepoint = "U+2215", .width = 1 },
927
+ .{ .codepoint = "U+2216", .width = 1 },
928
+ .{ .codepoint = "U+2217", .width = 1 },
929
+ .{ .codepoint = "U+2218", .width = 1 },
930
+ .{ .codepoint = "U+2219", .width = 1 },
931
+ .{ .codepoint = "U+221A", .width = 1 },
932
+ .{ .codepoint = "U+221B", .width = 1 },
933
+ .{ .codepoint = "U+221C", .width = 1 },
934
+ .{ .codepoint = "U+221D", .width = 1 },
935
+ .{ .codepoint = "U+221E", .width = 1 },
936
+ .{ .codepoint = "U+221F", .width = 1 },
937
+ .{ .codepoint = "U+2220", .width = 1 },
938
+ .{ .codepoint = "U+2221", .width = 1 },
939
+ .{ .codepoint = "U+2222", .width = 1 },
940
+ .{ .codepoint = "U+2223", .width = 1 },
941
+ .{ .codepoint = "U+2224", .width = 1 },
942
+ .{ .codepoint = "U+2225", .width = 1 },
943
+ .{ .codepoint = "U+2226", .width = 1 },
944
+ .{ .codepoint = "U+2227", .width = 1 },
945
+ .{ .codepoint = "U+2228", .width = 1 },
946
+ .{ .codepoint = "U+2229", .width = 1 },
947
+ .{ .codepoint = "U+222A", .width = 1 },
948
+ .{ .codepoint = "U+222B", .width = 1 },
949
+ .{ .codepoint = "U+222C", .width = 1 },
950
+ .{ .codepoint = "U+222D", .width = 1 },
951
+ .{ .codepoint = "U+222E", .width = 1 },
952
+ .{ .codepoint = "U+222F", .width = 1 },
953
+ .{ .codepoint = "U+2230", .width = 1 },
954
+ .{ .codepoint = "U+2231", .width = 1 },
955
+ .{ .codepoint = "U+2232", .width = 1 },
956
+ .{ .codepoint = "U+2233", .width = 1 },
957
+ .{ .codepoint = "U+2234", .width = 1 },
958
+ .{ .codepoint = "U+2235", .width = 1 },
959
+ .{ .codepoint = "U+2236", .width = 1 },
960
+ .{ .codepoint = "U+2237", .width = 1 },
961
+ .{ .codepoint = "U+2238", .width = 1 },
962
+ .{ .codepoint = "U+2239", .width = 1 },
963
+ .{ .codepoint = "U+223A", .width = 1 },
964
+ .{ .codepoint = "U+223B", .width = 1 },
965
+ .{ .codepoint = "U+223C", .width = 1 },
966
+ .{ .codepoint = "U+223D", .width = 1 },
967
+ .{ .codepoint = "U+223E", .width = 1 },
968
+ .{ .codepoint = "U+223F", .width = 1 },
969
+ .{ .codepoint = "U+2240", .width = 1 },
970
+ .{ .codepoint = "U+2241", .width = 1 },
971
+ .{ .codepoint = "U+2242", .width = 1 },
972
+ .{ .codepoint = "U+2243", .width = 1 },
973
+ .{ .codepoint = "U+2244", .width = 1 },
974
+ .{ .codepoint = "U+2245", .width = 1 },
975
+ .{ .codepoint = "U+2246", .width = 1 },
976
+ .{ .codepoint = "U+2247", .width = 1 },
977
+ .{ .codepoint = "U+2248", .width = 1 },
978
+ .{ .codepoint = "U+2249", .width = 1 },
979
+ .{ .codepoint = "U+224A", .width = 1 },
980
+ .{ .codepoint = "U+224B", .width = 1 },
981
+ .{ .codepoint = "U+224C", .width = 1 },
982
+ .{ .codepoint = "U+224D", .width = 1 },
983
+ .{ .codepoint = "U+224E", .width = 1 },
984
+ .{ .codepoint = "U+224F", .width = 1 },
985
+ .{ .codepoint = "U+2250", .width = 1 },
986
+ .{ .codepoint = "U+2251", .width = 1 },
987
+ .{ .codepoint = "U+2252", .width = 1 },
988
+ .{ .codepoint = "U+2253", .width = 1 },
989
+ .{ .codepoint = "U+2254", .width = 1 },
990
+ .{ .codepoint = "U+2255", .width = 1 },
991
+ .{ .codepoint = "U+2256", .width = 1 },
992
+ .{ .codepoint = "U+2257", .width = 1 },
993
+ .{ .codepoint = "U+2258", .width = 1 },
994
+ .{ .codepoint = "U+2259", .width = 1 },
995
+ .{ .codepoint = "U+225A", .width = 1 },
996
+ .{ .codepoint = "U+225B", .width = 1 },
997
+ .{ .codepoint = "U+225C", .width = 1 },
998
+ .{ .codepoint = "U+225D", .width = 1 },
999
+ .{ .codepoint = "U+225E", .width = 1 },
1000
+ .{ .codepoint = "U+225F", .width = 1 },
1001
+ .{ .codepoint = "U+2260", .width = 1 },
1002
+ .{ .codepoint = "U+2261", .width = 1 },
1003
+ .{ .codepoint = "U+2262", .width = 1 },
1004
+ .{ .codepoint = "U+2263", .width = 1 },
1005
+ .{ .codepoint = "U+2264", .width = 1 },
1006
+ .{ .codepoint = "U+2265", .width = 1 },
1007
+ .{ .codepoint = "U+2266", .width = 1 },
1008
+ .{ .codepoint = "U+2267", .width = 1 },
1009
+ .{ .codepoint = "U+2268", .width = 1 },
1010
+ .{ .codepoint = "U+2269", .width = 1 },
1011
+ .{ .codepoint = "U+226A", .width = 1 },
1012
+ .{ .codepoint = "U+226B", .width = 1 },
1013
+ .{ .codepoint = "U+226C", .width = 1 },
1014
+ .{ .codepoint = "U+226D", .width = 1 },
1015
+ .{ .codepoint = "U+226E", .width = 1 },
1016
+ .{ .codepoint = "U+226F", .width = 1 },
1017
+ .{ .codepoint = "U+2270", .width = 1 },
1018
+ .{ .codepoint = "U+2271", .width = 1 },
1019
+ .{ .codepoint = "U+2272", .width = 1 },
1020
+ .{ .codepoint = "U+2273", .width = 1 },
1021
+ .{ .codepoint = "U+2274", .width = 1 },
1022
+ .{ .codepoint = "U+2275", .width = 1 },
1023
+ .{ .codepoint = "U+2276", .width = 1 },
1024
+ .{ .codepoint = "U+2277", .width = 1 },
1025
+ .{ .codepoint = "U+2278", .width = 1 },
1026
+ .{ .codepoint = "U+2279", .width = 1 },
1027
+ .{ .codepoint = "U+227A", .width = 1 },
1028
+ .{ .codepoint = "U+227B", .width = 1 },
1029
+ .{ .codepoint = "U+227C", .width = 1 },
1030
+ .{ .codepoint = "U+227D", .width = 1 },
1031
+ .{ .codepoint = "U+227E", .width = 1 },
1032
+ .{ .codepoint = "U+227F", .width = 1 },
1033
+ .{ .codepoint = "U+2280", .width = 1 },
1034
+ .{ .codepoint = "U+2281", .width = 1 },
1035
+ .{ .codepoint = "U+2282", .width = 1 },
1036
+ .{ .codepoint = "U+2283", .width = 1 },
1037
+ .{ .codepoint = "U+2284", .width = 1 },
1038
+ .{ .codepoint = "U+2285", .width = 1 },
1039
+ .{ .codepoint = "U+2286", .width = 1 },
1040
+ .{ .codepoint = "U+2287", .width = 1 },
1041
+ .{ .codepoint = "U+2288", .width = 1 },
1042
+ .{ .codepoint = "U+2289", .width = 1 },
1043
+ .{ .codepoint = "U+228A", .width = 1 },
1044
+ .{ .codepoint = "U+228B", .width = 1 },
1045
+ .{ .codepoint = "U+228C", .width = 1 },
1046
+ .{ .codepoint = "U+228D", .width = 1 },
1047
+ .{ .codepoint = "U+228E", .width = 1 },
1048
+ .{ .codepoint = "U+228F", .width = 1 },
1049
+ .{ .codepoint = "U+2290", .width = 1 },
1050
+ .{ .codepoint = "U+2291", .width = 1 },
1051
+ .{ .codepoint = "U+2292", .width = 1 },
1052
+ .{ .codepoint = "U+2293", .width = 1 },
1053
+ .{ .codepoint = "U+2294", .width = 1 },
1054
+ .{ .codepoint = "U+2295", .width = 1 },
1055
+ .{ .codepoint = "U+2296", .width = 1 },
1056
+ .{ .codepoint = "U+2297", .width = 1 },
1057
+ .{ .codepoint = "U+2298", .width = 1 },
1058
+ .{ .codepoint = "U+2299", .width = 1 },
1059
+ .{ .codepoint = "U+229A", .width = 1 },
1060
+ .{ .codepoint = "U+229B", .width = 1 },
1061
+ .{ .codepoint = "U+229C", .width = 1 },
1062
+ .{ .codepoint = "U+229D", .width = 1 },
1063
+ .{ .codepoint = "U+229E", .width = 1 },
1064
+ .{ .codepoint = "U+229F", .width = 1 },
1065
+ .{ .codepoint = "U+22A0", .width = 1 },
1066
+ .{ .codepoint = "U+22A1", .width = 1 },
1067
+ .{ .codepoint = "U+22A2", .width = 1 },
1068
+ .{ .codepoint = "U+22A3", .width = 1 },
1069
+ .{ .codepoint = "U+22A4", .width = 1 },
1070
+ .{ .codepoint = "U+22A5", .width = 1 },
1071
+ .{ .codepoint = "U+22A6", .width = 1 },
1072
+ .{ .codepoint = "U+22A7", .width = 1 },
1073
+ .{ .codepoint = "U+22A8", .width = 1 },
1074
+ .{ .codepoint = "U+22A9", .width = 1 },
1075
+ .{ .codepoint = "U+22AA", .width = 1 },
1076
+ .{ .codepoint = "U+22AB", .width = 1 },
1077
+ .{ .codepoint = "U+22AC", .width = 1 },
1078
+ .{ .codepoint = "U+22AD", .width = 1 },
1079
+ .{ .codepoint = "U+22AE", .width = 1 },
1080
+ .{ .codepoint = "U+22AF", .width = 1 },
1081
+ .{ .codepoint = "U+22B0", .width = 1 },
1082
+ .{ .codepoint = "U+22B1", .width = 1 },
1083
+ .{ .codepoint = "U+22B2", .width = 1 },
1084
+ .{ .codepoint = "U+22B3", .width = 1 },
1085
+ .{ .codepoint = "U+22B4", .width = 1 },
1086
+ .{ .codepoint = "U+22B5", .width = 1 },
1087
+ .{ .codepoint = "U+22B6", .width = 1 },
1088
+ .{ .codepoint = "U+22B7", .width = 1 },
1089
+ .{ .codepoint = "U+22B8", .width = 1 },
1090
+ .{ .codepoint = "U+22B9", .width = 1 },
1091
+ .{ .codepoint = "U+22BA", .width = 1 },
1092
+ .{ .codepoint = "U+22BB", .width = 1 },
1093
+ .{ .codepoint = "U+22BC", .width = 1 },
1094
+ .{ .codepoint = "U+22BD", .width = 1 },
1095
+ .{ .codepoint = "U+22BE", .width = 1 },
1096
+ .{ .codepoint = "U+22BF", .width = 1 },
1097
+ .{ .codepoint = "U+22C0", .width = 1 },
1098
+ .{ .codepoint = "U+22C1", .width = 1 },
1099
+ .{ .codepoint = "U+22C2", .width = 1 },
1100
+ .{ .codepoint = "U+22C3", .width = 1 },
1101
+ .{ .codepoint = "U+22C4", .width = 1 },
1102
+ .{ .codepoint = "U+22C5", .width = 1 },
1103
+ .{ .codepoint = "U+22C6", .width = 1 },
1104
+ .{ .codepoint = "U+22C7", .width = 1 },
1105
+ .{ .codepoint = "U+22C8", .width = 1 },
1106
+ .{ .codepoint = "U+22C9", .width = 1 },
1107
+ .{ .codepoint = "U+22CA", .width = 1 },
1108
+ .{ .codepoint = "U+22CB", .width = 1 },
1109
+ .{ .codepoint = "U+22CC", .width = 1 },
1110
+ .{ .codepoint = "U+22CD", .width = 1 },
1111
+ .{ .codepoint = "U+22CE", .width = 1 },
1112
+ .{ .codepoint = "U+22CF", .width = 1 },
1113
+ .{ .codepoint = "U+22D0", .width = 1 },
1114
+ .{ .codepoint = "U+22D1", .width = 1 },
1115
+ .{ .codepoint = "U+22D2", .width = 1 },
1116
+ .{ .codepoint = "U+22D3", .width = 1 },
1117
+ .{ .codepoint = "U+22D4", .width = 1 },
1118
+ .{ .codepoint = "U+22D5", .width = 1 },
1119
+ .{ .codepoint = "U+22D6", .width = 1 },
1120
+ .{ .codepoint = "U+22D7", .width = 1 },
1121
+ .{ .codepoint = "U+22D8", .width = 1 },
1122
+ .{ .codepoint = "U+22D9", .width = 1 },
1123
+ .{ .codepoint = "U+22DA", .width = 1 },
1124
+ .{ .codepoint = "U+22DB", .width = 1 },
1125
+ .{ .codepoint = "U+22DC", .width = 1 },
1126
+ .{ .codepoint = "U+22DD", .width = 1 },
1127
+ .{ .codepoint = "U+22DE", .width = 1 },
1128
+ .{ .codepoint = "U+22DF", .width = 1 },
1129
+ .{ .codepoint = "U+22E0", .width = 1 },
1130
+ .{ .codepoint = "U+22E1", .width = 1 },
1131
+ .{ .codepoint = "U+22E2", .width = 1 },
1132
+ .{ .codepoint = "U+22E3", .width = 1 },
1133
+ .{ .codepoint = "U+22E4", .width = 1 },
1134
+ .{ .codepoint = "U+22E5", .width = 1 },
1135
+ .{ .codepoint = "U+22E6", .width = 1 },
1136
+ .{ .codepoint = "U+22E7", .width = 1 },
1137
+ .{ .codepoint = "U+22E8", .width = 1 },
1138
+ .{ .codepoint = "U+22E9", .width = 1 },
1139
+ .{ .codepoint = "U+22EA", .width = 1 },
1140
+ .{ .codepoint = "U+22EB", .width = 1 },
1141
+ .{ .codepoint = "U+22EC", .width = 1 },
1142
+ .{ .codepoint = "U+22ED", .width = 1 },
1143
+ .{ .codepoint = "U+22EE", .width = 1 },
1144
+ .{ .codepoint = "U+22EF", .width = 1 },
1145
+ .{ .codepoint = "U+22F0", .width = 1 },
1146
+ .{ .codepoint = "U+22F1", .width = 1 },
1147
+ .{ .codepoint = "U+22F2", .width = 1 },
1148
+ .{ .codepoint = "U+22F3", .width = 1 },
1149
+ .{ .codepoint = "U+22F4", .width = 1 },
1150
+ .{ .codepoint = "U+22F5", .width = 1 },
1151
+ .{ .codepoint = "U+22F6", .width = 1 },
1152
+ .{ .codepoint = "U+22F7", .width = 1 },
1153
+ .{ .codepoint = "U+22F8", .width = 1 },
1154
+ .{ .codepoint = "U+22F9", .width = 1 },
1155
+ .{ .codepoint = "U+22FA", .width = 1 },
1156
+ .{ .codepoint = "U+22FB", .width = 1 },
1157
+ .{ .codepoint = "U+22FC", .width = 1 },
1158
+ .{ .codepoint = "U+22FD", .width = 1 },
1159
+ .{ .codepoint = "U+22FE", .width = 1 },
1160
+ .{ .codepoint = "U+22FF", .width = 1 },
1161
+ .{ .codepoint = "U+2300", .width = 1 },
1162
+ .{ .codepoint = "U+2301", .width = 1 },
1163
+ .{ .codepoint = "U+2302", .width = 1 },
1164
+ .{ .codepoint = "U+2303", .width = 1 },
1165
+ .{ .codepoint = "U+2304", .width = 1 },
1166
+ .{ .codepoint = "U+2305", .width = 1 },
1167
+ .{ .codepoint = "U+2306", .width = 1 },
1168
+ .{ .codepoint = "U+2307", .width = 1 },
1169
+ .{ .codepoint = "U+2308", .width = 1 },
1170
+ .{ .codepoint = "U+2309", .width = 1 },
1171
+ .{ .codepoint = "U+230A", .width = 1 },
1172
+ .{ .codepoint = "U+230B", .width = 1 },
1173
+ .{ .codepoint = "U+230C", .width = 1 },
1174
+ .{ .codepoint = "U+230D", .width = 1 },
1175
+ .{ .codepoint = "U+230E", .width = 1 },
1176
+ .{ .codepoint = "U+230F", .width = 1 },
1177
+ .{ .codepoint = "U+2310", .width = 1 },
1178
+ .{ .codepoint = "U+2311", .width = 1 },
1179
+ .{ .codepoint = "U+2312", .width = 1 },
1180
+ .{ .codepoint = "U+2313", .width = 1 },
1181
+ .{ .codepoint = "U+2314", .width = 1 },
1182
+ .{ .codepoint = "U+2315", .width = 1 },
1183
+ .{ .codepoint = "U+2316", .width = 1 },
1184
+ .{ .codepoint = "U+2317", .width = 1 },
1185
+ .{ .codepoint = "U+2318", .width = 1 },
1186
+ .{ .codepoint = "U+2319", .width = 1 },
1187
+ .{ .codepoint = "U+231A", .width = 2 },
1188
+ .{ .codepoint = "U+231B", .width = 2 },
1189
+ .{ .codepoint = "U+231C", .width = 1 },
1190
+ .{ .codepoint = "U+231D", .width = 1 },
1191
+ .{ .codepoint = "U+231E", .width = 1 },
1192
+ .{ .codepoint = "U+231F", .width = 1 },
1193
+ .{ .codepoint = "U+2320", .width = 1 },
1194
+ .{ .codepoint = "U+2321", .width = 1 },
1195
+ .{ .codepoint = "U+2322", .width = 1 },
1196
+ .{ .codepoint = "U+2323", .width = 1 },
1197
+ .{ .codepoint = "U+2324", .width = 1 },
1198
+ .{ .codepoint = "U+2325", .width = 1 },
1199
+ .{ .codepoint = "U+2326", .width = 1 },
1200
+ .{ .codepoint = "U+2327", .width = 1 },
1201
+ .{ .codepoint = "U+2328", .width = 1 },
1202
+ .{ .codepoint = "U+2329", .width = 2 },
1203
+ .{ .codepoint = "U+232A", .width = 2 },
1204
+ .{ .codepoint = "U+232B", .width = 1 },
1205
+ .{ .codepoint = "U+232C", .width = 1 },
1206
+ .{ .codepoint = "U+232D", .width = 1 },
1207
+ .{ .codepoint = "U+232E", .width = 1 },
1208
+ .{ .codepoint = "U+232F", .width = 1 },
1209
+ .{ .codepoint = "U+2330", .width = 1 },
1210
+ .{ .codepoint = "U+2331", .width = 1 },
1211
+ .{ .codepoint = "U+2332", .width = 1 },
1212
+ .{ .codepoint = "U+2333", .width = 1 },
1213
+ .{ .codepoint = "U+2334", .width = 1 },
1214
+ .{ .codepoint = "U+2335", .width = 1 },
1215
+ .{ .codepoint = "U+2336", .width = 1 },
1216
+ .{ .codepoint = "U+2337", .width = 1 },
1217
+ .{ .codepoint = "U+2338", .width = 1 },
1218
+ .{ .codepoint = "U+2339", .width = 1 },
1219
+ .{ .codepoint = "U+233A", .width = 1 },
1220
+ .{ .codepoint = "U+233B", .width = 1 },
1221
+ .{ .codepoint = "U+233C", .width = 1 },
1222
+ .{ .codepoint = "U+233D", .width = 1 },
1223
+ .{ .codepoint = "U+233E", .width = 1 },
1224
+ .{ .codepoint = "U+233F", .width = 1 },
1225
+ .{ .codepoint = "U+2340", .width = 1 },
1226
+ .{ .codepoint = "U+2341", .width = 1 },
1227
+ .{ .codepoint = "U+2342", .width = 1 },
1228
+ .{ .codepoint = "U+2343", .width = 1 },
1229
+ .{ .codepoint = "U+2344", .width = 1 },
1230
+ .{ .codepoint = "U+2345", .width = 1 },
1231
+ .{ .codepoint = "U+2346", .width = 1 },
1232
+ .{ .codepoint = "U+2347", .width = 1 },
1233
+ .{ .codepoint = "U+2348", .width = 1 },
1234
+ .{ .codepoint = "U+2349", .width = 1 },
1235
+ .{ .codepoint = "U+234A", .width = 1 },
1236
+ .{ .codepoint = "U+234B", .width = 1 },
1237
+ .{ .codepoint = "U+234C", .width = 1 },
1238
+ .{ .codepoint = "U+234D", .width = 1 },
1239
+ .{ .codepoint = "U+234E", .width = 1 },
1240
+ .{ .codepoint = "U+234F", .width = 1 },
1241
+ .{ .codepoint = "U+2350", .width = 1 },
1242
+ .{ .codepoint = "U+2351", .width = 1 },
1243
+ .{ .codepoint = "U+2352", .width = 1 },
1244
+ .{ .codepoint = "U+2353", .width = 1 },
1245
+ .{ .codepoint = "U+2354", .width = 1 },
1246
+ .{ .codepoint = "U+2355", .width = 1 },
1247
+ .{ .codepoint = "U+2356", .width = 1 },
1248
+ .{ .codepoint = "U+2357", .width = 1 },
1249
+ .{ .codepoint = "U+2358", .width = 1 },
1250
+ .{ .codepoint = "U+2359", .width = 1 },
1251
+ .{ .codepoint = "U+235A", .width = 1 },
1252
+ .{ .codepoint = "U+235B", .width = 1 },
1253
+ .{ .codepoint = "U+235C", .width = 1 },
1254
+ .{ .codepoint = "U+235D", .width = 1 },
1255
+ .{ .codepoint = "U+235E", .width = 1 },
1256
+ .{ .codepoint = "U+235F", .width = 1 },
1257
+ .{ .codepoint = "U+2360", .width = 1 },
1258
+ .{ .codepoint = "U+2361", .width = 1 },
1259
+ .{ .codepoint = "U+2362", .width = 1 },
1260
+ .{ .codepoint = "U+2363", .width = 1 },
1261
+ .{ .codepoint = "U+2364", .width = 1 },
1262
+ .{ .codepoint = "U+2365", .width = 1 },
1263
+ .{ .codepoint = "U+2366", .width = 1 },
1264
+ .{ .codepoint = "U+2367", .width = 1 },
1265
+ .{ .codepoint = "U+2368", .width = 1 },
1266
+ .{ .codepoint = "U+2369", .width = 1 },
1267
+ .{ .codepoint = "U+236A", .width = 1 },
1268
+ .{ .codepoint = "U+236B", .width = 1 },
1269
+ .{ .codepoint = "U+236C", .width = 1 },
1270
+ .{ .codepoint = "U+236D", .width = 1 },
1271
+ .{ .codepoint = "U+236E", .width = 1 },
1272
+ .{ .codepoint = "U+236F", .width = 1 },
1273
+ .{ .codepoint = "U+2370", .width = 1 },
1274
+ .{ .codepoint = "U+2371", .width = 1 },
1275
+ .{ .codepoint = "U+2372", .width = 1 },
1276
+ .{ .codepoint = "U+2373", .width = 1 },
1277
+ .{ .codepoint = "U+2374", .width = 1 },
1278
+ .{ .codepoint = "U+2375", .width = 1 },
1279
+ .{ .codepoint = "U+2376", .width = 1 },
1280
+ .{ .codepoint = "U+2377", .width = 1 },
1281
+ .{ .codepoint = "U+2378", .width = 1 },
1282
+ .{ .codepoint = "U+2379", .width = 1 },
1283
+ .{ .codepoint = "U+237A", .width = 1 },
1284
+ .{ .codepoint = "U+237B", .width = 1 },
1285
+ .{ .codepoint = "U+237C", .width = 1 },
1286
+ .{ .codepoint = "U+237D", .width = 1 },
1287
+ .{ .codepoint = "U+237E", .width = 1 },
1288
+ .{ .codepoint = "U+237F", .width = 1 },
1289
+ .{ .codepoint = "U+2380", .width = 1 },
1290
+ .{ .codepoint = "U+2381", .width = 1 },
1291
+ .{ .codepoint = "U+2382", .width = 1 },
1292
+ .{ .codepoint = "U+2383", .width = 1 },
1293
+ .{ .codepoint = "U+2384", .width = 1 },
1294
+ .{ .codepoint = "U+2385", .width = 1 },
1295
+ .{ .codepoint = "U+2386", .width = 1 },
1296
+ .{ .codepoint = "U+2387", .width = 1 },
1297
+ .{ .codepoint = "U+2388", .width = 1 },
1298
+ .{ .codepoint = "U+2389", .width = 1 },
1299
+ .{ .codepoint = "U+238A", .width = 1 },
1300
+ .{ .codepoint = "U+238B", .width = 1 },
1301
+ .{ .codepoint = "U+238C", .width = 1 },
1302
+ .{ .codepoint = "U+238D", .width = 1 },
1303
+ .{ .codepoint = "U+238E", .width = 1 },
1304
+ .{ .codepoint = "U+238F", .width = 1 },
1305
+ .{ .codepoint = "U+2390", .width = 1 },
1306
+ .{ .codepoint = "U+2391", .width = 1 },
1307
+ .{ .codepoint = "U+2392", .width = 1 },
1308
+ .{ .codepoint = "U+2393", .width = 1 },
1309
+ .{ .codepoint = "U+2394", .width = 1 },
1310
+ .{ .codepoint = "U+2395", .width = 1 },
1311
+ .{ .codepoint = "U+2396", .width = 1 },
1312
+ .{ .codepoint = "U+2397", .width = 1 },
1313
+ .{ .codepoint = "U+2398", .width = 1 },
1314
+ .{ .codepoint = "U+2399", .width = 1 },
1315
+ .{ .codepoint = "U+239A", .width = 1 },
1316
+ .{ .codepoint = "U+239B", .width = 1 },
1317
+ .{ .codepoint = "U+239C", .width = 1 },
1318
+ .{ .codepoint = "U+239D", .width = 1 },
1319
+ .{ .codepoint = "U+239E", .width = 1 },
1320
+ .{ .codepoint = "U+239F", .width = 1 },
1321
+ .{ .codepoint = "U+23A0", .width = 1 },
1322
+ .{ .codepoint = "U+23A1", .width = 1 },
1323
+ .{ .codepoint = "U+23A2", .width = 1 },
1324
+ .{ .codepoint = "U+23A3", .width = 1 },
1325
+ .{ .codepoint = "U+23A4", .width = 1 },
1326
+ .{ .codepoint = "U+23A5", .width = 1 },
1327
+ .{ .codepoint = "U+23A6", .width = 1 },
1328
+ .{ .codepoint = "U+23A7", .width = 1 },
1329
+ .{ .codepoint = "U+23A8", .width = 1 },
1330
+ .{ .codepoint = "U+23A9", .width = 1 },
1331
+ .{ .codepoint = "U+23AA", .width = 1 },
1332
+ .{ .codepoint = "U+23AB", .width = 1 },
1333
+ .{ .codepoint = "U+23AC", .width = 1 },
1334
+ .{ .codepoint = "U+23AD", .width = 1 },
1335
+ .{ .codepoint = "U+23AE", .width = 1 },
1336
+ .{ .codepoint = "U+23AF", .width = 1 },
1337
+ .{ .codepoint = "U+23B0", .width = 1 },
1338
+ .{ .codepoint = "U+23B1", .width = 1 },
1339
+ .{ .codepoint = "U+23B2", .width = 1 },
1340
+ .{ .codepoint = "U+23B3", .width = 1 },
1341
+ .{ .codepoint = "U+23B4", .width = 1 },
1342
+ .{ .codepoint = "U+23B5", .width = 1 },
1343
+ .{ .codepoint = "U+23B6", .width = 1 },
1344
+ .{ .codepoint = "U+23B7", .width = 1 },
1345
+ .{ .codepoint = "U+23B8", .width = 1 },
1346
+ .{ .codepoint = "U+23B9", .width = 1 },
1347
+ .{ .codepoint = "U+23BA", .width = 1 },
1348
+ .{ .codepoint = "U+23BB", .width = 1 },
1349
+ .{ .codepoint = "U+23BC", .width = 1 },
1350
+ .{ .codepoint = "U+23BD", .width = 1 },
1351
+ .{ .codepoint = "U+23BE", .width = 1 },
1352
+ .{ .codepoint = "U+23BF", .width = 1 },
1353
+ .{ .codepoint = "U+23C0", .width = 1 },
1354
+ .{ .codepoint = "U+23C1", .width = 1 },
1355
+ .{ .codepoint = "U+23C2", .width = 1 },
1356
+ .{ .codepoint = "U+23C3", .width = 1 },
1357
+ .{ .codepoint = "U+23C4", .width = 1 },
1358
+ .{ .codepoint = "U+23C5", .width = 1 },
1359
+ .{ .codepoint = "U+23C6", .width = 1 },
1360
+ .{ .codepoint = "U+23C7", .width = 1 },
1361
+ .{ .codepoint = "U+23C8", .width = 1 },
1362
+ .{ .codepoint = "U+23C9", .width = 1 },
1363
+ .{ .codepoint = "U+23CA", .width = 1 },
1364
+ .{ .codepoint = "U+23CB", .width = 1 },
1365
+ .{ .codepoint = "U+23CC", .width = 1 },
1366
+ .{ .codepoint = "U+23CD", .width = 1 },
1367
+ .{ .codepoint = "U+23CE", .width = 1 },
1368
+ .{ .codepoint = "U+23CF", .width = 1 },
1369
+ .{ .codepoint = "U+23D0", .width = 1 },
1370
+ .{ .codepoint = "U+23D1", .width = 1 },
1371
+ .{ .codepoint = "U+23D2", .width = 1 },
1372
+ .{ .codepoint = "U+23D3", .width = 1 },
1373
+ .{ .codepoint = "U+23D4", .width = 1 },
1374
+ .{ .codepoint = "U+23D5", .width = 1 },
1375
+ .{ .codepoint = "U+23D6", .width = 1 },
1376
+ .{ .codepoint = "U+23D7", .width = 1 },
1377
+ .{ .codepoint = "U+23D8", .width = 1 },
1378
+ .{ .codepoint = "U+23D9", .width = 1 },
1379
+ .{ .codepoint = "U+23DA", .width = 1 },
1380
+ .{ .codepoint = "U+23DB", .width = 1 },
1381
+ .{ .codepoint = "U+23DC", .width = 1 },
1382
+ .{ .codepoint = "U+23DD", .width = 1 },
1383
+ .{ .codepoint = "U+23DE", .width = 1 },
1384
+ .{ .codepoint = "U+23DF", .width = 1 },
1385
+ .{ .codepoint = "U+23E0", .width = 1 },
1386
+ .{ .codepoint = "U+23E1", .width = 1 },
1387
+ .{ .codepoint = "U+23E2", .width = 1 },
1388
+ .{ .codepoint = "U+23E3", .width = 1 },
1389
+ .{ .codepoint = "U+23E4", .width = 1 },
1390
+ .{ .codepoint = "U+23E5", .width = 1 },
1391
+ .{ .codepoint = "U+23E6", .width = 1 },
1392
+ .{ .codepoint = "U+23E7", .width = 1 },
1393
+ .{ .codepoint = "U+23E8", .width = 1 },
1394
+ .{ .codepoint = "U+23E9", .width = 2 },
1395
+ .{ .codepoint = "U+23EA", .width = 2 },
1396
+ .{ .codepoint = "U+23EB", .width = 2 },
1397
+ .{ .codepoint = "U+23EC", .width = 2 },
1398
+ .{ .codepoint = "U+23ED", .width = 1 },
1399
+ .{ .codepoint = "U+23EE", .width = 1 },
1400
+ .{ .codepoint = "U+23EF", .width = 1 },
1401
+ .{ .codepoint = "U+23F0", .width = 2 },
1402
+ .{ .codepoint = "U+23F1", .width = 1 },
1403
+ .{ .codepoint = "U+23F2", .width = 1 },
1404
+ .{ .codepoint = "U+23F3", .width = 2 },
1405
+ .{ .codepoint = "U+23F4", .width = 1 },
1406
+ .{ .codepoint = "U+23F5", .width = 1 },
1407
+ .{ .codepoint = "U+23F6", .width = 1 },
1408
+ .{ .codepoint = "U+23F7", .width = 1 },
1409
+ .{ .codepoint = "U+23F8", .width = 1 },
1410
+ .{ .codepoint = "U+23F9", .width = 1 },
1411
+ .{ .codepoint = "U+23FA", .width = 1 },
1412
+ .{ .codepoint = "U+23FB", .width = 1 },
1413
+ .{ .codepoint = "U+23FC", .width = 1 },
1414
+ .{ .codepoint = "U+23FD", .width = 1 },
1415
+ .{ .codepoint = "U+23FE", .width = 1 },
1416
+ .{ .codepoint = "U+23FF", .width = 1 },
1417
+ .{ .codepoint = "U+2500", .width = 1 },
1418
+ .{ .codepoint = "U+2501", .width = 1 },
1419
+ .{ .codepoint = "U+2502", .width = 1 },
1420
+ .{ .codepoint = "U+2503", .width = 1 },
1421
+ .{ .codepoint = "U+2504", .width = 1 },
1422
+ .{ .codepoint = "U+2505", .width = 1 },
1423
+ .{ .codepoint = "U+2506", .width = 1 },
1424
+ .{ .codepoint = "U+2507", .width = 1 },
1425
+ .{ .codepoint = "U+2508", .width = 1 },
1426
+ .{ .codepoint = "U+2509", .width = 1 },
1427
+ .{ .codepoint = "U+250A", .width = 1 },
1428
+ .{ .codepoint = "U+250B", .width = 1 },
1429
+ .{ .codepoint = "U+250C", .width = 1 },
1430
+ .{ .codepoint = "U+250D", .width = 1 },
1431
+ .{ .codepoint = "U+250E", .width = 1 },
1432
+ .{ .codepoint = "U+250F", .width = 1 },
1433
+ .{ .codepoint = "U+2510", .width = 1 },
1434
+ .{ .codepoint = "U+2511", .width = 1 },
1435
+ .{ .codepoint = "U+2512", .width = 1 },
1436
+ .{ .codepoint = "U+2513", .width = 1 },
1437
+ .{ .codepoint = "U+2514", .width = 1 },
1438
+ .{ .codepoint = "U+2515", .width = 1 },
1439
+ .{ .codepoint = "U+2516", .width = 1 },
1440
+ .{ .codepoint = "U+2517", .width = 1 },
1441
+ .{ .codepoint = "U+2518", .width = 1 },
1442
+ .{ .codepoint = "U+2519", .width = 1 },
1443
+ .{ .codepoint = "U+251A", .width = 1 },
1444
+ .{ .codepoint = "U+251B", .width = 1 },
1445
+ .{ .codepoint = "U+251C", .width = 1 },
1446
+ .{ .codepoint = "U+251D", .width = 1 },
1447
+ .{ .codepoint = "U+251E", .width = 1 },
1448
+ .{ .codepoint = "U+251F", .width = 1 },
1449
+ .{ .codepoint = "U+2520", .width = 1 },
1450
+ .{ .codepoint = "U+2521", .width = 1 },
1451
+ .{ .codepoint = "U+2522", .width = 1 },
1452
+ .{ .codepoint = "U+2523", .width = 1 },
1453
+ .{ .codepoint = "U+2524", .width = 1 },
1454
+ .{ .codepoint = "U+2525", .width = 1 },
1455
+ .{ .codepoint = "U+2526", .width = 1 },
1456
+ .{ .codepoint = "U+2527", .width = 1 },
1457
+ .{ .codepoint = "U+2528", .width = 1 },
1458
+ .{ .codepoint = "U+2529", .width = 1 },
1459
+ .{ .codepoint = "U+252A", .width = 1 },
1460
+ .{ .codepoint = "U+252B", .width = 1 },
1461
+ .{ .codepoint = "U+252C", .width = 1 },
1462
+ .{ .codepoint = "U+252D", .width = 1 },
1463
+ .{ .codepoint = "U+252E", .width = 1 },
1464
+ .{ .codepoint = "U+252F", .width = 1 },
1465
+ .{ .codepoint = "U+2530", .width = 1 },
1466
+ .{ .codepoint = "U+2531", .width = 1 },
1467
+ .{ .codepoint = "U+2532", .width = 1 },
1468
+ .{ .codepoint = "U+2533", .width = 1 },
1469
+ .{ .codepoint = "U+2534", .width = 1 },
1470
+ .{ .codepoint = "U+2535", .width = 1 },
1471
+ .{ .codepoint = "U+2536", .width = 1 },
1472
+ .{ .codepoint = "U+2537", .width = 1 },
1473
+ .{ .codepoint = "U+2538", .width = 1 },
1474
+ .{ .codepoint = "U+2539", .width = 1 },
1475
+ .{ .codepoint = "U+253A", .width = 1 },
1476
+ .{ .codepoint = "U+253B", .width = 1 },
1477
+ .{ .codepoint = "U+253C", .width = 1 },
1478
+ .{ .codepoint = "U+253D", .width = 1 },
1479
+ .{ .codepoint = "U+253E", .width = 1 },
1480
+ .{ .codepoint = "U+253F", .width = 1 },
1481
+ .{ .codepoint = "U+2540", .width = 1 },
1482
+ .{ .codepoint = "U+2541", .width = 1 },
1483
+ .{ .codepoint = "U+2542", .width = 1 },
1484
+ .{ .codepoint = "U+2543", .width = 1 },
1485
+ .{ .codepoint = "U+2544", .width = 1 },
1486
+ .{ .codepoint = "U+2545", .width = 1 },
1487
+ .{ .codepoint = "U+2546", .width = 1 },
1488
+ .{ .codepoint = "U+2547", .width = 1 },
1489
+ .{ .codepoint = "U+2548", .width = 1 },
1490
+ .{ .codepoint = "U+2549", .width = 1 },
1491
+ .{ .codepoint = "U+254A", .width = 1 },
1492
+ .{ .codepoint = "U+254B", .width = 1 },
1493
+ .{ .codepoint = "U+254C", .width = 1 },
1494
+ .{ .codepoint = "U+254D", .width = 1 },
1495
+ .{ .codepoint = "U+254E", .width = 1 },
1496
+ .{ .codepoint = "U+254F", .width = 1 },
1497
+ .{ .codepoint = "U+2550", .width = 1 },
1498
+ .{ .codepoint = "U+2551", .width = 1 },
1499
+ .{ .codepoint = "U+2552", .width = 1 },
1500
+ .{ .codepoint = "U+2553", .width = 1 },
1501
+ .{ .codepoint = "U+2554", .width = 1 },
1502
+ .{ .codepoint = "U+2555", .width = 1 },
1503
+ .{ .codepoint = "U+2556", .width = 1 },
1504
+ .{ .codepoint = "U+2557", .width = 1 },
1505
+ .{ .codepoint = "U+2558", .width = 1 },
1506
+ .{ .codepoint = "U+2559", .width = 1 },
1507
+ .{ .codepoint = "U+255A", .width = 1 },
1508
+ .{ .codepoint = "U+255B", .width = 1 },
1509
+ .{ .codepoint = "U+255C", .width = 1 },
1510
+ .{ .codepoint = "U+255D", .width = 1 },
1511
+ .{ .codepoint = "U+255E", .width = 1 },
1512
+ .{ .codepoint = "U+255F", .width = 1 },
1513
+ .{ .codepoint = "U+2560", .width = 1 },
1514
+ .{ .codepoint = "U+2561", .width = 1 },
1515
+ .{ .codepoint = "U+2562", .width = 1 },
1516
+ .{ .codepoint = "U+2563", .width = 1 },
1517
+ .{ .codepoint = "U+2564", .width = 1 },
1518
+ .{ .codepoint = "U+2565", .width = 1 },
1519
+ .{ .codepoint = "U+2566", .width = 1 },
1520
+ .{ .codepoint = "U+2567", .width = 1 },
1521
+ .{ .codepoint = "U+2568", .width = 1 },
1522
+ .{ .codepoint = "U+2569", .width = 1 },
1523
+ .{ .codepoint = "U+256A", .width = 1 },
1524
+ .{ .codepoint = "U+256B", .width = 1 },
1525
+ .{ .codepoint = "U+256C", .width = 1 },
1526
+ .{ .codepoint = "U+256D", .width = 1 },
1527
+ .{ .codepoint = "U+256E", .width = 1 },
1528
+ .{ .codepoint = "U+256F", .width = 1 },
1529
+ .{ .codepoint = "U+2570", .width = 1 },
1530
+ .{ .codepoint = "U+2571", .width = 1 },
1531
+ .{ .codepoint = "U+2572", .width = 1 },
1532
+ .{ .codepoint = "U+2573", .width = 1 },
1533
+ .{ .codepoint = "U+2574", .width = 1 },
1534
+ .{ .codepoint = "U+2575", .width = 1 },
1535
+ .{ .codepoint = "U+2576", .width = 1 },
1536
+ .{ .codepoint = "U+2577", .width = 1 },
1537
+ .{ .codepoint = "U+2578", .width = 1 },
1538
+ .{ .codepoint = "U+2579", .width = 1 },
1539
+ .{ .codepoint = "U+257A", .width = 1 },
1540
+ .{ .codepoint = "U+257B", .width = 1 },
1541
+ .{ .codepoint = "U+257C", .width = 1 },
1542
+ .{ .codepoint = "U+257D", .width = 1 },
1543
+ .{ .codepoint = "U+257E", .width = 1 },
1544
+ .{ .codepoint = "U+257F", .width = 1 },
1545
+ .{ .codepoint = "U+2580", .width = 1 },
1546
+ .{ .codepoint = "U+2581", .width = 1 },
1547
+ .{ .codepoint = "U+2582", .width = 1 },
1548
+ .{ .codepoint = "U+2583", .width = 1 },
1549
+ .{ .codepoint = "U+2584", .width = 1 },
1550
+ .{ .codepoint = "U+2585", .width = 1 },
1551
+ .{ .codepoint = "U+2586", .width = 1 },
1552
+ .{ .codepoint = "U+2587", .width = 1 },
1553
+ .{ .codepoint = "U+2588", .width = 1 },
1554
+ .{ .codepoint = "U+2589", .width = 1 },
1555
+ .{ .codepoint = "U+258A", .width = 1 },
1556
+ .{ .codepoint = "U+258B", .width = 1 },
1557
+ .{ .codepoint = "U+258C", .width = 1 },
1558
+ .{ .codepoint = "U+258D", .width = 1 },
1559
+ .{ .codepoint = "U+258E", .width = 1 },
1560
+ .{ .codepoint = "U+258F", .width = 1 },
1561
+ .{ .codepoint = "U+2590", .width = 1 },
1562
+ .{ .codepoint = "U+2591", .width = 1 },
1563
+ .{ .codepoint = "U+2592", .width = 1 },
1564
+ .{ .codepoint = "U+2593", .width = 1 },
1565
+ .{ .codepoint = "U+2594", .width = 1 },
1566
+ .{ .codepoint = "U+2595", .width = 1 },
1567
+ .{ .codepoint = "U+2596", .width = 1 },
1568
+ .{ .codepoint = "U+2597", .width = 1 },
1569
+ .{ .codepoint = "U+2598", .width = 1 },
1570
+ .{ .codepoint = "U+2599", .width = 1 },
1571
+ .{ .codepoint = "U+259A", .width = 1 },
1572
+ .{ .codepoint = "U+259B", .width = 1 },
1573
+ .{ .codepoint = "U+259C", .width = 1 },
1574
+ .{ .codepoint = "U+259D", .width = 1 },
1575
+ .{ .codepoint = "U+259E", .width = 1 },
1576
+ .{ .codepoint = "U+259F", .width = 1 },
1577
+ .{ .codepoint = "U+25A0", .width = 1 },
1578
+ .{ .codepoint = "U+25A1", .width = 1 },
1579
+ .{ .codepoint = "U+25A2", .width = 1 },
1580
+ .{ .codepoint = "U+25A3", .width = 1 },
1581
+ .{ .codepoint = "U+25A4", .width = 1 },
1582
+ .{ .codepoint = "U+25A5", .width = 1 },
1583
+ .{ .codepoint = "U+25A6", .width = 1 },
1584
+ .{ .codepoint = "U+25A7", .width = 1 },
1585
+ .{ .codepoint = "U+25A8", .width = 1 },
1586
+ .{ .codepoint = "U+25A9", .width = 1 },
1587
+ .{ .codepoint = "U+25AA", .width = 1 },
1588
+ .{ .codepoint = "U+25AB", .width = 1 },
1589
+ .{ .codepoint = "U+25AC", .width = 1 },
1590
+ .{ .codepoint = "U+25AD", .width = 1 },
1591
+ .{ .codepoint = "U+25AE", .width = 1 },
1592
+ .{ .codepoint = "U+25AF", .width = 1 },
1593
+ .{ .codepoint = "U+25B0", .width = 1 },
1594
+ .{ .codepoint = "U+25B1", .width = 1 },
1595
+ .{ .codepoint = "U+25B2", .width = 1 },
1596
+ .{ .codepoint = "U+25B3", .width = 1 },
1597
+ .{ .codepoint = "U+25B4", .width = 1 },
1598
+ .{ .codepoint = "U+25B5", .width = 1 },
1599
+ .{ .codepoint = "U+25B6", .width = 1 },
1600
+ .{ .codepoint = "U+25B7", .width = 1 },
1601
+ .{ .codepoint = "U+25B8", .width = 1 },
1602
+ .{ .codepoint = "U+25B9", .width = 1 },
1603
+ .{ .codepoint = "U+25BA", .width = 1 },
1604
+ .{ .codepoint = "U+25BB", .width = 1 },
1605
+ .{ .codepoint = "U+25BC", .width = 1 },
1606
+ .{ .codepoint = "U+25BD", .width = 1 },
1607
+ .{ .codepoint = "U+25BE", .width = 1 },
1608
+ .{ .codepoint = "U+25BF", .width = 1 },
1609
+ .{ .codepoint = "U+25C0", .width = 1 },
1610
+ .{ .codepoint = "U+25C1", .width = 1 },
1611
+ .{ .codepoint = "U+25C2", .width = 1 },
1612
+ .{ .codepoint = "U+25C3", .width = 1 },
1613
+ .{ .codepoint = "U+25C4", .width = 1 },
1614
+ .{ .codepoint = "U+25C5", .width = 1 },
1615
+ .{ .codepoint = "U+25C6", .width = 1 },
1616
+ .{ .codepoint = "U+25C7", .width = 1 },
1617
+ .{ .codepoint = "U+25C8", .width = 1 },
1618
+ .{ .codepoint = "U+25C9", .width = 1 },
1619
+ .{ .codepoint = "U+25CA", .width = 1 },
1620
+ .{ .codepoint = "U+25CB", .width = 1 },
1621
+ .{ .codepoint = "U+25CC", .width = 1 },
1622
+ .{ .codepoint = "U+25CD", .width = 1 },
1623
+ .{ .codepoint = "U+25CE", .width = 1 },
1624
+ .{ .codepoint = "U+25CF", .width = 1 },
1625
+ .{ .codepoint = "U+25D0", .width = 1 },
1626
+ .{ .codepoint = "U+25D1", .width = 1 },
1627
+ .{ .codepoint = "U+25D2", .width = 1 },
1628
+ .{ .codepoint = "U+25D3", .width = 1 },
1629
+ .{ .codepoint = "U+25D4", .width = 1 },
1630
+ .{ .codepoint = "U+25D5", .width = 1 },
1631
+ .{ .codepoint = "U+25D6", .width = 1 },
1632
+ .{ .codepoint = "U+25D7", .width = 1 },
1633
+ .{ .codepoint = "U+25D8", .width = 1 },
1634
+ .{ .codepoint = "U+25D9", .width = 1 },
1635
+ .{ .codepoint = "U+25DA", .width = 1 },
1636
+ .{ .codepoint = "U+25DB", .width = 1 },
1637
+ .{ .codepoint = "U+25DC", .width = 1 },
1638
+ .{ .codepoint = "U+25DD", .width = 1 },
1639
+ .{ .codepoint = "U+25DE", .width = 1 },
1640
+ .{ .codepoint = "U+25DF", .width = 1 },
1641
+ .{ .codepoint = "U+25E0", .width = 1 },
1642
+ .{ .codepoint = "U+25E1", .width = 1 },
1643
+ .{ .codepoint = "U+25E2", .width = 1 },
1644
+ .{ .codepoint = "U+25E3", .width = 1 },
1645
+ .{ .codepoint = "U+25E4", .width = 1 },
1646
+ .{ .codepoint = "U+25E5", .width = 1 },
1647
+ .{ .codepoint = "U+25E6", .width = 1 },
1648
+ .{ .codepoint = "U+25E7", .width = 1 },
1649
+ .{ .codepoint = "U+25E8", .width = 1 },
1650
+ .{ .codepoint = "U+25E9", .width = 1 },
1651
+ .{ .codepoint = "U+25EA", .width = 1 },
1652
+ .{ .codepoint = "U+25EB", .width = 1 },
1653
+ .{ .codepoint = "U+25EC", .width = 1 },
1654
+ .{ .codepoint = "U+25ED", .width = 1 },
1655
+ .{ .codepoint = "U+25EE", .width = 1 },
1656
+ .{ .codepoint = "U+25EF", .width = 1 },
1657
+ .{ .codepoint = "U+25F0", .width = 1 },
1658
+ .{ .codepoint = "U+25F1", .width = 1 },
1659
+ .{ .codepoint = "U+25F2", .width = 1 },
1660
+ .{ .codepoint = "U+25F3", .width = 1 },
1661
+ .{ .codepoint = "U+25F4", .width = 1 },
1662
+ .{ .codepoint = "U+25F5", .width = 1 },
1663
+ .{ .codepoint = "U+25F6", .width = 1 },
1664
+ .{ .codepoint = "U+25F7", .width = 1 },
1665
+ .{ .codepoint = "U+25F8", .width = 1 },
1666
+ .{ .codepoint = "U+25F9", .width = 1 },
1667
+ .{ .codepoint = "U+25FA", .width = 1 },
1668
+ .{ .codepoint = "U+25FB", .width = 1 },
1669
+ .{ .codepoint = "U+25FC", .width = 1 },
1670
+ .{ .codepoint = "U+25FD", .width = 2 },
1671
+ .{ .codepoint = "U+25FE", .width = 2 },
1672
+ .{ .codepoint = "U+25FF", .width = 1 },
1673
+ .{ .codepoint = "U+2600", .width = 1 },
1674
+ .{ .codepoint = "U+2601", .width = 1 },
1675
+ .{ .codepoint = "U+2602", .width = 1 },
1676
+ .{ .codepoint = "U+2603", .width = 1 },
1677
+ .{ .codepoint = "U+2604", .width = 1 },
1678
+ .{ .codepoint = "U+2605", .width = 1 },
1679
+ .{ .codepoint = "U+2606", .width = 1 },
1680
+ .{ .codepoint = "U+2607", .width = 1 },
1681
+ .{ .codepoint = "U+2608", .width = 1 },
1682
+ .{ .codepoint = "U+2609", .width = 1 },
1683
+ .{ .codepoint = "U+260A", .width = 1 },
1684
+ .{ .codepoint = "U+260B", .width = 1 },
1685
+ .{ .codepoint = "U+260C", .width = 1 },
1686
+ .{ .codepoint = "U+260D", .width = 1 },
1687
+ .{ .codepoint = "U+260E", .width = 1 },
1688
+ .{ .codepoint = "U+260F", .width = 1 },
1689
+ .{ .codepoint = "U+2610", .width = 1 },
1690
+ .{ .codepoint = "U+2611", .width = 1 },
1691
+ .{ .codepoint = "U+2612", .width = 1 },
1692
+ .{ .codepoint = "U+2613", .width = 1 },
1693
+ .{ .codepoint = "U+2614", .width = 2 },
1694
+ .{ .codepoint = "U+2615", .width = 2 },
1695
+ .{ .codepoint = "U+2616", .width = 1 },
1696
+ .{ .codepoint = "U+2617", .width = 1 },
1697
+ .{ .codepoint = "U+2618", .width = 1 },
1698
+ .{ .codepoint = "U+2619", .width = 1 },
1699
+ .{ .codepoint = "U+261A", .width = 1 },
1700
+ .{ .codepoint = "U+261B", .width = 1 },
1701
+ .{ .codepoint = "U+261C", .width = 1 },
1702
+ .{ .codepoint = "U+261D", .width = 1 },
1703
+ .{ .codepoint = "U+261E", .width = 1 },
1704
+ .{ .codepoint = "U+261F", .width = 1 },
1705
+ .{ .codepoint = "U+2620", .width = 1 },
1706
+ .{ .codepoint = "U+2621", .width = 1 },
1707
+ .{ .codepoint = "U+2622", .width = 2 },
1708
+ .{ .codepoint = "U+2623", .width = 2 },
1709
+ .{ .codepoint = "U+2624", .width = 1 },
1710
+ .{ .codepoint = "U+2625", .width = 1 },
1711
+ .{ .codepoint = "U+2626", .width = 1 },
1712
+ .{ .codepoint = "U+2627", .width = 1 },
1713
+ .{ .codepoint = "U+2628", .width = 1 },
1714
+ .{ .codepoint = "U+2629", .width = 1 },
1715
+ .{ .codepoint = "U+262A", .width = 1 },
1716
+ .{ .codepoint = "U+262B", .width = 1 },
1717
+ .{ .codepoint = "U+262C", .width = 1 },
1718
+ .{ .codepoint = "U+262D", .width = 1 },
1719
+ .{ .codepoint = "U+262E", .width = 1 },
1720
+ .{ .codepoint = "U+262F", .width = 1 },
1721
+ .{ .codepoint = "U+2630", .width = 2 },
1722
+ .{ .codepoint = "U+2631", .width = 2 },
1723
+ .{ .codepoint = "U+2632", .width = 2 },
1724
+ .{ .codepoint = "U+2633", .width = 2 },
1725
+ .{ .codepoint = "U+2634", .width = 2 },
1726
+ .{ .codepoint = "U+2635", .width = 2 },
1727
+ .{ .codepoint = "U+2636", .width = 2 },
1728
+ .{ .codepoint = "U+2637", .width = 2 },
1729
+ .{ .codepoint = "U+2638", .width = 1 },
1730
+ .{ .codepoint = "U+2639", .width = 1 },
1731
+ .{ .codepoint = "U+263A", .width = 1 },
1732
+ .{ .codepoint = "U+263B", .width = 1 },
1733
+ .{ .codepoint = "U+263C", .width = 1 },
1734
+ .{ .codepoint = "U+263D", .width = 1 },
1735
+ .{ .codepoint = "U+263E", .width = 1 },
1736
+ .{ .codepoint = "U+263F", .width = 1 },
1737
+ .{ .codepoint = "U+2640", .width = 1 },
1738
+ .{ .codepoint = "U+2641", .width = 1 },
1739
+ .{ .codepoint = "U+2642", .width = 1 },
1740
+ .{ .codepoint = "U+2643", .width = 1 },
1741
+ .{ .codepoint = "U+2644", .width = 1 },
1742
+ .{ .codepoint = "U+2645", .width = 1 },
1743
+ .{ .codepoint = "U+2646", .width = 1 },
1744
+ .{ .codepoint = "U+2647", .width = 1 },
1745
+ .{ .codepoint = "U+2648", .width = 2 },
1746
+ .{ .codepoint = "U+2649", .width = 2 },
1747
+ .{ .codepoint = "U+264A", .width = 2 },
1748
+ .{ .codepoint = "U+264B", .width = 2 },
1749
+ .{ .codepoint = "U+264C", .width = 2 },
1750
+ .{ .codepoint = "U+264D", .width = 2 },
1751
+ .{ .codepoint = "U+264E", .width = 2 },
1752
+ .{ .codepoint = "U+264F", .width = 2 },
1753
+ .{ .codepoint = "U+2650", .width = 2 },
1754
+ .{ .codepoint = "U+2651", .width = 2 },
1755
+ .{ .codepoint = "U+2652", .width = 2 },
1756
+ .{ .codepoint = "U+2653", .width = 2 },
1757
+ .{ .codepoint = "U+2654", .width = 1 },
1758
+ .{ .codepoint = "U+2655", .width = 1 },
1759
+ .{ .codepoint = "U+2656", .width = 1 },
1760
+ .{ .codepoint = "U+2657", .width = 1 },
1761
+ .{ .codepoint = "U+2658", .width = 1 },
1762
+ .{ .codepoint = "U+2659", .width = 1 },
1763
+ .{ .codepoint = "U+265A", .width = 1 },
1764
+ .{ .codepoint = "U+265B", .width = 1 },
1765
+ .{ .codepoint = "U+265C", .width = 1 },
1766
+ .{ .codepoint = "U+265D", .width = 1 },
1767
+ .{ .codepoint = "U+265E", .width = 1 },
1768
+ .{ .codepoint = "U+265F", .width = 1 },
1769
+ .{ .codepoint = "U+2660", .width = 1 },
1770
+ .{ .codepoint = "U+2661", .width = 1 },
1771
+ .{ .codepoint = "U+2662", .width = 1 },
1772
+ .{ .codepoint = "U+2663", .width = 1 },
1773
+ .{ .codepoint = "U+2664", .width = 1 },
1774
+ .{ .codepoint = "U+2665", .width = 1 },
1775
+ .{ .codepoint = "U+2666", .width = 1 },
1776
+ .{ .codepoint = "U+2667", .width = 1 },
1777
+ .{ .codepoint = "U+2668", .width = 1 },
1778
+ .{ .codepoint = "U+2669", .width = 1 },
1779
+ .{ .codepoint = "U+266A", .width = 1 },
1780
+ .{ .codepoint = "U+266B", .width = 1 },
1781
+ .{ .codepoint = "U+266C", .width = 1 },
1782
+ .{ .codepoint = "U+266D", .width = 1 },
1783
+ .{ .codepoint = "U+266E", .width = 1 },
1784
+ .{ .codepoint = "U+266F", .width = 1 },
1785
+ .{ .codepoint = "U+2670", .width = 1 },
1786
+ .{ .codepoint = "U+2671", .width = 1 },
1787
+ .{ .codepoint = "U+2672", .width = 1 },
1788
+ .{ .codepoint = "U+2673", .width = 1 },
1789
+ .{ .codepoint = "U+2674", .width = 1 },
1790
+ .{ .codepoint = "U+2675", .width = 1 },
1791
+ .{ .codepoint = "U+2676", .width = 1 },
1792
+ .{ .codepoint = "U+2677", .width = 1 },
1793
+ .{ .codepoint = "U+2678", .width = 1 },
1794
+ .{ .codepoint = "U+2679", .width = 1 },
1795
+ .{ .codepoint = "U+267A", .width = 1 },
1796
+ .{ .codepoint = "U+267B", .width = 1 },
1797
+ .{ .codepoint = "U+267C", .width = 1 },
1798
+ .{ .codepoint = "U+267D", .width = 1 },
1799
+ .{ .codepoint = "U+267E", .width = 1 },
1800
+ .{ .codepoint = "U+267F", .width = 2 },
1801
+ .{ .codepoint = "U+2680", .width = 1 },
1802
+ .{ .codepoint = "U+2681", .width = 1 },
1803
+ .{ .codepoint = "U+2682", .width = 1 },
1804
+ .{ .codepoint = "U+2683", .width = 1 },
1805
+ .{ .codepoint = "U+2684", .width = 1 },
1806
+ .{ .codepoint = "U+2685", .width = 1 },
1807
+ .{ .codepoint = "U+2686", .width = 1 },
1808
+ .{ .codepoint = "U+2687", .width = 1 },
1809
+ .{ .codepoint = "U+2688", .width = 1 },
1810
+ .{ .codepoint = "U+2689", .width = 1 },
1811
+ .{ .codepoint = "U+268A", .width = 2 },
1812
+ .{ .codepoint = "U+268B", .width = 2 },
1813
+ .{ .codepoint = "U+268C", .width = 2 },
1814
+ .{ .codepoint = "U+268D", .width = 2 },
1815
+ .{ .codepoint = "U+268E", .width = 2 },
1816
+ .{ .codepoint = "U+268F", .width = 2 },
1817
+ .{ .codepoint = "U+2690", .width = 1 },
1818
+ .{ .codepoint = "U+2691", .width = 1 },
1819
+ .{ .codepoint = "U+2692", .width = 1 },
1820
+ .{ .codepoint = "U+2693", .width = 2 },
1821
+ .{ .codepoint = "U+2694", .width = 1 },
1822
+ .{ .codepoint = "U+2695", .width = 1 },
1823
+ .{ .codepoint = "U+2696", .width = 1 },
1824
+ .{ .codepoint = "U+2697", .width = 1 },
1825
+ .{ .codepoint = "U+2698", .width = 1 },
1826
+ .{ .codepoint = "U+2699", .width = 1 },
1827
+ .{ .codepoint = "U+269A", .width = 1 },
1828
+ .{ .codepoint = "U+269B", .width = 2 },
1829
+ .{ .codepoint = "U+269C", .width = 1 },
1830
+ .{ .codepoint = "U+269D", .width = 1 },
1831
+ .{ .codepoint = "U+269E", .width = 1 },
1832
+ .{ .codepoint = "U+269F", .width = 1 },
1833
+ .{ .codepoint = "U+26A0", .width = 2 },
1834
+ .{ .codepoint = "U+26A1", .width = 2 },
1835
+ .{ .codepoint = "U+26A2", .width = 1 },
1836
+ .{ .codepoint = "U+26A3", .width = 1 },
1837
+ .{ .codepoint = "U+26A4", .width = 1 },
1838
+ .{ .codepoint = "U+26A5", .width = 1 },
1839
+ .{ .codepoint = "U+26A6", .width = 1 },
1840
+ .{ .codepoint = "U+26A7", .width = 1 },
1841
+ .{ .codepoint = "U+26A8", .width = 1 },
1842
+ .{ .codepoint = "U+26A9", .width = 1 },
1843
+ .{ .codepoint = "U+26AA", .width = 2 },
1844
+ .{ .codepoint = "U+26AB", .width = 2 },
1845
+ .{ .codepoint = "U+26AC", .width = 1 },
1846
+ .{ .codepoint = "U+26AD", .width = 1 },
1847
+ .{ .codepoint = "U+26AE", .width = 1 },
1848
+ .{ .codepoint = "U+26AF", .width = 1 },
1849
+ .{ .codepoint = "U+26B0", .width = 1 },
1850
+ .{ .codepoint = "U+26B1", .width = 1 },
1851
+ .{ .codepoint = "U+26B2", .width = 1 },
1852
+ .{ .codepoint = "U+26B3", .width = 1 },
1853
+ .{ .codepoint = "U+26B4", .width = 1 },
1854
+ .{ .codepoint = "U+26B5", .width = 1 },
1855
+ .{ .codepoint = "U+26B6", .width = 1 },
1856
+ .{ .codepoint = "U+26B7", .width = 1 },
1857
+ .{ .codepoint = "U+26B8", .width = 1 },
1858
+ .{ .codepoint = "U+26B9", .width = 1 },
1859
+ .{ .codepoint = "U+26BA", .width = 1 },
1860
+ .{ .codepoint = "U+26BB", .width = 1 },
1861
+ .{ .codepoint = "U+26BC", .width = 1 },
1862
+ .{ .codepoint = "U+26BD", .width = 2 },
1863
+ .{ .codepoint = "U+26BE", .width = 2 },
1864
+ .{ .codepoint = "U+26BF", .width = 1 },
1865
+ .{ .codepoint = "U+26C0", .width = 1 },
1866
+ .{ .codepoint = "U+26C1", .width = 1 },
1867
+ .{ .codepoint = "U+26C2", .width = 1 },
1868
+ .{ .codepoint = "U+26C3", .width = 1 },
1869
+ .{ .codepoint = "U+26C4", .width = 2 },
1870
+ .{ .codepoint = "U+26C5", .width = 2 },
1871
+ .{ .codepoint = "U+26C6", .width = 1 },
1872
+ .{ .codepoint = "U+26C7", .width = 1 },
1873
+ .{ .codepoint = "U+26C8", .width = 1 },
1874
+ .{ .codepoint = "U+26C9", .width = 1 },
1875
+ .{ .codepoint = "U+26CA", .width = 1 },
1876
+ .{ .codepoint = "U+26CB", .width = 1 },
1877
+ .{ .codepoint = "U+26CC", .width = 1 },
1878
+ .{ .codepoint = "U+26CD", .width = 1 },
1879
+ .{ .codepoint = "U+26CE", .width = 2 },
1880
+ .{ .codepoint = "U+26CF", .width = 1 },
1881
+ .{ .codepoint = "U+26D0", .width = 1 },
1882
+ .{ .codepoint = "U+26D1", .width = 2 },
1883
+ .{ .codepoint = "U+26D2", .width = 1 },
1884
+ .{ .codepoint = "U+26D3", .width = 1 },
1885
+ .{ .codepoint = "U+26D4", .width = 2 },
1886
+ .{ .codepoint = "U+26D5", .width = 1 },
1887
+ .{ .codepoint = "U+26D6", .width = 1 },
1888
+ .{ .codepoint = "U+26D7", .width = 1 },
1889
+ .{ .codepoint = "U+26D8", .width = 1 },
1890
+ .{ .codepoint = "U+26D9", .width = 1 },
1891
+ .{ .codepoint = "U+26DA", .width = 1 },
1892
+ .{ .codepoint = "U+26DB", .width = 1 },
1893
+ .{ .codepoint = "U+26DC", .width = 1 },
1894
+ .{ .codepoint = "U+26DD", .width = 1 },
1895
+ .{ .codepoint = "U+26DE", .width = 1 },
1896
+ .{ .codepoint = "U+26DF", .width = 1 },
1897
+ .{ .codepoint = "U+26E0", .width = 1 },
1898
+ .{ .codepoint = "U+26E1", .width = 1 },
1899
+ .{ .codepoint = "U+26E2", .width = 1 },
1900
+ .{ .codepoint = "U+26E3", .width = 1 },
1901
+ .{ .codepoint = "U+26E4", .width = 1 },
1902
+ .{ .codepoint = "U+26E5", .width = 1 },
1903
+ .{ .codepoint = "U+26E6", .width = 1 },
1904
+ .{ .codepoint = "U+26E7", .width = 1 },
1905
+ .{ .codepoint = "U+26E8", .width = 1 },
1906
+ .{ .codepoint = "U+26E9", .width = 1 },
1907
+ .{ .codepoint = "U+26EA", .width = 2 },
1908
+ .{ .codepoint = "U+26EB", .width = 1 },
1909
+ .{ .codepoint = "U+26EC", .width = 1 },
1910
+ .{ .codepoint = "U+26ED", .width = 1 },
1911
+ .{ .codepoint = "U+26EE", .width = 1 },
1912
+ .{ .codepoint = "U+26EF", .width = 1 },
1913
+ .{ .codepoint = "U+26F0", .width = 1 },
1914
+ .{ .codepoint = "U+26F1", .width = 1 },
1915
+ .{ .codepoint = "U+26F2", .width = 2 },
1916
+ .{ .codepoint = "U+26F3", .width = 2 },
1917
+ .{ .codepoint = "U+26F4", .width = 1 },
1918
+ .{ .codepoint = "U+26F5", .width = 2 },
1919
+ .{ .codepoint = "U+26F6", .width = 1 },
1920
+ .{ .codepoint = "U+26F7", .width = 1 },
1921
+ .{ .codepoint = "U+26F8", .width = 1 },
1922
+ .{ .codepoint = "U+26F9", .width = 1 },
1923
+ .{ .codepoint = "U+26FA", .width = 2 },
1924
+ .{ .codepoint = "U+26FB", .width = 1 },
1925
+ .{ .codepoint = "U+26FC", .width = 1 },
1926
+ .{ .codepoint = "U+26FD", .width = 2 },
1927
+ .{ .codepoint = "U+26FE", .width = 1 },
1928
+ .{ .codepoint = "U+26FF", .width = 1 },
1929
+ .{ .codepoint = "U+2700", .width = 1 },
1930
+ .{ .codepoint = "U+2701", .width = 1 },
1931
+ .{ .codepoint = "U+2702", .width = 1 },
1932
+ .{ .codepoint = "U+2703", .width = 1 },
1933
+ .{ .codepoint = "U+2704", .width = 1 },
1934
+ .{ .codepoint = "U+2705", .width = 2 },
1935
+ .{ .codepoint = "U+2706", .width = 1 },
1936
+ .{ .codepoint = "U+2707", .width = 1 },
1937
+ .{ .codepoint = "U+2708", .width = 1 },
1938
+ .{ .codepoint = "U+2709", .width = 1 },
1939
+ .{ .codepoint = "U+270A", .width = 2 },
1940
+ .{ .codepoint = "U+270B", .width = 2 },
1941
+ .{ .codepoint = "U+270C", .width = 1 },
1942
+ .{ .codepoint = "U+270D", .width = 1 },
1943
+ .{ .codepoint = "U+270E", .width = 1 },
1944
+ .{ .codepoint = "U+270F", .width = 1 },
1945
+ .{ .codepoint = "U+2710", .width = 1 },
1946
+ .{ .codepoint = "U+2711", .width = 1 },
1947
+ .{ .codepoint = "U+2712", .width = 1 },
1948
+ .{ .codepoint = "U+2713", .width = 1 },
1949
+ .{ .codepoint = "U+2714", .width = 1 },
1950
+ .{ .codepoint = "U+2715", .width = 1 },
1951
+ .{ .codepoint = "U+2716", .width = 1 },
1952
+ .{ .codepoint = "U+2717", .width = 1 },
1953
+ .{ .codepoint = "U+2718", .width = 1 },
1954
+ .{ .codepoint = "U+2719", .width = 1 },
1955
+ .{ .codepoint = "U+271A", .width = 1 },
1956
+ .{ .codepoint = "U+271B", .width = 1 },
1957
+ .{ .codepoint = "U+271C", .width = 1 },
1958
+ .{ .codepoint = "U+271D", .width = 1 },
1959
+ .{ .codepoint = "U+271E", .width = 1 },
1960
+ .{ .codepoint = "U+271F", .width = 1 },
1961
+ .{ .codepoint = "U+2720", .width = 1 },
1962
+ .{ .codepoint = "U+2721", .width = 1 },
1963
+ .{ .codepoint = "U+2722", .width = 1 },
1964
+ .{ .codepoint = "U+2723", .width = 1 },
1965
+ .{ .codepoint = "U+2724", .width = 1 },
1966
+ .{ .codepoint = "U+2725", .width = 1 },
1967
+ .{ .codepoint = "U+2726", .width = 1 },
1968
+ .{ .codepoint = "U+2727", .width = 1 },
1969
+ .{ .codepoint = "U+2728", .width = 2 },
1970
+ .{ .codepoint = "U+2729", .width = 1 },
1971
+ .{ .codepoint = "U+272A", .width = 1 },
1972
+ .{ .codepoint = "U+272B", .width = 1 },
1973
+ .{ .codepoint = "U+272C", .width = 1 },
1974
+ .{ .codepoint = "U+272D", .width = 1 },
1975
+ .{ .codepoint = "U+272E", .width = 1 },
1976
+ .{ .codepoint = "U+272F", .width = 1 },
1977
+ .{ .codepoint = "U+2730", .width = 1 },
1978
+ .{ .codepoint = "U+2731", .width = 1 },
1979
+ .{ .codepoint = "U+2732", .width = 1 },
1980
+ .{ .codepoint = "U+2733", .width = 1 },
1981
+ .{ .codepoint = "U+2734", .width = 1 },
1982
+ .{ .codepoint = "U+2735", .width = 1 },
1983
+ .{ .codepoint = "U+2736", .width = 1 },
1984
+ .{ .codepoint = "U+2737", .width = 1 },
1985
+ .{ .codepoint = "U+2738", .width = 1 },
1986
+ .{ .codepoint = "U+2739", .width = 1 },
1987
+ .{ .codepoint = "U+273A", .width = 1 },
1988
+ .{ .codepoint = "U+273B", .width = 1 },
1989
+ .{ .codepoint = "U+273C", .width = 1 },
1990
+ .{ .codepoint = "U+273D", .width = 1 },
1991
+ .{ .codepoint = "U+273E", .width = 1 },
1992
+ .{ .codepoint = "U+273F", .width = 1 },
1993
+ .{ .codepoint = "U+2740", .width = 1 },
1994
+ .{ .codepoint = "U+2741", .width = 1 },
1995
+ .{ .codepoint = "U+2742", .width = 1 },
1996
+ .{ .codepoint = "U+2743", .width = 1 },
1997
+ .{ .codepoint = "U+2744", .width = 1 },
1998
+ .{ .codepoint = "U+2745", .width = 1 },
1999
+ .{ .codepoint = "U+2746", .width = 1 },
2000
+ .{ .codepoint = "U+2747", .width = 1 },
2001
+ .{ .codepoint = "U+2748", .width = 1 },
2002
+ .{ .codepoint = "U+2749", .width = 1 },
2003
+ .{ .codepoint = "U+274A", .width = 1 },
2004
+ .{ .codepoint = "U+274B", .width = 1 },
2005
+ .{ .codepoint = "U+274C", .width = 2 },
2006
+ .{ .codepoint = "U+274D", .width = 1 },
2007
+ .{ .codepoint = "U+274E", .width = 2 },
2008
+ .{ .codepoint = "U+274F", .width = 1 },
2009
+ .{ .codepoint = "U+2750", .width = 1 },
2010
+ .{ .codepoint = "U+2751", .width = 1 },
2011
+ .{ .codepoint = "U+2752", .width = 1 },
2012
+ .{ .codepoint = "U+2753", .width = 2 },
2013
+ .{ .codepoint = "U+2754", .width = 2 },
2014
+ .{ .codepoint = "U+2755", .width = 2 },
2015
+ .{ .codepoint = "U+2756", .width = 1 },
2016
+ .{ .codepoint = "U+2757", .width = 2 },
2017
+ .{ .codepoint = "U+2758", .width = 1 },
2018
+ .{ .codepoint = "U+2759", .width = 1 },
2019
+ .{ .codepoint = "U+275A", .width = 1 },
2020
+ .{ .codepoint = "U+275B", .width = 1 },
2021
+ .{ .codepoint = "U+275C", .width = 1 },
2022
+ .{ .codepoint = "U+275D", .width = 1 },
2023
+ .{ .codepoint = "U+275E", .width = 1 },
2024
+ .{ .codepoint = "U+275F", .width = 1 },
2025
+ .{ .codepoint = "U+2760", .width = 2 },
2026
+ .{ .codepoint = "U+2761", .width = 2 },
2027
+ .{ .codepoint = "U+2762", .width = 2 },
2028
+ .{ .codepoint = "U+2763", .width = 2 },
2029
+ .{ .codepoint = "U+2764", .width = 2 },
2030
+ .{ .codepoint = "U+2765", .width = 2 },
2031
+ .{ .codepoint = "U+2766", .width = 2 },
2032
+ .{ .codepoint = "U+2767", .width = 2 },
2033
+ .{ .codepoint = "U+2768", .width = 1 },
2034
+ .{ .codepoint = "U+2769", .width = 1 },
2035
+ .{ .codepoint = "U+276A", .width = 1 },
2036
+ .{ .codepoint = "U+276B", .width = 1 },
2037
+ .{ .codepoint = "U+276C", .width = 1 },
2038
+ .{ .codepoint = "U+276D", .width = 1 },
2039
+ .{ .codepoint = "U+276E", .width = 1 },
2040
+ .{ .codepoint = "U+276F", .width = 1 },
2041
+ .{ .codepoint = "U+2770", .width = 1 },
2042
+ .{ .codepoint = "U+2771", .width = 1 },
2043
+ .{ .codepoint = "U+2772", .width = 1 },
2044
+ .{ .codepoint = "U+2773", .width = 1 },
2045
+ .{ .codepoint = "U+2774", .width = 1 },
2046
+ .{ .codepoint = "U+2775", .width = 1 },
2047
+ .{ .codepoint = "U+2776", .width = 1 },
2048
+ .{ .codepoint = "U+2777", .width = 1 },
2049
+ .{ .codepoint = "U+2778", .width = 1 },
2050
+ .{ .codepoint = "U+2779", .width = 1 },
2051
+ .{ .codepoint = "U+277A", .width = 1 },
2052
+ .{ .codepoint = "U+277B", .width = 1 },
2053
+ .{ .codepoint = "U+277C", .width = 1 },
2054
+ .{ .codepoint = "U+277D", .width = 1 },
2055
+ .{ .codepoint = "U+277E", .width = 1 },
2056
+ .{ .codepoint = "U+277F", .width = 1 },
2057
+ .{ .codepoint = "U+2780", .width = 1 },
2058
+ .{ .codepoint = "U+2781", .width = 1 },
2059
+ .{ .codepoint = "U+2782", .width = 1 },
2060
+ .{ .codepoint = "U+2783", .width = 1 },
2061
+ .{ .codepoint = "U+2784", .width = 1 },
2062
+ .{ .codepoint = "U+2785", .width = 1 },
2063
+ .{ .codepoint = "U+2786", .width = 1 },
2064
+ .{ .codepoint = "U+2787", .width = 1 },
2065
+ .{ .codepoint = "U+2788", .width = 1 },
2066
+ .{ .codepoint = "U+2789", .width = 1 },
2067
+ .{ .codepoint = "U+278A", .width = 1 },
2068
+ .{ .codepoint = "U+278B", .width = 1 },
2069
+ .{ .codepoint = "U+278C", .width = 1 },
2070
+ .{ .codepoint = "U+278D", .width = 1 },
2071
+ .{ .codepoint = "U+278E", .width = 1 },
2072
+ .{ .codepoint = "U+278F", .width = 1 },
2073
+ .{ .codepoint = "U+2790", .width = 1 },
2074
+ .{ .codepoint = "U+2791", .width = 1 },
2075
+ .{ .codepoint = "U+2792", .width = 1 },
2076
+ .{ .codepoint = "U+2793", .width = 1 },
2077
+ .{ .codepoint = "U+2794", .width = 1 },
2078
+ .{ .codepoint = "U+2795", .width = 2 },
2079
+ .{ .codepoint = "U+2796", .width = 2 },
2080
+ .{ .codepoint = "U+2797", .width = 2 },
2081
+ .{ .codepoint = "U+2798", .width = 1 },
2082
+ .{ .codepoint = "U+2799", .width = 1 },
2083
+ .{ .codepoint = "U+279A", .width = 1 },
2084
+ .{ .codepoint = "U+279B", .width = 1 },
2085
+ .{ .codepoint = "U+279C", .width = 1 },
2086
+ .{ .codepoint = "U+279D", .width = 1 },
2087
+ .{ .codepoint = "U+279E", .width = 1 },
2088
+ .{ .codepoint = "U+279F", .width = 1 },
2089
+ .{ .codepoint = "U+27A0", .width = 1 },
2090
+ .{ .codepoint = "U+27A1", .width = 1 },
2091
+ .{ .codepoint = "U+27A2", .width = 1 },
2092
+ .{ .codepoint = "U+27A3", .width = 1 },
2093
+ .{ .codepoint = "U+27A4", .width = 1 },
2094
+ .{ .codepoint = "U+27A5", .width = 1 },
2095
+ .{ .codepoint = "U+27A6", .width = 1 },
2096
+ .{ .codepoint = "U+27A7", .width = 1 },
2097
+ .{ .codepoint = "U+27A8", .width = 1 },
2098
+ .{ .codepoint = "U+27A9", .width = 1 },
2099
+ .{ .codepoint = "U+27AA", .width = 1 },
2100
+ .{ .codepoint = "U+27AB", .width = 1 },
2101
+ .{ .codepoint = "U+27AC", .width = 1 },
2102
+ .{ .codepoint = "U+27AD", .width = 1 },
2103
+ .{ .codepoint = "U+27AE", .width = 1 },
2104
+ .{ .codepoint = "U+27AF", .width = 1 },
2105
+ .{ .codepoint = "U+27B0", .width = 2 },
2106
+ .{ .codepoint = "U+27B1", .width = 1 },
2107
+ .{ .codepoint = "U+27B2", .width = 1 },
2108
+ .{ .codepoint = "U+27B3", .width = 1 },
2109
+ .{ .codepoint = "U+27B4", .width = 1 },
2110
+ .{ .codepoint = "U+27B5", .width = 1 },
2111
+ .{ .codepoint = "U+27B6", .width = 1 },
2112
+ .{ .codepoint = "U+27B7", .width = 1 },
2113
+ .{ .codepoint = "U+27B8", .width = 1 },
2114
+ .{ .codepoint = "U+27B9", .width = 1 },
2115
+ .{ .codepoint = "U+27BA", .width = 1 },
2116
+ .{ .codepoint = "U+27BB", .width = 1 },
2117
+ .{ .codepoint = "U+27BC", .width = 1 },
2118
+ .{ .codepoint = "U+27BD", .width = 1 },
2119
+ .{ .codepoint = "U+27BE", .width = 1 },
2120
+ .{ .codepoint = "U+27BF", .width = 2 },
2121
+ .{ .codepoint = "U+3000", .width = 2 },
2122
+ .{ .codepoint = "U+3001", .width = 2 },
2123
+ .{ .codepoint = "U+3002", .width = 2 },
2124
+ .{ .codepoint = "U+3003", .width = 2 },
2125
+ .{ .codepoint = "U+3004", .width = 2 },
2126
+ .{ .codepoint = "U+3005", .width = 2 },
2127
+ .{ .codepoint = "U+3006", .width = 2 },
2128
+ .{ .codepoint = "U+3007", .width = 2 },
2129
+ .{ .codepoint = "U+3008", .width = 2 },
2130
+ .{ .codepoint = "U+3009", .width = 2 },
2131
+ .{ .codepoint = "U+300A", .width = 2 },
2132
+ .{ .codepoint = "U+300B", .width = 2 },
2133
+ .{ .codepoint = "U+300C", .width = 2 },
2134
+ .{ .codepoint = "U+300D", .width = 2 },
2135
+ .{ .codepoint = "U+300E", .width = 2 },
2136
+ .{ .codepoint = "U+300F", .width = 2 },
2137
+ .{ .codepoint = "U+3010", .width = 2 },
2138
+ .{ .codepoint = "U+3011", .width = 2 },
2139
+ .{ .codepoint = "U+3012", .width = 2 },
2140
+ .{ .codepoint = "U+3013", .width = 2 },
2141
+ .{ .codepoint = "U+3014", .width = 2 },
2142
+ .{ .codepoint = "U+3015", .width = 2 },
2143
+ .{ .codepoint = "U+3016", .width = 2 },
2144
+ .{ .codepoint = "U+3017", .width = 2 },
2145
+ .{ .codepoint = "U+3018", .width = 2 },
2146
+ .{ .codepoint = "U+3019", .width = 2 },
2147
+ .{ .codepoint = "U+301A", .width = 2 },
2148
+ .{ .codepoint = "U+301B", .width = 2 },
2149
+ .{ .codepoint = "U+301C", .width = 2 },
2150
+ .{ .codepoint = "U+301D", .width = 2 },
2151
+ .{ .codepoint = "U+301E", .width = 2 },
2152
+ .{ .codepoint = "U+301F", .width = 2 },
2153
+ .{ .codepoint = "U+3020", .width = 2 },
2154
+ .{ .codepoint = "U+3021", .width = 2 },
2155
+ .{ .codepoint = "U+3022", .width = 2 },
2156
+ .{ .codepoint = "U+3023", .width = 2 },
2157
+ .{ .codepoint = "U+3024", .width = 2 },
2158
+ .{ .codepoint = "U+3025", .width = 2 },
2159
+ .{ .codepoint = "U+3026", .width = 2 },
2160
+ .{ .codepoint = "U+3027", .width = 2 },
2161
+ .{ .codepoint = "U+3028", .width = 2 },
2162
+ .{ .codepoint = "U+3029", .width = 2 },
2163
+ .{ .codepoint = "U+3030", .width = 2 },
2164
+ .{ .codepoint = "U+3031", .width = 2 },
2165
+ .{ .codepoint = "U+3032", .width = 2 },
2166
+ .{ .codepoint = "U+3033", .width = 2 },
2167
+ .{ .codepoint = "U+3034", .width = 2 },
2168
+ .{ .codepoint = "U+3035", .width = 2 },
2169
+ .{ .codepoint = "U+3036", .width = 2 },
2170
+ .{ .codepoint = "U+3037", .width = 2 },
2171
+ .{ .codepoint = "U+3038", .width = 2 },
2172
+ .{ .codepoint = "U+3039", .width = 2 },
2173
+ .{ .codepoint = "U+303A", .width = 2 },
2174
+ .{ .codepoint = "U+303B", .width = 2 },
2175
+ .{ .codepoint = "U+303C", .width = 2 },
2176
+ .{ .codepoint = "U+303D", .width = 2 },
2177
+ .{ .codepoint = "U+303E", .width = 2 },
2178
+ .{ .codepoint = "U+303F", .width = 1 },
2179
+ .{ .codepoint = "U+3040", .width = 1 },
2180
+ .{ .codepoint = "U+3041", .width = 2 },
2181
+ .{ .codepoint = "U+3042", .width = 2 },
2182
+ .{ .codepoint = "U+3043", .width = 2 },
2183
+ .{ .codepoint = "U+3044", .width = 2 },
2184
+ .{ .codepoint = "U+3045", .width = 2 },
2185
+ .{ .codepoint = "U+3046", .width = 2 },
2186
+ .{ .codepoint = "U+3047", .width = 2 },
2187
+ .{ .codepoint = "U+3048", .width = 2 },
2188
+ .{ .codepoint = "U+3049", .width = 2 },
2189
+ .{ .codepoint = "U+304A", .width = 2 },
2190
+ .{ .codepoint = "U+304B", .width = 2 },
2191
+ .{ .codepoint = "U+304C", .width = 2 },
2192
+ .{ .codepoint = "U+304D", .width = 2 },
2193
+ .{ .codepoint = "U+304E", .width = 2 },
2194
+ .{ .codepoint = "U+304F", .width = 2 },
2195
+ .{ .codepoint = "U+3050", .width = 2 },
2196
+ .{ .codepoint = "U+3051", .width = 2 },
2197
+ .{ .codepoint = "U+3052", .width = 2 },
2198
+ .{ .codepoint = "U+3053", .width = 2 },
2199
+ .{ .codepoint = "U+3054", .width = 2 },
2200
+ .{ .codepoint = "U+3055", .width = 2 },
2201
+ .{ .codepoint = "U+3056", .width = 2 },
2202
+ .{ .codepoint = "U+3057", .width = 2 },
2203
+ .{ .codepoint = "U+3058", .width = 2 },
2204
+ .{ .codepoint = "U+3059", .width = 2 },
2205
+ .{ .codepoint = "U+305A", .width = 2 },
2206
+ .{ .codepoint = "U+305B", .width = 2 },
2207
+ .{ .codepoint = "U+305C", .width = 2 },
2208
+ .{ .codepoint = "U+305D", .width = 2 },
2209
+ .{ .codepoint = "U+305E", .width = 2 },
2210
+ .{ .codepoint = "U+305F", .width = 2 },
2211
+ .{ .codepoint = "U+3060", .width = 2 },
2212
+ .{ .codepoint = "U+3061", .width = 2 },
2213
+ .{ .codepoint = "U+3062", .width = 2 },
2214
+ .{ .codepoint = "U+3063", .width = 2 },
2215
+ .{ .codepoint = "U+3064", .width = 2 },
2216
+ .{ .codepoint = "U+3065", .width = 2 },
2217
+ .{ .codepoint = "U+3066", .width = 2 },
2218
+ .{ .codepoint = "U+3067", .width = 2 },
2219
+ .{ .codepoint = "U+3068", .width = 2 },
2220
+ .{ .codepoint = "U+3069", .width = 2 },
2221
+ .{ .codepoint = "U+306A", .width = 2 },
2222
+ .{ .codepoint = "U+306B", .width = 2 },
2223
+ .{ .codepoint = "U+306C", .width = 2 },
2224
+ .{ .codepoint = "U+306D", .width = 2 },
2225
+ .{ .codepoint = "U+306E", .width = 2 },
2226
+ .{ .codepoint = "U+306F", .width = 2 },
2227
+ .{ .codepoint = "U+3070", .width = 2 },
2228
+ .{ .codepoint = "U+3071", .width = 2 },
2229
+ .{ .codepoint = "U+3072", .width = 2 },
2230
+ .{ .codepoint = "U+3073", .width = 2 },
2231
+ .{ .codepoint = "U+3074", .width = 2 },
2232
+ .{ .codepoint = "U+3075", .width = 2 },
2233
+ .{ .codepoint = "U+3076", .width = 2 },
2234
+ .{ .codepoint = "U+3077", .width = 2 },
2235
+ .{ .codepoint = "U+3078", .width = 2 },
2236
+ .{ .codepoint = "U+3079", .width = 2 },
2237
+ .{ .codepoint = "U+307A", .width = 2 },
2238
+ .{ .codepoint = "U+307B", .width = 2 },
2239
+ .{ .codepoint = "U+307C", .width = 2 },
2240
+ .{ .codepoint = "U+307D", .width = 2 },
2241
+ .{ .codepoint = "U+307E", .width = 2 },
2242
+ .{ .codepoint = "U+307F", .width = 2 },
2243
+ .{ .codepoint = "U+3080", .width = 2 },
2244
+ .{ .codepoint = "U+3081", .width = 2 },
2245
+ .{ .codepoint = "U+3082", .width = 2 },
2246
+ .{ .codepoint = "U+3083", .width = 2 },
2247
+ .{ .codepoint = "U+3084", .width = 2 },
2248
+ .{ .codepoint = "U+3085", .width = 2 },
2249
+ .{ .codepoint = "U+3086", .width = 2 },
2250
+ .{ .codepoint = "U+3087", .width = 2 },
2251
+ .{ .codepoint = "U+3088", .width = 2 },
2252
+ .{ .codepoint = "U+3089", .width = 2 },
2253
+ .{ .codepoint = "U+308A", .width = 2 },
2254
+ .{ .codepoint = "U+308B", .width = 2 },
2255
+ .{ .codepoint = "U+308C", .width = 2 },
2256
+ .{ .codepoint = "U+308D", .width = 2 },
2257
+ .{ .codepoint = "U+308E", .width = 2 },
2258
+ .{ .codepoint = "U+308F", .width = 2 },
2259
+ .{ .codepoint = "U+3090", .width = 2 },
2260
+ .{ .codepoint = "U+3091", .width = 2 },
2261
+ .{ .codepoint = "U+3092", .width = 2 },
2262
+ .{ .codepoint = "U+3093", .width = 2 },
2263
+ .{ .codepoint = "U+3094", .width = 2 },
2264
+ .{ .codepoint = "U+3095", .width = 2 },
2265
+ .{ .codepoint = "U+3096", .width = 2 },
2266
+ .{ .codepoint = "U+3097", .width = 1 },
2267
+ .{ .codepoint = "U+3098", .width = 1 },
2268
+ .{ .codepoint = "U+309B", .width = 2 },
2269
+ .{ .codepoint = "U+309C", .width = 2 },
2270
+ .{ .codepoint = "U+309D", .width = 2 },
2271
+ .{ .codepoint = "U+309E", .width = 2 },
2272
+ .{ .codepoint = "U+309F", .width = 2 },
2273
+ .{ .codepoint = "U+30A0", .width = 2 },
2274
+ .{ .codepoint = "U+30A1", .width = 2 },
2275
+ .{ .codepoint = "U+30A2", .width = 2 },
2276
+ .{ .codepoint = "U+30A3", .width = 2 },
2277
+ .{ .codepoint = "U+30A4", .width = 2 },
2278
+ .{ .codepoint = "U+30A5", .width = 2 },
2279
+ .{ .codepoint = "U+30A6", .width = 2 },
2280
+ .{ .codepoint = "U+30A7", .width = 2 },
2281
+ .{ .codepoint = "U+30A8", .width = 2 },
2282
+ .{ .codepoint = "U+30A9", .width = 2 },
2283
+ .{ .codepoint = "U+30AA", .width = 2 },
2284
+ .{ .codepoint = "U+30AB", .width = 2 },
2285
+ .{ .codepoint = "U+30AC", .width = 2 },
2286
+ .{ .codepoint = "U+30AD", .width = 2 },
2287
+ .{ .codepoint = "U+30AE", .width = 2 },
2288
+ .{ .codepoint = "U+30AF", .width = 2 },
2289
+ .{ .codepoint = "U+30B0", .width = 2 },
2290
+ .{ .codepoint = "U+30B1", .width = 2 },
2291
+ .{ .codepoint = "U+30B2", .width = 2 },
2292
+ .{ .codepoint = "U+30B3", .width = 2 },
2293
+ .{ .codepoint = "U+30B4", .width = 2 },
2294
+ .{ .codepoint = "U+30B5", .width = 2 },
2295
+ .{ .codepoint = "U+30B6", .width = 2 },
2296
+ .{ .codepoint = "U+30B7", .width = 2 },
2297
+ .{ .codepoint = "U+30B8", .width = 2 },
2298
+ .{ .codepoint = "U+30B9", .width = 2 },
2299
+ .{ .codepoint = "U+30BA", .width = 2 },
2300
+ .{ .codepoint = "U+30BB", .width = 2 },
2301
+ .{ .codepoint = "U+30BC", .width = 2 },
2302
+ .{ .codepoint = "U+30BD", .width = 2 },
2303
+ .{ .codepoint = "U+30BE", .width = 2 },
2304
+ .{ .codepoint = "U+30BF", .width = 2 },
2305
+ .{ .codepoint = "U+30C0", .width = 2 },
2306
+ .{ .codepoint = "U+30C1", .width = 2 },
2307
+ .{ .codepoint = "U+30C2", .width = 2 },
2308
+ .{ .codepoint = "U+30C3", .width = 2 },
2309
+ .{ .codepoint = "U+30C4", .width = 2 },
2310
+ .{ .codepoint = "U+30C5", .width = 2 },
2311
+ .{ .codepoint = "U+30C6", .width = 2 },
2312
+ .{ .codepoint = "U+30C7", .width = 2 },
2313
+ .{ .codepoint = "U+30C8", .width = 2 },
2314
+ .{ .codepoint = "U+30C9", .width = 2 },
2315
+ .{ .codepoint = "U+30CA", .width = 2 },
2316
+ .{ .codepoint = "U+30CB", .width = 2 },
2317
+ .{ .codepoint = "U+30CC", .width = 2 },
2318
+ .{ .codepoint = "U+30CD", .width = 2 },
2319
+ .{ .codepoint = "U+30CE", .width = 2 },
2320
+ .{ .codepoint = "U+30CF", .width = 2 },
2321
+ .{ .codepoint = "U+30D0", .width = 2 },
2322
+ .{ .codepoint = "U+30D1", .width = 2 },
2323
+ .{ .codepoint = "U+30D2", .width = 2 },
2324
+ .{ .codepoint = "U+30D3", .width = 2 },
2325
+ .{ .codepoint = "U+30D4", .width = 2 },
2326
+ .{ .codepoint = "U+30D5", .width = 2 },
2327
+ .{ .codepoint = "U+30D6", .width = 2 },
2328
+ .{ .codepoint = "U+30D7", .width = 2 },
2329
+ .{ .codepoint = "U+30D8", .width = 2 },
2330
+ .{ .codepoint = "U+30D9", .width = 2 },
2331
+ .{ .codepoint = "U+30DA", .width = 2 },
2332
+ .{ .codepoint = "U+30DB", .width = 2 },
2333
+ .{ .codepoint = "U+30DC", .width = 2 },
2334
+ .{ .codepoint = "U+30DD", .width = 2 },
2335
+ .{ .codepoint = "U+30DE", .width = 2 },
2336
+ .{ .codepoint = "U+30DF", .width = 2 },
2337
+ .{ .codepoint = "U+30E0", .width = 2 },
2338
+ .{ .codepoint = "U+30E1", .width = 2 },
2339
+ .{ .codepoint = "U+30E2", .width = 2 },
2340
+ .{ .codepoint = "U+30E3", .width = 2 },
2341
+ .{ .codepoint = "U+30E4", .width = 2 },
2342
+ .{ .codepoint = "U+30E5", .width = 2 },
2343
+ .{ .codepoint = "U+30E6", .width = 2 },
2344
+ .{ .codepoint = "U+30E7", .width = 2 },
2345
+ .{ .codepoint = "U+30E8", .width = 2 },
2346
+ .{ .codepoint = "U+30E9", .width = 2 },
2347
+ .{ .codepoint = "U+30EA", .width = 2 },
2348
+ .{ .codepoint = "U+30EB", .width = 2 },
2349
+ .{ .codepoint = "U+30EC", .width = 2 },
2350
+ .{ .codepoint = "U+30ED", .width = 2 },
2351
+ .{ .codepoint = "U+30EE", .width = 2 },
2352
+ .{ .codepoint = "U+30EF", .width = 2 },
2353
+ .{ .codepoint = "U+30F0", .width = 2 },
2354
+ .{ .codepoint = "U+30F1", .width = 2 },
2355
+ .{ .codepoint = "U+30F2", .width = 2 },
2356
+ .{ .codepoint = "U+30F3", .width = 2 },
2357
+ .{ .codepoint = "U+30F4", .width = 2 },
2358
+ .{ .codepoint = "U+30F5", .width = 2 },
2359
+ .{ .codepoint = "U+30F6", .width = 2 },
2360
+ .{ .codepoint = "U+30F7", .width = 2 },
2361
+ .{ .codepoint = "U+30F8", .width = 2 },
2362
+ .{ .codepoint = "U+30F9", .width = 2 },
2363
+ .{ .codepoint = "U+30FA", .width = 2 },
2364
+ .{ .codepoint = "U+30FB", .width = 2 },
2365
+ .{ .codepoint = "U+30FC", .width = 2 },
2366
+ .{ .codepoint = "U+30FD", .width = 2 },
2367
+ .{ .codepoint = "U+30FE", .width = 2 },
2368
+ .{ .codepoint = "U+30FF", .width = 2 },
2369
+ .{ .codepoint = "U+3100", .width = 1 },
2370
+ .{ .codepoint = "U+3101", .width = 1 },
2371
+ .{ .codepoint = "U+3102", .width = 1 },
2372
+ .{ .codepoint = "U+3103", .width = 1 },
2373
+ .{ .codepoint = "U+3104", .width = 1 },
2374
+ .{ .codepoint = "U+3105", .width = 2 },
2375
+ .{ .codepoint = "U+3106", .width = 2 },
2376
+ .{ .codepoint = "U+3107", .width = 2 },
2377
+ .{ .codepoint = "U+3108", .width = 2 },
2378
+ .{ .codepoint = "U+3109", .width = 2 },
2379
+ .{ .codepoint = "U+310A", .width = 2 },
2380
+ .{ .codepoint = "U+310B", .width = 2 },
2381
+ .{ .codepoint = "U+310C", .width = 2 },
2382
+ .{ .codepoint = "U+310D", .width = 2 },
2383
+ .{ .codepoint = "U+310E", .width = 2 },
2384
+ .{ .codepoint = "U+310F", .width = 2 },
2385
+ .{ .codepoint = "U+3110", .width = 2 },
2386
+ .{ .codepoint = "U+3111", .width = 2 },
2387
+ .{ .codepoint = "U+3112", .width = 2 },
2388
+ .{ .codepoint = "U+3113", .width = 2 },
2389
+ .{ .codepoint = "U+3114", .width = 2 },
2390
+ .{ .codepoint = "U+3115", .width = 2 },
2391
+ .{ .codepoint = "U+3116", .width = 2 },
2392
+ .{ .codepoint = "U+3117", .width = 2 },
2393
+ .{ .codepoint = "U+3118", .width = 2 },
2394
+ .{ .codepoint = "U+3119", .width = 2 },
2395
+ .{ .codepoint = "U+311A", .width = 2 },
2396
+ .{ .codepoint = "U+311B", .width = 2 },
2397
+ .{ .codepoint = "U+311C", .width = 2 },
2398
+ .{ .codepoint = "U+311D", .width = 2 },
2399
+ .{ .codepoint = "U+311E", .width = 2 },
2400
+ .{ .codepoint = "U+311F", .width = 2 },
2401
+ .{ .codepoint = "U+3120", .width = 2 },
2402
+ .{ .codepoint = "U+3121", .width = 2 },
2403
+ .{ .codepoint = "U+3122", .width = 2 },
2404
+ .{ .codepoint = "U+3123", .width = 2 },
2405
+ .{ .codepoint = "U+3124", .width = 2 },
2406
+ .{ .codepoint = "U+3125", .width = 2 },
2407
+ .{ .codepoint = "U+3126", .width = 2 },
2408
+ .{ .codepoint = "U+3127", .width = 2 },
2409
+ .{ .codepoint = "U+3128", .width = 2 },
2410
+ .{ .codepoint = "U+3129", .width = 2 },
2411
+ .{ .codepoint = "U+312A", .width = 2 },
2412
+ .{ .codepoint = "U+312B", .width = 2 },
2413
+ .{ .codepoint = "U+312C", .width = 2 },
2414
+ .{ .codepoint = "U+312D", .width = 2 },
2415
+ .{ .codepoint = "U+312E", .width = 2 },
2416
+ .{ .codepoint = "U+312F", .width = 2 },
2417
+ .{ .codepoint = "U+4E00", .width = 2 },
2418
+ .{ .codepoint = "U+4E01", .width = 2 },
2419
+ .{ .codepoint = "U+4E02", .width = 2 },
2420
+ .{ .codepoint = "U+4E03", .width = 2 },
2421
+ .{ .codepoint = "U+4E04", .width = 2 },
2422
+ .{ .codepoint = "U+4E05", .width = 2 },
2423
+ .{ .codepoint = "U+4E06", .width = 2 },
2424
+ .{ .codepoint = "U+4E07", .width = 2 },
2425
+ .{ .codepoint = "U+4E08", .width = 2 },
2426
+ .{ .codepoint = "U+4E09", .width = 2 },
2427
+ .{ .codepoint = "U+4E0A", .width = 2 },
2428
+ .{ .codepoint = "U+4E0B", .width = 2 },
2429
+ .{ .codepoint = "U+4E0C", .width = 2 },
2430
+ .{ .codepoint = "U+4E0D", .width = 2 },
2431
+ .{ .codepoint = "U+4E0E", .width = 2 },
2432
+ .{ .codepoint = "U+4E0F", .width = 2 },
2433
+ .{ .codepoint = "U+4E10", .width = 2 },
2434
+ .{ .codepoint = "U+4E11", .width = 2 },
2435
+ .{ .codepoint = "U+4E12", .width = 2 },
2436
+ .{ .codepoint = "U+4E13", .width = 2 },
2437
+ .{ .codepoint = "U+4E14", .width = 2 },
2438
+ .{ .codepoint = "U+4E15", .width = 2 },
2439
+ .{ .codepoint = "U+4E16", .width = 2 },
2440
+ .{ .codepoint = "U+4E17", .width = 2 },
2441
+ .{ .codepoint = "U+4E18", .width = 2 },
2442
+ .{ .codepoint = "U+4E19", .width = 2 },
2443
+ .{ .codepoint = "U+4E1A", .width = 2 },
2444
+ .{ .codepoint = "U+4E1B", .width = 2 },
2445
+ .{ .codepoint = "U+4E1C", .width = 2 },
2446
+ .{ .codepoint = "U+4E1D", .width = 2 },
2447
+ .{ .codepoint = "U+4E1E", .width = 2 },
2448
+ .{ .codepoint = "U+4E1F", .width = 2 },
2449
+ .{ .codepoint = "U+4E20", .width = 2 },
2450
+ .{ .codepoint = "U+4E21", .width = 2 },
2451
+ .{ .codepoint = "U+4E22", .width = 2 },
2452
+ .{ .codepoint = "U+4E23", .width = 2 },
2453
+ .{ .codepoint = "U+4E24", .width = 2 },
2454
+ .{ .codepoint = "U+4E25", .width = 2 },
2455
+ .{ .codepoint = "U+4E26", .width = 2 },
2456
+ .{ .codepoint = "U+4E27", .width = 2 },
2457
+ .{ .codepoint = "U+4E28", .width = 2 },
2458
+ .{ .codepoint = "U+4E29", .width = 2 },
2459
+ .{ .codepoint = "U+4E2A", .width = 2 },
2460
+ .{ .codepoint = "U+4E2B", .width = 2 },
2461
+ .{ .codepoint = "U+4E2C", .width = 2 },
2462
+ .{ .codepoint = "U+4E2D", .width = 2 },
2463
+ .{ .codepoint = "U+4E2E", .width = 2 },
2464
+ .{ .codepoint = "U+4E2F", .width = 2 },
2465
+ .{ .codepoint = "U+4E30", .width = 2 },
2466
+ .{ .codepoint = "U+4E31", .width = 2 },
2467
+ .{ .codepoint = "U+4E32", .width = 2 },
2468
+ .{ .codepoint = "U+4E33", .width = 2 },
2469
+ .{ .codepoint = "U+4E34", .width = 2 },
2470
+ .{ .codepoint = "U+4E35", .width = 2 },
2471
+ .{ .codepoint = "U+4E36", .width = 2 },
2472
+ .{ .codepoint = "U+4E37", .width = 2 },
2473
+ .{ .codepoint = "U+4E38", .width = 2 },
2474
+ .{ .codepoint = "U+4E39", .width = 2 },
2475
+ .{ .codepoint = "U+4E3A", .width = 2 },
2476
+ .{ .codepoint = "U+4E3B", .width = 2 },
2477
+ .{ .codepoint = "U+4E3C", .width = 2 },
2478
+ .{ .codepoint = "U+4E3D", .width = 2 },
2479
+ .{ .codepoint = "U+4E3E", .width = 2 },
2480
+ .{ .codepoint = "U+4E3F", .width = 2 },
2481
+ .{ .codepoint = "U+4E40", .width = 2 },
2482
+ .{ .codepoint = "U+4E41", .width = 2 },
2483
+ .{ .codepoint = "U+4E42", .width = 2 },
2484
+ .{ .codepoint = "U+4E43", .width = 2 },
2485
+ .{ .codepoint = "U+4E44", .width = 2 },
2486
+ .{ .codepoint = "U+4E45", .width = 2 },
2487
+ .{ .codepoint = "U+4E46", .width = 2 },
2488
+ .{ .codepoint = "U+4E47", .width = 2 },
2489
+ .{ .codepoint = "U+4E48", .width = 2 },
2490
+ .{ .codepoint = "U+4E49", .width = 2 },
2491
+ .{ .codepoint = "U+4E4A", .width = 2 },
2492
+ .{ .codepoint = "U+4E4B", .width = 2 },
2493
+ .{ .codepoint = "U+4E4C", .width = 2 },
2494
+ .{ .codepoint = "U+4E4D", .width = 2 },
2495
+ .{ .codepoint = "U+4E4E", .width = 2 },
2496
+ .{ .codepoint = "U+4E4F", .width = 2 },
2497
+ .{ .codepoint = "U+4E50", .width = 2 },
2498
+ .{ .codepoint = "U+4E51", .width = 2 },
2499
+ .{ .codepoint = "U+4E52", .width = 2 },
2500
+ .{ .codepoint = "U+4E53", .width = 2 },
2501
+ .{ .codepoint = "U+4E54", .width = 2 },
2502
+ .{ .codepoint = "U+4E55", .width = 2 },
2503
+ .{ .codepoint = "U+4E56", .width = 2 },
2504
+ .{ .codepoint = "U+4E57", .width = 2 },
2505
+ .{ .codepoint = "U+4E58", .width = 2 },
2506
+ .{ .codepoint = "U+4E59", .width = 2 },
2507
+ .{ .codepoint = "U+4E5A", .width = 2 },
2508
+ .{ .codepoint = "U+4E5B", .width = 2 },
2509
+ .{ .codepoint = "U+4E5C", .width = 2 },
2510
+ .{ .codepoint = "U+4E5D", .width = 2 },
2511
+ .{ .codepoint = "U+4E5E", .width = 2 },
2512
+ .{ .codepoint = "U+4E5F", .width = 2 },
2513
+ .{ .codepoint = "U+4E60", .width = 2 },
2514
+ .{ .codepoint = "U+4E61", .width = 2 },
2515
+ .{ .codepoint = "U+4E62", .width = 2 },
2516
+ .{ .codepoint = "U+4E63", .width = 2 },
2517
+ .{ .codepoint = "U+4E64", .width = 2 },
2518
+ .{ .codepoint = "U+4E65", .width = 2 },
2519
+ .{ .codepoint = "U+4E66", .width = 2 },
2520
+ .{ .codepoint = "U+4E67", .width = 2 },
2521
+ .{ .codepoint = "U+4E68", .width = 2 },
2522
+ .{ .codepoint = "U+4E69", .width = 2 },
2523
+ .{ .codepoint = "U+4E6A", .width = 2 },
2524
+ .{ .codepoint = "U+4E6B", .width = 2 },
2525
+ .{ .codepoint = "U+4E6C", .width = 2 },
2526
+ .{ .codepoint = "U+4E6D", .width = 2 },
2527
+ .{ .codepoint = "U+4E6E", .width = 2 },
2528
+ .{ .codepoint = "U+4E6F", .width = 2 },
2529
+ .{ .codepoint = "U+4E70", .width = 2 },
2530
+ .{ .codepoint = "U+4E71", .width = 2 },
2531
+ .{ .codepoint = "U+4E72", .width = 2 },
2532
+ .{ .codepoint = "U+4E73", .width = 2 },
2533
+ .{ .codepoint = "U+4E74", .width = 2 },
2534
+ .{ .codepoint = "U+4E75", .width = 2 },
2535
+ .{ .codepoint = "U+4E76", .width = 2 },
2536
+ .{ .codepoint = "U+4E77", .width = 2 },
2537
+ .{ .codepoint = "U+4E78", .width = 2 },
2538
+ .{ .codepoint = "U+4E79", .width = 2 },
2539
+ .{ .codepoint = "U+4E7A", .width = 2 },
2540
+ .{ .codepoint = "U+4E7B", .width = 2 },
2541
+ .{ .codepoint = "U+4E7C", .width = 2 },
2542
+ .{ .codepoint = "U+4E7D", .width = 2 },
2543
+ .{ .codepoint = "U+4E7E", .width = 2 },
2544
+ .{ .codepoint = "U+4E7F", .width = 2 },
2545
+ .{ .codepoint = "U+4E80", .width = 2 },
2546
+ .{ .codepoint = "U+4E81", .width = 2 },
2547
+ .{ .codepoint = "U+4E82", .width = 2 },
2548
+ .{ .codepoint = "U+4E83", .width = 2 },
2549
+ .{ .codepoint = "U+4E84", .width = 2 },
2550
+ .{ .codepoint = "U+4E85", .width = 2 },
2551
+ .{ .codepoint = "U+4E86", .width = 2 },
2552
+ .{ .codepoint = "U+4E87", .width = 2 },
2553
+ .{ .codepoint = "U+4E88", .width = 2 },
2554
+ .{ .codepoint = "U+4E89", .width = 2 },
2555
+ .{ .codepoint = "U+4E8A", .width = 2 },
2556
+ .{ .codepoint = "U+4E8B", .width = 2 },
2557
+ .{ .codepoint = "U+4E8C", .width = 2 },
2558
+ .{ .codepoint = "U+4E8D", .width = 2 },
2559
+ .{ .codepoint = "U+4E8E", .width = 2 },
2560
+ .{ .codepoint = "U+4E8F", .width = 2 },
2561
+ .{ .codepoint = "U+4E90", .width = 2 },
2562
+ .{ .codepoint = "U+4E91", .width = 2 },
2563
+ .{ .codepoint = "U+4E92", .width = 2 },
2564
+ .{ .codepoint = "U+4E93", .width = 2 },
2565
+ .{ .codepoint = "U+4E94", .width = 2 },
2566
+ .{ .codepoint = "U+4E95", .width = 2 },
2567
+ .{ .codepoint = "U+4E96", .width = 2 },
2568
+ .{ .codepoint = "U+4E97", .width = 2 },
2569
+ .{ .codepoint = "U+4E98", .width = 2 },
2570
+ .{ .codepoint = "U+4E99", .width = 2 },
2571
+ .{ .codepoint = "U+4E9A", .width = 2 },
2572
+ .{ .codepoint = "U+4E9B", .width = 2 },
2573
+ .{ .codepoint = "U+4E9C", .width = 2 },
2574
+ .{ .codepoint = "U+4E9D", .width = 2 },
2575
+ .{ .codepoint = "U+4E9E", .width = 2 },
2576
+ .{ .codepoint = "U+4E9F", .width = 2 },
2577
+ .{ .codepoint = "U+4EA0", .width = 2 },
2578
+ .{ .codepoint = "U+4EA1", .width = 2 },
2579
+ .{ .codepoint = "U+4EA2", .width = 2 },
2580
+ .{ .codepoint = "U+4EA3", .width = 2 },
2581
+ .{ .codepoint = "U+4EA4", .width = 2 },
2582
+ .{ .codepoint = "U+4EA5", .width = 2 },
2583
+ .{ .codepoint = "U+4EA6", .width = 2 },
2584
+ .{ .codepoint = "U+4EA7", .width = 2 },
2585
+ .{ .codepoint = "U+4EA8", .width = 2 },
2586
+ .{ .codepoint = "U+4EA9", .width = 2 },
2587
+ .{ .codepoint = "U+4EAA", .width = 2 },
2588
+ .{ .codepoint = "U+4EAB", .width = 2 },
2589
+ .{ .codepoint = "U+4EAC", .width = 2 },
2590
+ .{ .codepoint = "U+4EAD", .width = 2 },
2591
+ .{ .codepoint = "U+4EAE", .width = 2 },
2592
+ .{ .codepoint = "U+4EAF", .width = 2 },
2593
+ .{ .codepoint = "U+4EB0", .width = 2 },
2594
+ .{ .codepoint = "U+4EB1", .width = 2 },
2595
+ .{ .codepoint = "U+4EB2", .width = 2 },
2596
+ .{ .codepoint = "U+4EB3", .width = 2 },
2597
+ .{ .codepoint = "U+4EB4", .width = 2 },
2598
+ .{ .codepoint = "U+4EB5", .width = 2 },
2599
+ .{ .codepoint = "U+4EB6", .width = 2 },
2600
+ .{ .codepoint = "U+4EB7", .width = 2 },
2601
+ .{ .codepoint = "U+4EB8", .width = 2 },
2602
+ .{ .codepoint = "U+4EB9", .width = 2 },
2603
+ .{ .codepoint = "U+4EBA", .width = 2 },
2604
+ .{ .codepoint = "U+4EBB", .width = 2 },
2605
+ .{ .codepoint = "U+4EBC", .width = 2 },
2606
+ .{ .codepoint = "U+4EBD", .width = 2 },
2607
+ .{ .codepoint = "U+4EBE", .width = 2 },
2608
+ .{ .codepoint = "U+4EBF", .width = 2 },
2609
+ .{ .codepoint = "U+4EC0", .width = 2 },
2610
+ .{ .codepoint = "U+4EC1", .width = 2 },
2611
+ .{ .codepoint = "U+4EC2", .width = 2 },
2612
+ .{ .codepoint = "U+4EC3", .width = 2 },
2613
+ .{ .codepoint = "U+4EC4", .width = 2 },
2614
+ .{ .codepoint = "U+4EC5", .width = 2 },
2615
+ .{ .codepoint = "U+4EC6", .width = 2 },
2616
+ .{ .codepoint = "U+4EC7", .width = 2 },
2617
+ .{ .codepoint = "U+4EC8", .width = 2 },
2618
+ .{ .codepoint = "U+4EC9", .width = 2 },
2619
+ .{ .codepoint = "U+4ECA", .width = 2 },
2620
+ .{ .codepoint = "U+4ECB", .width = 2 },
2621
+ .{ .codepoint = "U+4ECC", .width = 2 },
2622
+ .{ .codepoint = "U+4ECD", .width = 2 },
2623
+ .{ .codepoint = "U+4ECE", .width = 2 },
2624
+ .{ .codepoint = "U+4ECF", .width = 2 },
2625
+ .{ .codepoint = "U+4ED0", .width = 2 },
2626
+ .{ .codepoint = "U+4ED1", .width = 2 },
2627
+ .{ .codepoint = "U+4ED2", .width = 2 },
2628
+ .{ .codepoint = "U+4ED3", .width = 2 },
2629
+ .{ .codepoint = "U+4ED4", .width = 2 },
2630
+ .{ .codepoint = "U+4ED5", .width = 2 },
2631
+ .{ .codepoint = "U+4ED6", .width = 2 },
2632
+ .{ .codepoint = "U+4ED7", .width = 2 },
2633
+ .{ .codepoint = "U+4ED8", .width = 2 },
2634
+ .{ .codepoint = "U+4ED9", .width = 2 },
2635
+ .{ .codepoint = "U+4EDA", .width = 2 },
2636
+ .{ .codepoint = "U+4EDB", .width = 2 },
2637
+ .{ .codepoint = "U+4EDC", .width = 2 },
2638
+ .{ .codepoint = "U+4EDD", .width = 2 },
2639
+ .{ .codepoint = "U+4EDE", .width = 2 },
2640
+ .{ .codepoint = "U+4EDF", .width = 2 },
2641
+ .{ .codepoint = "U+4EE0", .width = 2 },
2642
+ .{ .codepoint = "U+4EE1", .width = 2 },
2643
+ .{ .codepoint = "U+4EE2", .width = 2 },
2644
+ .{ .codepoint = "U+4EE3", .width = 2 },
2645
+ .{ .codepoint = "U+4EE4", .width = 2 },
2646
+ .{ .codepoint = "U+4EE5", .width = 2 },
2647
+ .{ .codepoint = "U+4EE6", .width = 2 },
2648
+ .{ .codepoint = "U+4EE7", .width = 2 },
2649
+ .{ .codepoint = "U+4EE8", .width = 2 },
2650
+ .{ .codepoint = "U+4EE9", .width = 2 },
2651
+ .{ .codepoint = "U+4EEA", .width = 2 },
2652
+ .{ .codepoint = "U+4EEB", .width = 2 },
2653
+ .{ .codepoint = "U+4EEC", .width = 2 },
2654
+ .{ .codepoint = "U+4EED", .width = 2 },
2655
+ .{ .codepoint = "U+4EEE", .width = 2 },
2656
+ .{ .codepoint = "U+4EEF", .width = 2 },
2657
+ .{ .codepoint = "U+4EF0", .width = 2 },
2658
+ .{ .codepoint = "U+4EF1", .width = 2 },
2659
+ .{ .codepoint = "U+4EF2", .width = 2 },
2660
+ .{ .codepoint = "U+4EF3", .width = 2 },
2661
+ .{ .codepoint = "U+4EF4", .width = 2 },
2662
+ .{ .codepoint = "U+4EF5", .width = 2 },
2663
+ .{ .codepoint = "U+4EF6", .width = 2 },
2664
+ .{ .codepoint = "U+4EF7", .width = 2 },
2665
+ .{ .codepoint = "U+4EF8", .width = 2 },
2666
+ .{ .codepoint = "U+4EF9", .width = 2 },
2667
+ .{ .codepoint = "U+4EFA", .width = 2 },
2668
+ .{ .codepoint = "U+4EFB", .width = 2 },
2669
+ .{ .codepoint = "U+4EFC", .width = 2 },
2670
+ .{ .codepoint = "U+4EFD", .width = 2 },
2671
+ .{ .codepoint = "U+4EFE", .width = 2 },
2672
+ .{ .codepoint = "U+4EFF", .width = 2 },
2673
+ .{ .codepoint = "U+AC00", .width = 2 },
2674
+ .{ .codepoint = "U+AC01", .width = 2 },
2675
+ .{ .codepoint = "U+AC02", .width = 2 },
2676
+ .{ .codepoint = "U+AC03", .width = 2 },
2677
+ .{ .codepoint = "U+AC04", .width = 2 },
2678
+ .{ .codepoint = "U+AC05", .width = 2 },
2679
+ .{ .codepoint = "U+AC06", .width = 2 },
2680
+ .{ .codepoint = "U+AC07", .width = 2 },
2681
+ .{ .codepoint = "U+AC08", .width = 2 },
2682
+ .{ .codepoint = "U+AC09", .width = 2 },
2683
+ .{ .codepoint = "U+AC0A", .width = 2 },
2684
+ .{ .codepoint = "U+AC0B", .width = 2 },
2685
+ .{ .codepoint = "U+AC0C", .width = 2 },
2686
+ .{ .codepoint = "U+AC0D", .width = 2 },
2687
+ .{ .codepoint = "U+AC0E", .width = 2 },
2688
+ .{ .codepoint = "U+AC0F", .width = 2 },
2689
+ .{ .codepoint = "U+AC10", .width = 2 },
2690
+ .{ .codepoint = "U+AC11", .width = 2 },
2691
+ .{ .codepoint = "U+AC12", .width = 2 },
2692
+ .{ .codepoint = "U+AC13", .width = 2 },
2693
+ .{ .codepoint = "U+AC14", .width = 2 },
2694
+ .{ .codepoint = "U+AC15", .width = 2 },
2695
+ .{ .codepoint = "U+AC16", .width = 2 },
2696
+ .{ .codepoint = "U+AC17", .width = 2 },
2697
+ .{ .codepoint = "U+AC18", .width = 2 },
2698
+ .{ .codepoint = "U+AC19", .width = 2 },
2699
+ .{ .codepoint = "U+AC1A", .width = 2 },
2700
+ .{ .codepoint = "U+AC1B", .width = 2 },
2701
+ .{ .codepoint = "U+AC1C", .width = 2 },
2702
+ .{ .codepoint = "U+AC1D", .width = 2 },
2703
+ .{ .codepoint = "U+AC1E", .width = 2 },
2704
+ .{ .codepoint = "U+AC1F", .width = 2 },
2705
+ .{ .codepoint = "U+AC20", .width = 2 },
2706
+ .{ .codepoint = "U+AC21", .width = 2 },
2707
+ .{ .codepoint = "U+AC22", .width = 2 },
2708
+ .{ .codepoint = "U+AC23", .width = 2 },
2709
+ .{ .codepoint = "U+AC24", .width = 2 },
2710
+ .{ .codepoint = "U+AC25", .width = 2 },
2711
+ .{ .codepoint = "U+AC26", .width = 2 },
2712
+ .{ .codepoint = "U+AC27", .width = 2 },
2713
+ .{ .codepoint = "U+AC28", .width = 2 },
2714
+ .{ .codepoint = "U+AC29", .width = 2 },
2715
+ .{ .codepoint = "U+AC2A", .width = 2 },
2716
+ .{ .codepoint = "U+AC2B", .width = 2 },
2717
+ .{ .codepoint = "U+AC2C", .width = 2 },
2718
+ .{ .codepoint = "U+AC2D", .width = 2 },
2719
+ .{ .codepoint = "U+AC2E", .width = 2 },
2720
+ .{ .codepoint = "U+AC2F", .width = 2 },
2721
+ .{ .codepoint = "U+AC30", .width = 2 },
2722
+ .{ .codepoint = "U+AC31", .width = 2 },
2723
+ .{ .codepoint = "U+AC32", .width = 2 },
2724
+ .{ .codepoint = "U+AC33", .width = 2 },
2725
+ .{ .codepoint = "U+AC34", .width = 2 },
2726
+ .{ .codepoint = "U+AC35", .width = 2 },
2727
+ .{ .codepoint = "U+AC36", .width = 2 },
2728
+ .{ .codepoint = "U+AC37", .width = 2 },
2729
+ .{ .codepoint = "U+AC38", .width = 2 },
2730
+ .{ .codepoint = "U+AC39", .width = 2 },
2731
+ .{ .codepoint = "U+AC3A", .width = 2 },
2732
+ .{ .codepoint = "U+AC3B", .width = 2 },
2733
+ .{ .codepoint = "U+AC3C", .width = 2 },
2734
+ .{ .codepoint = "U+AC3D", .width = 2 },
2735
+ .{ .codepoint = "U+AC3E", .width = 2 },
2736
+ .{ .codepoint = "U+AC3F", .width = 2 },
2737
+ .{ .codepoint = "U+AC40", .width = 2 },
2738
+ .{ .codepoint = "U+AC41", .width = 2 },
2739
+ .{ .codepoint = "U+AC42", .width = 2 },
2740
+ .{ .codepoint = "U+AC43", .width = 2 },
2741
+ .{ .codepoint = "U+AC44", .width = 2 },
2742
+ .{ .codepoint = "U+AC45", .width = 2 },
2743
+ .{ .codepoint = "U+AC46", .width = 2 },
2744
+ .{ .codepoint = "U+AC47", .width = 2 },
2745
+ .{ .codepoint = "U+AC48", .width = 2 },
2746
+ .{ .codepoint = "U+AC49", .width = 2 },
2747
+ .{ .codepoint = "U+AC4A", .width = 2 },
2748
+ .{ .codepoint = "U+AC4B", .width = 2 },
2749
+ .{ .codepoint = "U+AC4C", .width = 2 },
2750
+ .{ .codepoint = "U+AC4D", .width = 2 },
2751
+ .{ .codepoint = "U+AC4E", .width = 2 },
2752
+ .{ .codepoint = "U+AC4F", .width = 2 },
2753
+ .{ .codepoint = "U+AC50", .width = 2 },
2754
+ .{ .codepoint = "U+AC51", .width = 2 },
2755
+ .{ .codepoint = "U+AC52", .width = 2 },
2756
+ .{ .codepoint = "U+AC53", .width = 2 },
2757
+ .{ .codepoint = "U+AC54", .width = 2 },
2758
+ .{ .codepoint = "U+AC55", .width = 2 },
2759
+ .{ .codepoint = "U+AC56", .width = 2 },
2760
+ .{ .codepoint = "U+AC57", .width = 2 },
2761
+ .{ .codepoint = "U+AC58", .width = 2 },
2762
+ .{ .codepoint = "U+AC59", .width = 2 },
2763
+ .{ .codepoint = "U+AC5A", .width = 2 },
2764
+ .{ .codepoint = "U+AC5B", .width = 2 },
2765
+ .{ .codepoint = "U+AC5C", .width = 2 },
2766
+ .{ .codepoint = "U+AC5D", .width = 2 },
2767
+ .{ .codepoint = "U+AC5E", .width = 2 },
2768
+ .{ .codepoint = "U+AC5F", .width = 2 },
2769
+ .{ .codepoint = "U+AC60", .width = 2 },
2770
+ .{ .codepoint = "U+AC61", .width = 2 },
2771
+ .{ .codepoint = "U+AC62", .width = 2 },
2772
+ .{ .codepoint = "U+AC63", .width = 2 },
2773
+ .{ .codepoint = "U+AC64", .width = 2 },
2774
+ .{ .codepoint = "U+AC65", .width = 2 },
2775
+ .{ .codepoint = "U+AC66", .width = 2 },
2776
+ .{ .codepoint = "U+AC67", .width = 2 },
2777
+ .{ .codepoint = "U+AC68", .width = 2 },
2778
+ .{ .codepoint = "U+AC69", .width = 2 },
2779
+ .{ .codepoint = "U+AC6A", .width = 2 },
2780
+ .{ .codepoint = "U+AC6B", .width = 2 },
2781
+ .{ .codepoint = "U+AC6C", .width = 2 },
2782
+ .{ .codepoint = "U+AC6D", .width = 2 },
2783
+ .{ .codepoint = "U+AC6E", .width = 2 },
2784
+ .{ .codepoint = "U+AC6F", .width = 2 },
2785
+ .{ .codepoint = "U+AC70", .width = 2 },
2786
+ .{ .codepoint = "U+AC71", .width = 2 },
2787
+ .{ .codepoint = "U+AC72", .width = 2 },
2788
+ .{ .codepoint = "U+AC73", .width = 2 },
2789
+ .{ .codepoint = "U+AC74", .width = 2 },
2790
+ .{ .codepoint = "U+AC75", .width = 2 },
2791
+ .{ .codepoint = "U+AC76", .width = 2 },
2792
+ .{ .codepoint = "U+AC77", .width = 2 },
2793
+ .{ .codepoint = "U+AC78", .width = 2 },
2794
+ .{ .codepoint = "U+AC79", .width = 2 },
2795
+ .{ .codepoint = "U+AC7A", .width = 2 },
2796
+ .{ .codepoint = "U+AC7B", .width = 2 },
2797
+ .{ .codepoint = "U+AC7C", .width = 2 },
2798
+ .{ .codepoint = "U+AC7D", .width = 2 },
2799
+ .{ .codepoint = "U+AC7E", .width = 2 },
2800
+ .{ .codepoint = "U+AC7F", .width = 2 },
2801
+ .{ .codepoint = "U+AC80", .width = 2 },
2802
+ .{ .codepoint = "U+AC81", .width = 2 },
2803
+ .{ .codepoint = "U+AC82", .width = 2 },
2804
+ .{ .codepoint = "U+AC83", .width = 2 },
2805
+ .{ .codepoint = "U+AC84", .width = 2 },
2806
+ .{ .codepoint = "U+AC85", .width = 2 },
2807
+ .{ .codepoint = "U+AC86", .width = 2 },
2808
+ .{ .codepoint = "U+AC87", .width = 2 },
2809
+ .{ .codepoint = "U+AC88", .width = 2 },
2810
+ .{ .codepoint = "U+AC89", .width = 2 },
2811
+ .{ .codepoint = "U+AC8A", .width = 2 },
2812
+ .{ .codepoint = "U+AC8B", .width = 2 },
2813
+ .{ .codepoint = "U+AC8C", .width = 2 },
2814
+ .{ .codepoint = "U+AC8D", .width = 2 },
2815
+ .{ .codepoint = "U+AC8E", .width = 2 },
2816
+ .{ .codepoint = "U+AC8F", .width = 2 },
2817
+ .{ .codepoint = "U+AC90", .width = 2 },
2818
+ .{ .codepoint = "U+AC91", .width = 2 },
2819
+ .{ .codepoint = "U+AC92", .width = 2 },
2820
+ .{ .codepoint = "U+AC93", .width = 2 },
2821
+ .{ .codepoint = "U+AC94", .width = 2 },
2822
+ .{ .codepoint = "U+AC95", .width = 2 },
2823
+ .{ .codepoint = "U+AC96", .width = 2 },
2824
+ .{ .codepoint = "U+AC97", .width = 2 },
2825
+ .{ .codepoint = "U+AC98", .width = 2 },
2826
+ .{ .codepoint = "U+AC99", .width = 2 },
2827
+ .{ .codepoint = "U+AC9A", .width = 2 },
2828
+ .{ .codepoint = "U+AC9B", .width = 2 },
2829
+ .{ .codepoint = "U+AC9C", .width = 2 },
2830
+ .{ .codepoint = "U+AC9D", .width = 2 },
2831
+ .{ .codepoint = "U+AC9E", .width = 2 },
2832
+ .{ .codepoint = "U+AC9F", .width = 2 },
2833
+ .{ .codepoint = "U+ACA0", .width = 2 },
2834
+ .{ .codepoint = "U+ACA1", .width = 2 },
2835
+ .{ .codepoint = "U+ACA2", .width = 2 },
2836
+ .{ .codepoint = "U+ACA3", .width = 2 },
2837
+ .{ .codepoint = "U+ACA4", .width = 2 },
2838
+ .{ .codepoint = "U+ACA5", .width = 2 },
2839
+ .{ .codepoint = "U+ACA6", .width = 2 },
2840
+ .{ .codepoint = "U+ACA7", .width = 2 },
2841
+ .{ .codepoint = "U+ACA8", .width = 2 },
2842
+ .{ .codepoint = "U+ACA9", .width = 2 },
2843
+ .{ .codepoint = "U+ACAA", .width = 2 },
2844
+ .{ .codepoint = "U+ACAB", .width = 2 },
2845
+ .{ .codepoint = "U+ACAC", .width = 2 },
2846
+ .{ .codepoint = "U+ACAD", .width = 2 },
2847
+ .{ .codepoint = "U+ACAE", .width = 2 },
2848
+ .{ .codepoint = "U+ACAF", .width = 2 },
2849
+ .{ .codepoint = "U+ACB0", .width = 2 },
2850
+ .{ .codepoint = "U+ACB1", .width = 2 },
2851
+ .{ .codepoint = "U+ACB2", .width = 2 },
2852
+ .{ .codepoint = "U+ACB3", .width = 2 },
2853
+ .{ .codepoint = "U+ACB4", .width = 2 },
2854
+ .{ .codepoint = "U+ACB5", .width = 2 },
2855
+ .{ .codepoint = "U+ACB6", .width = 2 },
2856
+ .{ .codepoint = "U+ACB7", .width = 2 },
2857
+ .{ .codepoint = "U+ACB8", .width = 2 },
2858
+ .{ .codepoint = "U+ACB9", .width = 2 },
2859
+ .{ .codepoint = "U+ACBA", .width = 2 },
2860
+ .{ .codepoint = "U+ACBB", .width = 2 },
2861
+ .{ .codepoint = "U+ACBC", .width = 2 },
2862
+ .{ .codepoint = "U+ACBD", .width = 2 },
2863
+ .{ .codepoint = "U+ACBE", .width = 2 },
2864
+ .{ .codepoint = "U+ACBF", .width = 2 },
2865
+ .{ .codepoint = "U+ACC0", .width = 2 },
2866
+ .{ .codepoint = "U+ACC1", .width = 2 },
2867
+ .{ .codepoint = "U+ACC2", .width = 2 },
2868
+ .{ .codepoint = "U+ACC3", .width = 2 },
2869
+ .{ .codepoint = "U+ACC4", .width = 2 },
2870
+ .{ .codepoint = "U+ACC5", .width = 2 },
2871
+ .{ .codepoint = "U+ACC6", .width = 2 },
2872
+ .{ .codepoint = "U+ACC7", .width = 2 },
2873
+ .{ .codepoint = "U+ACC8", .width = 2 },
2874
+ .{ .codepoint = "U+ACC9", .width = 2 },
2875
+ .{ .codepoint = "U+ACCA", .width = 2 },
2876
+ .{ .codepoint = "U+ACCB", .width = 2 },
2877
+ .{ .codepoint = "U+ACCC", .width = 2 },
2878
+ .{ .codepoint = "U+ACCD", .width = 2 },
2879
+ .{ .codepoint = "U+ACCE", .width = 2 },
2880
+ .{ .codepoint = "U+ACCF", .width = 2 },
2881
+ .{ .codepoint = "U+ACD0", .width = 2 },
2882
+ .{ .codepoint = "U+ACD1", .width = 2 },
2883
+ .{ .codepoint = "U+ACD2", .width = 2 },
2884
+ .{ .codepoint = "U+ACD3", .width = 2 },
2885
+ .{ .codepoint = "U+ACD4", .width = 2 },
2886
+ .{ .codepoint = "U+ACD5", .width = 2 },
2887
+ .{ .codepoint = "U+ACD6", .width = 2 },
2888
+ .{ .codepoint = "U+ACD7", .width = 2 },
2889
+ .{ .codepoint = "U+ACD8", .width = 2 },
2890
+ .{ .codepoint = "U+ACD9", .width = 2 },
2891
+ .{ .codepoint = "U+ACDA", .width = 2 },
2892
+ .{ .codepoint = "U+ACDB", .width = 2 },
2893
+ .{ .codepoint = "U+ACDC", .width = 2 },
2894
+ .{ .codepoint = "U+ACDD", .width = 2 },
2895
+ .{ .codepoint = "U+ACDE", .width = 2 },
2896
+ .{ .codepoint = "U+ACDF", .width = 2 },
2897
+ .{ .codepoint = "U+ACE0", .width = 2 },
2898
+ .{ .codepoint = "U+ACE1", .width = 2 },
2899
+ .{ .codepoint = "U+ACE2", .width = 2 },
2900
+ .{ .codepoint = "U+ACE3", .width = 2 },
2901
+ .{ .codepoint = "U+ACE4", .width = 2 },
2902
+ .{ .codepoint = "U+ACE5", .width = 2 },
2903
+ .{ .codepoint = "U+ACE6", .width = 2 },
2904
+ .{ .codepoint = "U+ACE7", .width = 2 },
2905
+ .{ .codepoint = "U+ACE8", .width = 2 },
2906
+ .{ .codepoint = "U+ACE9", .width = 2 },
2907
+ .{ .codepoint = "U+ACEA", .width = 2 },
2908
+ .{ .codepoint = "U+ACEB", .width = 2 },
2909
+ .{ .codepoint = "U+ACEC", .width = 2 },
2910
+ .{ .codepoint = "U+ACED", .width = 2 },
2911
+ .{ .codepoint = "U+ACEE", .width = 2 },
2912
+ .{ .codepoint = "U+ACEF", .width = 2 },
2913
+ .{ .codepoint = "U+ACF0", .width = 2 },
2914
+ .{ .codepoint = "U+ACF1", .width = 2 },
2915
+ .{ .codepoint = "U+ACF2", .width = 2 },
2916
+ .{ .codepoint = "U+ACF3", .width = 2 },
2917
+ .{ .codepoint = "U+ACF4", .width = 2 },
2918
+ .{ .codepoint = "U+ACF5", .width = 2 },
2919
+ .{ .codepoint = "U+ACF6", .width = 2 },
2920
+ .{ .codepoint = "U+ACF7", .width = 2 },
2921
+ .{ .codepoint = "U+ACF8", .width = 2 },
2922
+ .{ .codepoint = "U+ACF9", .width = 2 },
2923
+ .{ .codepoint = "U+ACFA", .width = 2 },
2924
+ .{ .codepoint = "U+ACFB", .width = 2 },
2925
+ .{ .codepoint = "U+ACFC", .width = 2 },
2926
+ .{ .codepoint = "U+ACFD", .width = 2 },
2927
+ .{ .codepoint = "U+ACFE", .width = 2 },
2928
+ .{ .codepoint = "U+ACFF", .width = 2 },
2929
+ .{ .codepoint = "U+1F300", .width = 2 },
2930
+ .{ .codepoint = "U+1F301", .width = 2 },
2931
+ .{ .codepoint = "U+1F302", .width = 2 },
2932
+ .{ .codepoint = "U+1F303", .width = 2 },
2933
+ .{ .codepoint = "U+1F304", .width = 2 },
2934
+ .{ .codepoint = "U+1F305", .width = 2 },
2935
+ .{ .codepoint = "U+1F306", .width = 2 },
2936
+ .{ .codepoint = "U+1F307", .width = 2 },
2937
+ .{ .codepoint = "U+1F308", .width = 2 },
2938
+ .{ .codepoint = "U+1F309", .width = 2 },
2939
+ .{ .codepoint = "U+1F30A", .width = 2 },
2940
+ .{ .codepoint = "U+1F30B", .width = 2 },
2941
+ .{ .codepoint = "U+1F30C", .width = 2 },
2942
+ .{ .codepoint = "U+1F30D", .width = 2 },
2943
+ .{ .codepoint = "U+1F30E", .width = 2 },
2944
+ .{ .codepoint = "U+1F30F", .width = 2 },
2945
+ .{ .codepoint = "U+1F310", .width = 2 },
2946
+ .{ .codepoint = "U+1F311", .width = 2 },
2947
+ .{ .codepoint = "U+1F312", .width = 2 },
2948
+ .{ .codepoint = "U+1F313", .width = 2 },
2949
+ .{ .codepoint = "U+1F314", .width = 2 },
2950
+ .{ .codepoint = "U+1F315", .width = 2 },
2951
+ .{ .codepoint = "U+1F316", .width = 2 },
2952
+ .{ .codepoint = "U+1F317", .width = 2 },
2953
+ .{ .codepoint = "U+1F318", .width = 2 },
2954
+ .{ .codepoint = "U+1F319", .width = 2 },
2955
+ .{ .codepoint = "U+1F31A", .width = 2 },
2956
+ .{ .codepoint = "U+1F31B", .width = 2 },
2957
+ .{ .codepoint = "U+1F31C", .width = 2 },
2958
+ .{ .codepoint = "U+1F31D", .width = 2 },
2959
+ .{ .codepoint = "U+1F31E", .width = 2 },
2960
+ .{ .codepoint = "U+1F31F", .width = 2 },
2961
+ .{ .codepoint = "U+1F320", .width = 2 },
2962
+ .{ .codepoint = "U+1F321", .width = 1 },
2963
+ .{ .codepoint = "U+1F322", .width = 1 },
2964
+ .{ .codepoint = "U+1F323", .width = 1 },
2965
+ .{ .codepoint = "U+1F324", .width = 1 },
2966
+ .{ .codepoint = "U+1F325", .width = 1 },
2967
+ .{ .codepoint = "U+1F326", .width = 1 },
2968
+ .{ .codepoint = "U+1F327", .width = 1 },
2969
+ .{ .codepoint = "U+1F328", .width = 1 },
2970
+ .{ .codepoint = "U+1F329", .width = 1 },
2971
+ .{ .codepoint = "U+1F32A", .width = 1 },
2972
+ .{ .codepoint = "U+1F32B", .width = 1 },
2973
+ .{ .codepoint = "U+1F32C", .width = 1 },
2974
+ .{ .codepoint = "U+1F32D", .width = 2 },
2975
+ .{ .codepoint = "U+1F32E", .width = 2 },
2976
+ .{ .codepoint = "U+1F32F", .width = 2 },
2977
+ .{ .codepoint = "U+1F330", .width = 2 },
2978
+ .{ .codepoint = "U+1F331", .width = 2 },
2979
+ .{ .codepoint = "U+1F332", .width = 2 },
2980
+ .{ .codepoint = "U+1F333", .width = 2 },
2981
+ .{ .codepoint = "U+1F334", .width = 2 },
2982
+ .{ .codepoint = "U+1F335", .width = 2 },
2983
+ .{ .codepoint = "U+1F336", .width = 1 },
2984
+ .{ .codepoint = "U+1F337", .width = 2 },
2985
+ .{ .codepoint = "U+1F338", .width = 2 },
2986
+ .{ .codepoint = "U+1F339", .width = 2 },
2987
+ .{ .codepoint = "U+1F33A", .width = 2 },
2988
+ .{ .codepoint = "U+1F33B", .width = 2 },
2989
+ .{ .codepoint = "U+1F33C", .width = 2 },
2990
+ .{ .codepoint = "U+1F33D", .width = 2 },
2991
+ .{ .codepoint = "U+1F33E", .width = 2 },
2992
+ .{ .codepoint = "U+1F33F", .width = 2 },
2993
+ .{ .codepoint = "U+1F340", .width = 2 },
2994
+ .{ .codepoint = "U+1F341", .width = 2 },
2995
+ .{ .codepoint = "U+1F342", .width = 2 },
2996
+ .{ .codepoint = "U+1F343", .width = 2 },
2997
+ .{ .codepoint = "U+1F344", .width = 2 },
2998
+ .{ .codepoint = "U+1F345", .width = 2 },
2999
+ .{ .codepoint = "U+1F346", .width = 2 },
3000
+ .{ .codepoint = "U+1F347", .width = 2 },
3001
+ .{ .codepoint = "U+1F348", .width = 2 },
3002
+ .{ .codepoint = "U+1F349", .width = 2 },
3003
+ .{ .codepoint = "U+1F34A", .width = 2 },
3004
+ .{ .codepoint = "U+1F34B", .width = 2 },
3005
+ .{ .codepoint = "U+1F34C", .width = 2 },
3006
+ .{ .codepoint = "U+1F34D", .width = 2 },
3007
+ .{ .codepoint = "U+1F34E", .width = 2 },
3008
+ .{ .codepoint = "U+1F34F", .width = 2 },
3009
+ .{ .codepoint = "U+1F350", .width = 2 },
3010
+ .{ .codepoint = "U+1F351", .width = 2 },
3011
+ .{ .codepoint = "U+1F352", .width = 2 },
3012
+ .{ .codepoint = "U+1F353", .width = 2 },
3013
+ .{ .codepoint = "U+1F354", .width = 2 },
3014
+ .{ .codepoint = "U+1F355", .width = 2 },
3015
+ .{ .codepoint = "U+1F356", .width = 2 },
3016
+ .{ .codepoint = "U+1F357", .width = 2 },
3017
+ .{ .codepoint = "U+1F358", .width = 2 },
3018
+ .{ .codepoint = "U+1F359", .width = 2 },
3019
+ .{ .codepoint = "U+1F35A", .width = 2 },
3020
+ .{ .codepoint = "U+1F35B", .width = 2 },
3021
+ .{ .codepoint = "U+1F35C", .width = 2 },
3022
+ .{ .codepoint = "U+1F35D", .width = 2 },
3023
+ .{ .codepoint = "U+1F35E", .width = 2 },
3024
+ .{ .codepoint = "U+1F35F", .width = 2 },
3025
+ .{ .codepoint = "U+1F360", .width = 2 },
3026
+ .{ .codepoint = "U+1F361", .width = 2 },
3027
+ .{ .codepoint = "U+1F362", .width = 2 },
3028
+ .{ .codepoint = "U+1F363", .width = 2 },
3029
+ .{ .codepoint = "U+1F364", .width = 2 },
3030
+ .{ .codepoint = "U+1F365", .width = 2 },
3031
+ .{ .codepoint = "U+1F366", .width = 2 },
3032
+ .{ .codepoint = "U+1F367", .width = 2 },
3033
+ .{ .codepoint = "U+1F368", .width = 2 },
3034
+ .{ .codepoint = "U+1F369", .width = 2 },
3035
+ .{ .codepoint = "U+1F36A", .width = 2 },
3036
+ .{ .codepoint = "U+1F36B", .width = 2 },
3037
+ .{ .codepoint = "U+1F36C", .width = 2 },
3038
+ .{ .codepoint = "U+1F36D", .width = 2 },
3039
+ .{ .codepoint = "U+1F36E", .width = 2 },
3040
+ .{ .codepoint = "U+1F36F", .width = 2 },
3041
+ .{ .codepoint = "U+1F370", .width = 2 },
3042
+ .{ .codepoint = "U+1F371", .width = 2 },
3043
+ .{ .codepoint = "U+1F372", .width = 2 },
3044
+ .{ .codepoint = "U+1F373", .width = 2 },
3045
+ .{ .codepoint = "U+1F374", .width = 2 },
3046
+ .{ .codepoint = "U+1F375", .width = 2 },
3047
+ .{ .codepoint = "U+1F376", .width = 2 },
3048
+ .{ .codepoint = "U+1F377", .width = 2 },
3049
+ .{ .codepoint = "U+1F378", .width = 2 },
3050
+ .{ .codepoint = "U+1F379", .width = 2 },
3051
+ .{ .codepoint = "U+1F37A", .width = 2 },
3052
+ .{ .codepoint = "U+1F37B", .width = 2 },
3053
+ .{ .codepoint = "U+1F37C", .width = 2 },
3054
+ .{ .codepoint = "U+1F37D", .width = 1 },
3055
+ .{ .codepoint = "U+1F37E", .width = 2 },
3056
+ .{ .codepoint = "U+1F37F", .width = 2 },
3057
+ .{ .codepoint = "U+1F380", .width = 2 },
3058
+ .{ .codepoint = "U+1F381", .width = 2 },
3059
+ .{ .codepoint = "U+1F382", .width = 2 },
3060
+ .{ .codepoint = "U+1F383", .width = 2 },
3061
+ .{ .codepoint = "U+1F384", .width = 2 },
3062
+ .{ .codepoint = "U+1F385", .width = 2 },
3063
+ .{ .codepoint = "U+1F386", .width = 2 },
3064
+ .{ .codepoint = "U+1F387", .width = 2 },
3065
+ .{ .codepoint = "U+1F388", .width = 2 },
3066
+ .{ .codepoint = "U+1F389", .width = 2 },
3067
+ .{ .codepoint = "U+1F38A", .width = 2 },
3068
+ .{ .codepoint = "U+1F38B", .width = 2 },
3069
+ .{ .codepoint = "U+1F38C", .width = 2 },
3070
+ .{ .codepoint = "U+1F38D", .width = 2 },
3071
+ .{ .codepoint = "U+1F38E", .width = 2 },
3072
+ .{ .codepoint = "U+1F38F", .width = 2 },
3073
+ .{ .codepoint = "U+1F390", .width = 2 },
3074
+ .{ .codepoint = "U+1F391", .width = 2 },
3075
+ .{ .codepoint = "U+1F392", .width = 2 },
3076
+ .{ .codepoint = "U+1F393", .width = 2 },
3077
+ .{ .codepoint = "U+1F394", .width = 1 },
3078
+ .{ .codepoint = "U+1F395", .width = 1 },
3079
+ .{ .codepoint = "U+1F396", .width = 1 },
3080
+ .{ .codepoint = "U+1F397", .width = 1 },
3081
+ .{ .codepoint = "U+1F398", .width = 1 },
3082
+ .{ .codepoint = "U+1F399", .width = 1 },
3083
+ .{ .codepoint = "U+1F39A", .width = 1 },
3084
+ .{ .codepoint = "U+1F39B", .width = 1 },
3085
+ .{ .codepoint = "U+1F39C", .width = 1 },
3086
+ .{ .codepoint = "U+1F39D", .width = 1 },
3087
+ .{ .codepoint = "U+1F39E", .width = 1 },
3088
+ .{ .codepoint = "U+1F39F", .width = 1 },
3089
+ .{ .codepoint = "U+1F3A0", .width = 2 },
3090
+ .{ .codepoint = "U+1F3A1", .width = 2 },
3091
+ .{ .codepoint = "U+1F3A2", .width = 2 },
3092
+ .{ .codepoint = "U+1F3A3", .width = 2 },
3093
+ .{ .codepoint = "U+1F3A4", .width = 2 },
3094
+ .{ .codepoint = "U+1F3A5", .width = 2 },
3095
+ .{ .codepoint = "U+1F3A6", .width = 2 },
3096
+ .{ .codepoint = "U+1F3A7", .width = 2 },
3097
+ .{ .codepoint = "U+1F3A8", .width = 2 },
3098
+ .{ .codepoint = "U+1F3A9", .width = 2 },
3099
+ .{ .codepoint = "U+1F3AA", .width = 2 },
3100
+ .{ .codepoint = "U+1F3AB", .width = 2 },
3101
+ .{ .codepoint = "U+1F3AC", .width = 2 },
3102
+ .{ .codepoint = "U+1F3AD", .width = 2 },
3103
+ .{ .codepoint = "U+1F3AE", .width = 2 },
3104
+ .{ .codepoint = "U+1F3AF", .width = 2 },
3105
+ .{ .codepoint = "U+1F3B0", .width = 2 },
3106
+ .{ .codepoint = "U+1F3B1", .width = 2 },
3107
+ .{ .codepoint = "U+1F3B2", .width = 2 },
3108
+ .{ .codepoint = "U+1F3B3", .width = 2 },
3109
+ .{ .codepoint = "U+1F3B4", .width = 2 },
3110
+ .{ .codepoint = "U+1F3B5", .width = 2 },
3111
+ .{ .codepoint = "U+1F3B6", .width = 2 },
3112
+ .{ .codepoint = "U+1F3B7", .width = 2 },
3113
+ .{ .codepoint = "U+1F3B8", .width = 2 },
3114
+ .{ .codepoint = "U+1F3B9", .width = 2 },
3115
+ .{ .codepoint = "U+1F3BA", .width = 2 },
3116
+ .{ .codepoint = "U+1F3BB", .width = 2 },
3117
+ .{ .codepoint = "U+1F3BC", .width = 2 },
3118
+ .{ .codepoint = "U+1F3BD", .width = 2 },
3119
+ .{ .codepoint = "U+1F3BE", .width = 2 },
3120
+ .{ .codepoint = "U+1F3BF", .width = 2 },
3121
+ .{ .codepoint = "U+1F3C0", .width = 2 },
3122
+ .{ .codepoint = "U+1F3C1", .width = 2 },
3123
+ .{ .codepoint = "U+1F3C2", .width = 2 },
3124
+ .{ .codepoint = "U+1F3C3", .width = 2 },
3125
+ .{ .codepoint = "U+1F3C4", .width = 2 },
3126
+ .{ .codepoint = "U+1F3C5", .width = 2 },
3127
+ .{ .codepoint = "U+1F3C6", .width = 2 },
3128
+ .{ .codepoint = "U+1F3C7", .width = 2 },
3129
+ .{ .codepoint = "U+1F3C8", .width = 2 },
3130
+ .{ .codepoint = "U+1F3C9", .width = 2 },
3131
+ .{ .codepoint = "U+1F3CA", .width = 2 },
3132
+ .{ .codepoint = "U+1F3CB", .width = 1 },
3133
+ .{ .codepoint = "U+1F3CC", .width = 1 },
3134
+ .{ .codepoint = "U+1F3CD", .width = 1 },
3135
+ .{ .codepoint = "U+1F3CE", .width = 1 },
3136
+ .{ .codepoint = "U+1F3CF", .width = 2 },
3137
+ .{ .codepoint = "U+1F3D0", .width = 2 },
3138
+ .{ .codepoint = "U+1F3D1", .width = 2 },
3139
+ .{ .codepoint = "U+1F3D2", .width = 2 },
3140
+ .{ .codepoint = "U+1F3D3", .width = 2 },
3141
+ .{ .codepoint = "U+1F3D4", .width = 1 },
3142
+ .{ .codepoint = "U+1F3D5", .width = 1 },
3143
+ .{ .codepoint = "U+1F3D6", .width = 1 },
3144
+ .{ .codepoint = "U+1F3D7", .width = 1 },
3145
+ .{ .codepoint = "U+1F3D8", .width = 1 },
3146
+ .{ .codepoint = "U+1F3D9", .width = 1 },
3147
+ .{ .codepoint = "U+1F3DA", .width = 1 },
3148
+ .{ .codepoint = "U+1F3DB", .width = 1 },
3149
+ .{ .codepoint = "U+1F3DC", .width = 1 },
3150
+ .{ .codepoint = "U+1F3DD", .width = 1 },
3151
+ .{ .codepoint = "U+1F3DE", .width = 1 },
3152
+ .{ .codepoint = "U+1F3DF", .width = 1 },
3153
+ .{ .codepoint = "U+1F3E0", .width = 2 },
3154
+ .{ .codepoint = "U+1F3E1", .width = 2 },
3155
+ .{ .codepoint = "U+1F3E2", .width = 2 },
3156
+ .{ .codepoint = "U+1F3E3", .width = 2 },
3157
+ .{ .codepoint = "U+1F3E4", .width = 2 },
3158
+ .{ .codepoint = "U+1F3E5", .width = 2 },
3159
+ .{ .codepoint = "U+1F3E6", .width = 2 },
3160
+ .{ .codepoint = "U+1F3E7", .width = 2 },
3161
+ .{ .codepoint = "U+1F3E8", .width = 2 },
3162
+ .{ .codepoint = "U+1F3E9", .width = 2 },
3163
+ .{ .codepoint = "U+1F3EA", .width = 2 },
3164
+ .{ .codepoint = "U+1F3EB", .width = 2 },
3165
+ .{ .codepoint = "U+1F3EC", .width = 2 },
3166
+ .{ .codepoint = "U+1F3ED", .width = 2 },
3167
+ .{ .codepoint = "U+1F3EE", .width = 2 },
3168
+ .{ .codepoint = "U+1F3EF", .width = 2 },
3169
+ .{ .codepoint = "U+1F3F0", .width = 2 },
3170
+ .{ .codepoint = "U+1F3F1", .width = 1 },
3171
+ .{ .codepoint = "U+1F3F2", .width = 1 },
3172
+ .{ .codepoint = "U+1F3F3", .width = 1 },
3173
+ .{ .codepoint = "U+1F3F4", .width = 2 },
3174
+ .{ .codepoint = "U+1F3F5", .width = 1 },
3175
+ .{ .codepoint = "U+1F3F6", .width = 1 },
3176
+ .{ .codepoint = "U+1F3F7", .width = 1 },
3177
+ .{ .codepoint = "U+1F3F8", .width = 2 },
3178
+ .{ .codepoint = "U+1F3F9", .width = 2 },
3179
+ .{ .codepoint = "U+1F3FA", .width = 2 },
3180
+ .{ .codepoint = "U+1F3FB", .width = 2 },
3181
+ .{ .codepoint = "U+1F3FC", .width = 2 },
3182
+ .{ .codepoint = "U+1F3FD", .width = 2 },
3183
+ .{ .codepoint = "U+1F3FE", .width = 2 },
3184
+ .{ .codepoint = "U+1F3FF", .width = 2 },
3185
+ .{ .codepoint = "U+1F400", .width = 2 },
3186
+ .{ .codepoint = "U+1F401", .width = 2 },
3187
+ .{ .codepoint = "U+1F402", .width = 2 },
3188
+ .{ .codepoint = "U+1F403", .width = 2 },
3189
+ .{ .codepoint = "U+1F404", .width = 2 },
3190
+ .{ .codepoint = "U+1F405", .width = 2 },
3191
+ .{ .codepoint = "U+1F406", .width = 2 },
3192
+ .{ .codepoint = "U+1F407", .width = 2 },
3193
+ .{ .codepoint = "U+1F408", .width = 2 },
3194
+ .{ .codepoint = "U+1F409", .width = 2 },
3195
+ .{ .codepoint = "U+1F40A", .width = 2 },
3196
+ .{ .codepoint = "U+1F40B", .width = 2 },
3197
+ .{ .codepoint = "U+1F40C", .width = 2 },
3198
+ .{ .codepoint = "U+1F40D", .width = 2 },
3199
+ .{ .codepoint = "U+1F40E", .width = 2 },
3200
+ .{ .codepoint = "U+1F40F", .width = 2 },
3201
+ .{ .codepoint = "U+1F410", .width = 2 },
3202
+ .{ .codepoint = "U+1F411", .width = 2 },
3203
+ .{ .codepoint = "U+1F412", .width = 2 },
3204
+ .{ .codepoint = "U+1F413", .width = 2 },
3205
+ .{ .codepoint = "U+1F414", .width = 2 },
3206
+ .{ .codepoint = "U+1F415", .width = 2 },
3207
+ .{ .codepoint = "U+1F416", .width = 2 },
3208
+ .{ .codepoint = "U+1F417", .width = 2 },
3209
+ .{ .codepoint = "U+1F418", .width = 2 },
3210
+ .{ .codepoint = "U+1F419", .width = 2 },
3211
+ .{ .codepoint = "U+1F41A", .width = 2 },
3212
+ .{ .codepoint = "U+1F41B", .width = 2 },
3213
+ .{ .codepoint = "U+1F41C", .width = 2 },
3214
+ .{ .codepoint = "U+1F41D", .width = 2 },
3215
+ .{ .codepoint = "U+1F41E", .width = 2 },
3216
+ .{ .codepoint = "U+1F41F", .width = 2 },
3217
+ .{ .codepoint = "U+1F420", .width = 2 },
3218
+ .{ .codepoint = "U+1F421", .width = 2 },
3219
+ .{ .codepoint = "U+1F422", .width = 2 },
3220
+ .{ .codepoint = "U+1F423", .width = 2 },
3221
+ .{ .codepoint = "U+1F424", .width = 2 },
3222
+ .{ .codepoint = "U+1F425", .width = 2 },
3223
+ .{ .codepoint = "U+1F426", .width = 2 },
3224
+ .{ .codepoint = "U+1F427", .width = 2 },
3225
+ .{ .codepoint = "U+1F428", .width = 2 },
3226
+ .{ .codepoint = "U+1F429", .width = 2 },
3227
+ .{ .codepoint = "U+1F42A", .width = 2 },
3228
+ .{ .codepoint = "U+1F42B", .width = 2 },
3229
+ .{ .codepoint = "U+1F42C", .width = 2 },
3230
+ .{ .codepoint = "U+1F42D", .width = 2 },
3231
+ .{ .codepoint = "U+1F42E", .width = 2 },
3232
+ .{ .codepoint = "U+1F42F", .width = 2 },
3233
+ .{ .codepoint = "U+1F430", .width = 2 },
3234
+ .{ .codepoint = "U+1F431", .width = 2 },
3235
+ .{ .codepoint = "U+1F432", .width = 2 },
3236
+ .{ .codepoint = "U+1F433", .width = 2 },
3237
+ .{ .codepoint = "U+1F434", .width = 2 },
3238
+ .{ .codepoint = "U+1F435", .width = 2 },
3239
+ .{ .codepoint = "U+1F436", .width = 2 },
3240
+ .{ .codepoint = "U+1F437", .width = 2 },
3241
+ .{ .codepoint = "U+1F438", .width = 2 },
3242
+ .{ .codepoint = "U+1F439", .width = 2 },
3243
+ .{ .codepoint = "U+1F43A", .width = 2 },
3244
+ .{ .codepoint = "U+1F43B", .width = 2 },
3245
+ .{ .codepoint = "U+1F43C", .width = 2 },
3246
+ .{ .codepoint = "U+1F43D", .width = 2 },
3247
+ .{ .codepoint = "U+1F43E", .width = 2 },
3248
+ .{ .codepoint = "U+1F43F", .width = 1 },
3249
+ .{ .codepoint = "U+1F440", .width = 2 },
3250
+ .{ .codepoint = "U+1F441", .width = 1 },
3251
+ .{ .codepoint = "U+1F442", .width = 2 },
3252
+ .{ .codepoint = "U+1F443", .width = 2 },
3253
+ .{ .codepoint = "U+1F444", .width = 2 },
3254
+ .{ .codepoint = "U+1F445", .width = 2 },
3255
+ .{ .codepoint = "U+1F446", .width = 2 },
3256
+ .{ .codepoint = "U+1F447", .width = 2 },
3257
+ .{ .codepoint = "U+1F448", .width = 2 },
3258
+ .{ .codepoint = "U+1F449", .width = 2 },
3259
+ .{ .codepoint = "U+1F44A", .width = 2 },
3260
+ .{ .codepoint = "U+1F44B", .width = 2 },
3261
+ .{ .codepoint = "U+1F44C", .width = 2 },
3262
+ .{ .codepoint = "U+1F44D", .width = 2 },
3263
+ .{ .codepoint = "U+1F44E", .width = 2 },
3264
+ .{ .codepoint = "U+1F44F", .width = 2 },
3265
+ .{ .codepoint = "U+1F450", .width = 2 },
3266
+ .{ .codepoint = "U+1F451", .width = 2 },
3267
+ .{ .codepoint = "U+1F452", .width = 2 },
3268
+ .{ .codepoint = "U+1F453", .width = 2 },
3269
+ .{ .codepoint = "U+1F454", .width = 2 },
3270
+ .{ .codepoint = "U+1F455", .width = 2 },
3271
+ .{ .codepoint = "U+1F456", .width = 2 },
3272
+ .{ .codepoint = "U+1F457", .width = 2 },
3273
+ .{ .codepoint = "U+1F458", .width = 2 },
3274
+ .{ .codepoint = "U+1F459", .width = 2 },
3275
+ .{ .codepoint = "U+1F45A", .width = 2 },
3276
+ .{ .codepoint = "U+1F45B", .width = 2 },
3277
+ .{ .codepoint = "U+1F45C", .width = 2 },
3278
+ .{ .codepoint = "U+1F45D", .width = 2 },
3279
+ .{ .codepoint = "U+1F45E", .width = 2 },
3280
+ .{ .codepoint = "U+1F45F", .width = 2 },
3281
+ .{ .codepoint = "U+1F460", .width = 2 },
3282
+ .{ .codepoint = "U+1F461", .width = 2 },
3283
+ .{ .codepoint = "U+1F462", .width = 2 },
3284
+ .{ .codepoint = "U+1F463", .width = 2 },
3285
+ .{ .codepoint = "U+1F464", .width = 2 },
3286
+ .{ .codepoint = "U+1F465", .width = 2 },
3287
+ .{ .codepoint = "U+1F466", .width = 2 },
3288
+ .{ .codepoint = "U+1F467", .width = 2 },
3289
+ .{ .codepoint = "U+1F468", .width = 2 },
3290
+ .{ .codepoint = "U+1F469", .width = 2 },
3291
+ .{ .codepoint = "U+1F46A", .width = 2 },
3292
+ .{ .codepoint = "U+1F46B", .width = 2 },
3293
+ .{ .codepoint = "U+1F46C", .width = 2 },
3294
+ .{ .codepoint = "U+1F46D", .width = 2 },
3295
+ .{ .codepoint = "U+1F46E", .width = 2 },
3296
+ .{ .codepoint = "U+1F46F", .width = 2 },
3297
+ .{ .codepoint = "U+1F470", .width = 2 },
3298
+ .{ .codepoint = "U+1F471", .width = 2 },
3299
+ .{ .codepoint = "U+1F472", .width = 2 },
3300
+ .{ .codepoint = "U+1F473", .width = 2 },
3301
+ .{ .codepoint = "U+1F474", .width = 2 },
3302
+ .{ .codepoint = "U+1F475", .width = 2 },
3303
+ .{ .codepoint = "U+1F476", .width = 2 },
3304
+ .{ .codepoint = "U+1F477", .width = 2 },
3305
+ .{ .codepoint = "U+1F478", .width = 2 },
3306
+ .{ .codepoint = "U+1F479", .width = 2 },
3307
+ .{ .codepoint = "U+1F47A", .width = 2 },
3308
+ .{ .codepoint = "U+1F47B", .width = 2 },
3309
+ .{ .codepoint = "U+1F47C", .width = 2 },
3310
+ .{ .codepoint = "U+1F47D", .width = 2 },
3311
+ .{ .codepoint = "U+1F47E", .width = 2 },
3312
+ .{ .codepoint = "U+1F47F", .width = 2 },
3313
+ .{ .codepoint = "U+1F480", .width = 2 },
3314
+ .{ .codepoint = "U+1F481", .width = 2 },
3315
+ .{ .codepoint = "U+1F482", .width = 2 },
3316
+ .{ .codepoint = "U+1F483", .width = 2 },
3317
+ .{ .codepoint = "U+1F484", .width = 2 },
3318
+ .{ .codepoint = "U+1F485", .width = 2 },
3319
+ .{ .codepoint = "U+1F486", .width = 2 },
3320
+ .{ .codepoint = "U+1F487", .width = 2 },
3321
+ .{ .codepoint = "U+1F488", .width = 2 },
3322
+ .{ .codepoint = "U+1F489", .width = 2 },
3323
+ .{ .codepoint = "U+1F48A", .width = 2 },
3324
+ .{ .codepoint = "U+1F48B", .width = 2 },
3325
+ .{ .codepoint = "U+1F48C", .width = 2 },
3326
+ .{ .codepoint = "U+1F48D", .width = 2 },
3327
+ .{ .codepoint = "U+1F48E", .width = 2 },
3328
+ .{ .codepoint = "U+1F48F", .width = 2 },
3329
+ .{ .codepoint = "U+1F490", .width = 2 },
3330
+ .{ .codepoint = "U+1F491", .width = 2 },
3331
+ .{ .codepoint = "U+1F492", .width = 2 },
3332
+ .{ .codepoint = "U+1F493", .width = 2 },
3333
+ .{ .codepoint = "U+1F494", .width = 2 },
3334
+ .{ .codepoint = "U+1F495", .width = 2 },
3335
+ .{ .codepoint = "U+1F496", .width = 2 },
3336
+ .{ .codepoint = "U+1F497", .width = 2 },
3337
+ .{ .codepoint = "U+1F498", .width = 2 },
3338
+ .{ .codepoint = "U+1F499", .width = 2 },
3339
+ .{ .codepoint = "U+1F49A", .width = 2 },
3340
+ .{ .codepoint = "U+1F49B", .width = 2 },
3341
+ .{ .codepoint = "U+1F49C", .width = 2 },
3342
+ .{ .codepoint = "U+1F49D", .width = 2 },
3343
+ .{ .codepoint = "U+1F49E", .width = 2 },
3344
+ .{ .codepoint = "U+1F49F", .width = 2 },
3345
+ .{ .codepoint = "U+1F4A0", .width = 2 },
3346
+ .{ .codepoint = "U+1F4A1", .width = 2 },
3347
+ .{ .codepoint = "U+1F4A2", .width = 2 },
3348
+ .{ .codepoint = "U+1F4A3", .width = 2 },
3349
+ .{ .codepoint = "U+1F4A4", .width = 2 },
3350
+ .{ .codepoint = "U+1F4A5", .width = 2 },
3351
+ .{ .codepoint = "U+1F4A6", .width = 2 },
3352
+ .{ .codepoint = "U+1F4A7", .width = 2 },
3353
+ .{ .codepoint = "U+1F4A8", .width = 2 },
3354
+ .{ .codepoint = "U+1F4A9", .width = 2 },
3355
+ .{ .codepoint = "U+1F4AA", .width = 2 },
3356
+ .{ .codepoint = "U+1F4AB", .width = 2 },
3357
+ .{ .codepoint = "U+1F4AC", .width = 2 },
3358
+ .{ .codepoint = "U+1F4AD", .width = 2 },
3359
+ .{ .codepoint = "U+1F4AE", .width = 2 },
3360
+ .{ .codepoint = "U+1F4AF", .width = 2 },
3361
+ .{ .codepoint = "U+1F4B0", .width = 2 },
3362
+ .{ .codepoint = "U+1F4B1", .width = 2 },
3363
+ .{ .codepoint = "U+1F4B2", .width = 2 },
3364
+ .{ .codepoint = "U+1F4B3", .width = 2 },
3365
+ .{ .codepoint = "U+1F4B4", .width = 2 },
3366
+ .{ .codepoint = "U+1F4B5", .width = 2 },
3367
+ .{ .codepoint = "U+1F4B6", .width = 2 },
3368
+ .{ .codepoint = "U+1F4B7", .width = 2 },
3369
+ .{ .codepoint = "U+1F4B8", .width = 2 },
3370
+ .{ .codepoint = "U+1F4B9", .width = 2 },
3371
+ .{ .codepoint = "U+1F4BA", .width = 2 },
3372
+ .{ .codepoint = "U+1F4BB", .width = 2 },
3373
+ .{ .codepoint = "U+1F4BC", .width = 2 },
3374
+ .{ .codepoint = "U+1F4BD", .width = 2 },
3375
+ .{ .codepoint = "U+1F4BE", .width = 2 },
3376
+ .{ .codepoint = "U+1F4BF", .width = 2 },
3377
+ .{ .codepoint = "U+1F4C0", .width = 2 },
3378
+ .{ .codepoint = "U+1F4C1", .width = 2 },
3379
+ .{ .codepoint = "U+1F4C2", .width = 2 },
3380
+ .{ .codepoint = "U+1F4C3", .width = 2 },
3381
+ .{ .codepoint = "U+1F4C4", .width = 2 },
3382
+ .{ .codepoint = "U+1F4C5", .width = 2 },
3383
+ .{ .codepoint = "U+1F4C6", .width = 2 },
3384
+ .{ .codepoint = "U+1F4C7", .width = 2 },
3385
+ .{ .codepoint = "U+1F4C8", .width = 2 },
3386
+ .{ .codepoint = "U+1F4C9", .width = 2 },
3387
+ .{ .codepoint = "U+1F4CA", .width = 2 },
3388
+ .{ .codepoint = "U+1F4CB", .width = 2 },
3389
+ .{ .codepoint = "U+1F4CC", .width = 2 },
3390
+ .{ .codepoint = "U+1F4CD", .width = 2 },
3391
+ .{ .codepoint = "U+1F4CE", .width = 2 },
3392
+ .{ .codepoint = "U+1F4CF", .width = 2 },
3393
+ .{ .codepoint = "U+1F4D0", .width = 2 },
3394
+ .{ .codepoint = "U+1F4D1", .width = 2 },
3395
+ .{ .codepoint = "U+1F4D2", .width = 2 },
3396
+ .{ .codepoint = "U+1F4D3", .width = 2 },
3397
+ .{ .codepoint = "U+1F4D4", .width = 2 },
3398
+ .{ .codepoint = "U+1F4D5", .width = 2 },
3399
+ .{ .codepoint = "U+1F4D6", .width = 2 },
3400
+ .{ .codepoint = "U+1F4D7", .width = 2 },
3401
+ .{ .codepoint = "U+1F4D8", .width = 2 },
3402
+ .{ .codepoint = "U+1F4D9", .width = 2 },
3403
+ .{ .codepoint = "U+1F4DA", .width = 2 },
3404
+ .{ .codepoint = "U+1F4DB", .width = 2 },
3405
+ .{ .codepoint = "U+1F4DC", .width = 2 },
3406
+ .{ .codepoint = "U+1F4DD", .width = 2 },
3407
+ .{ .codepoint = "U+1F4DE", .width = 2 },
3408
+ .{ .codepoint = "U+1F4DF", .width = 2 },
3409
+ .{ .codepoint = "U+1F4E0", .width = 2 },
3410
+ .{ .codepoint = "U+1F4E1", .width = 2 },
3411
+ .{ .codepoint = "U+1F4E2", .width = 2 },
3412
+ .{ .codepoint = "U+1F4E3", .width = 2 },
3413
+ .{ .codepoint = "U+1F4E4", .width = 2 },
3414
+ .{ .codepoint = "U+1F4E5", .width = 2 },
3415
+ .{ .codepoint = "U+1F4E6", .width = 2 },
3416
+ .{ .codepoint = "U+1F4E7", .width = 2 },
3417
+ .{ .codepoint = "U+1F4E8", .width = 2 },
3418
+ .{ .codepoint = "U+1F4E9", .width = 2 },
3419
+ .{ .codepoint = "U+1F4EA", .width = 2 },
3420
+ .{ .codepoint = "U+1F4EB", .width = 2 },
3421
+ .{ .codepoint = "U+1F4EC", .width = 2 },
3422
+ .{ .codepoint = "U+1F4ED", .width = 2 },
3423
+ .{ .codepoint = "U+1F4EE", .width = 2 },
3424
+ .{ .codepoint = "U+1F4EF", .width = 2 },
3425
+ .{ .codepoint = "U+1F4F0", .width = 2 },
3426
+ .{ .codepoint = "U+1F4F1", .width = 2 },
3427
+ .{ .codepoint = "U+1F4F2", .width = 2 },
3428
+ .{ .codepoint = "U+1F4F3", .width = 2 },
3429
+ .{ .codepoint = "U+1F4F4", .width = 2 },
3430
+ .{ .codepoint = "U+1F4F5", .width = 2 },
3431
+ .{ .codepoint = "U+1F4F6", .width = 2 },
3432
+ .{ .codepoint = "U+1F4F7", .width = 2 },
3433
+ .{ .codepoint = "U+1F4F8", .width = 2 },
3434
+ .{ .codepoint = "U+1F4F9", .width = 2 },
3435
+ .{ .codepoint = "U+1F4FA", .width = 2 },
3436
+ .{ .codepoint = "U+1F4FB", .width = 2 },
3437
+ .{ .codepoint = "U+1F4FC", .width = 2 },
3438
+ .{ .codepoint = "U+1F4FD", .width = 1 },
3439
+ .{ .codepoint = "U+1F4FE", .width = 1 },
3440
+ .{ .codepoint = "U+1F4FF", .width = 2 },
3441
+ .{ .codepoint = "U+1F600", .width = 2 },
3442
+ .{ .codepoint = "U+1F601", .width = 2 },
3443
+ .{ .codepoint = "U+1F602", .width = 2 },
3444
+ .{ .codepoint = "U+1F603", .width = 2 },
3445
+ .{ .codepoint = "U+1F604", .width = 2 },
3446
+ .{ .codepoint = "U+1F605", .width = 2 },
3447
+ .{ .codepoint = "U+1F606", .width = 2 },
3448
+ .{ .codepoint = "U+1F607", .width = 2 },
3449
+ .{ .codepoint = "U+1F608", .width = 2 },
3450
+ .{ .codepoint = "U+1F609", .width = 2 },
3451
+ .{ .codepoint = "U+1F60A", .width = 2 },
3452
+ .{ .codepoint = "U+1F60B", .width = 2 },
3453
+ .{ .codepoint = "U+1F60C", .width = 2 },
3454
+ .{ .codepoint = "U+1F60D", .width = 2 },
3455
+ .{ .codepoint = "U+1F60E", .width = 2 },
3456
+ .{ .codepoint = "U+1F60F", .width = 2 },
3457
+ .{ .codepoint = "U+1F610", .width = 2 },
3458
+ .{ .codepoint = "U+1F611", .width = 2 },
3459
+ .{ .codepoint = "U+1F612", .width = 2 },
3460
+ .{ .codepoint = "U+1F613", .width = 2 },
3461
+ .{ .codepoint = "U+1F614", .width = 2 },
3462
+ .{ .codepoint = "U+1F615", .width = 2 },
3463
+ .{ .codepoint = "U+1F616", .width = 2 },
3464
+ .{ .codepoint = "U+1F617", .width = 2 },
3465
+ .{ .codepoint = "U+1F618", .width = 2 },
3466
+ .{ .codepoint = "U+1F619", .width = 2 },
3467
+ .{ .codepoint = "U+1F61A", .width = 2 },
3468
+ .{ .codepoint = "U+1F61B", .width = 2 },
3469
+ .{ .codepoint = "U+1F61C", .width = 2 },
3470
+ .{ .codepoint = "U+1F61D", .width = 2 },
3471
+ .{ .codepoint = "U+1F61E", .width = 2 },
3472
+ .{ .codepoint = "U+1F61F", .width = 2 },
3473
+ .{ .codepoint = "U+1F620", .width = 2 },
3474
+ .{ .codepoint = "U+1F621", .width = 2 },
3475
+ .{ .codepoint = "U+1F622", .width = 2 },
3476
+ .{ .codepoint = "U+1F623", .width = 2 },
3477
+ .{ .codepoint = "U+1F624", .width = 2 },
3478
+ .{ .codepoint = "U+1F625", .width = 2 },
3479
+ .{ .codepoint = "U+1F626", .width = 2 },
3480
+ .{ .codepoint = "U+1F627", .width = 2 },
3481
+ .{ .codepoint = "U+1F628", .width = 2 },
3482
+ .{ .codepoint = "U+1F629", .width = 2 },
3483
+ .{ .codepoint = "U+1F62A", .width = 2 },
3484
+ .{ .codepoint = "U+1F62B", .width = 2 },
3485
+ .{ .codepoint = "U+1F62C", .width = 2 },
3486
+ .{ .codepoint = "U+1F62D", .width = 2 },
3487
+ .{ .codepoint = "U+1F62E", .width = 2 },
3488
+ .{ .codepoint = "U+1F62F", .width = 2 },
3489
+ .{ .codepoint = "U+1F630", .width = 2 },
3490
+ .{ .codepoint = "U+1F631", .width = 2 },
3491
+ .{ .codepoint = "U+1F632", .width = 2 },
3492
+ .{ .codepoint = "U+1F633", .width = 2 },
3493
+ .{ .codepoint = "U+1F634", .width = 2 },
3494
+ .{ .codepoint = "U+1F635", .width = 2 },
3495
+ .{ .codepoint = "U+1F636", .width = 2 },
3496
+ .{ .codepoint = "U+1F637", .width = 2 },
3497
+ .{ .codepoint = "U+1F638", .width = 2 },
3498
+ .{ .codepoint = "U+1F639", .width = 2 },
3499
+ .{ .codepoint = "U+1F63A", .width = 2 },
3500
+ .{ .codepoint = "U+1F63B", .width = 2 },
3501
+ .{ .codepoint = "U+1F63C", .width = 2 },
3502
+ .{ .codepoint = "U+1F63D", .width = 2 },
3503
+ .{ .codepoint = "U+1F63E", .width = 2 },
3504
+ .{ .codepoint = "U+1F63F", .width = 2 },
3505
+ .{ .codepoint = "U+1F640", .width = 2 },
3506
+ .{ .codepoint = "U+1F641", .width = 2 },
3507
+ .{ .codepoint = "U+1F642", .width = 2 },
3508
+ .{ .codepoint = "U+1F643", .width = 2 },
3509
+ .{ .codepoint = "U+1F644", .width = 2 },
3510
+ .{ .codepoint = "U+1F645", .width = 2 },
3511
+ .{ .codepoint = "U+1F646", .width = 2 },
3512
+ .{ .codepoint = "U+1F647", .width = 2 },
3513
+ .{ .codepoint = "U+1F648", .width = 2 },
3514
+ .{ .codepoint = "U+1F649", .width = 2 },
3515
+ .{ .codepoint = "U+1F64A", .width = 2 },
3516
+ .{ .codepoint = "U+1F64B", .width = 2 },
3517
+ .{ .codepoint = "U+1F64C", .width = 2 },
3518
+ .{ .codepoint = "U+1F64D", .width = 2 },
3519
+ .{ .codepoint = "U+1F64E", .width = 2 },
3520
+ .{ .codepoint = "U+1F64F", .width = 2 },
3521
+ .{ .codepoint = "U+1F680", .width = 2 },
3522
+ .{ .codepoint = "U+1F681", .width = 2 },
3523
+ .{ .codepoint = "U+1F682", .width = 2 },
3524
+ .{ .codepoint = "U+1F683", .width = 2 },
3525
+ .{ .codepoint = "U+1F684", .width = 2 },
3526
+ .{ .codepoint = "U+1F685", .width = 2 },
3527
+ .{ .codepoint = "U+1F686", .width = 2 },
3528
+ .{ .codepoint = "U+1F687", .width = 2 },
3529
+ .{ .codepoint = "U+1F688", .width = 2 },
3530
+ .{ .codepoint = "U+1F689", .width = 2 },
3531
+ .{ .codepoint = "U+1F68A", .width = 2 },
3532
+ .{ .codepoint = "U+1F68B", .width = 2 },
3533
+ .{ .codepoint = "U+1F68C", .width = 2 },
3534
+ .{ .codepoint = "U+1F68D", .width = 2 },
3535
+ .{ .codepoint = "U+1F68E", .width = 2 },
3536
+ .{ .codepoint = "U+1F68F", .width = 2 },
3537
+ .{ .codepoint = "U+1F690", .width = 2 },
3538
+ .{ .codepoint = "U+1F691", .width = 2 },
3539
+ .{ .codepoint = "U+1F692", .width = 2 },
3540
+ .{ .codepoint = "U+1F693", .width = 2 },
3541
+ .{ .codepoint = "U+1F694", .width = 2 },
3542
+ .{ .codepoint = "U+1F695", .width = 2 },
3543
+ .{ .codepoint = "U+1F696", .width = 2 },
3544
+ .{ .codepoint = "U+1F697", .width = 2 },
3545
+ .{ .codepoint = "U+1F698", .width = 2 },
3546
+ .{ .codepoint = "U+1F699", .width = 2 },
3547
+ .{ .codepoint = "U+1F69A", .width = 2 },
3548
+ .{ .codepoint = "U+1F69B", .width = 2 },
3549
+ .{ .codepoint = "U+1F69C", .width = 2 },
3550
+ .{ .codepoint = "U+1F69D", .width = 2 },
3551
+ .{ .codepoint = "U+1F69E", .width = 2 },
3552
+ .{ .codepoint = "U+1F69F", .width = 2 },
3553
+ .{ .codepoint = "U+1F6A0", .width = 2 },
3554
+ .{ .codepoint = "U+1F6A1", .width = 2 },
3555
+ .{ .codepoint = "U+1F6A2", .width = 2 },
3556
+ .{ .codepoint = "U+1F6A3", .width = 2 },
3557
+ .{ .codepoint = "U+1F6A4", .width = 2 },
3558
+ .{ .codepoint = "U+1F6A5", .width = 2 },
3559
+ .{ .codepoint = "U+1F6A6", .width = 2 },
3560
+ .{ .codepoint = "U+1F6A7", .width = 2 },
3561
+ .{ .codepoint = "U+1F6A8", .width = 2 },
3562
+ .{ .codepoint = "U+1F6A9", .width = 2 },
3563
+ .{ .codepoint = "U+1F6AA", .width = 2 },
3564
+ .{ .codepoint = "U+1F6AB", .width = 2 },
3565
+ .{ .codepoint = "U+1F6AC", .width = 2 },
3566
+ .{ .codepoint = "U+1F6AD", .width = 2 },
3567
+ .{ .codepoint = "U+1F6AE", .width = 2 },
3568
+ .{ .codepoint = "U+1F6AF", .width = 2 },
3569
+ .{ .codepoint = "U+1F6B0", .width = 2 },
3570
+ .{ .codepoint = "U+1F6B1", .width = 2 },
3571
+ .{ .codepoint = "U+1F6B2", .width = 2 },
3572
+ .{ .codepoint = "U+1F6B3", .width = 2 },
3573
+ .{ .codepoint = "U+1F6B4", .width = 2 },
3574
+ .{ .codepoint = "U+1F6B5", .width = 2 },
3575
+ .{ .codepoint = "U+1F6B6", .width = 2 },
3576
+ .{ .codepoint = "U+1F6B7", .width = 2 },
3577
+ .{ .codepoint = "U+1F6B8", .width = 2 },
3578
+ .{ .codepoint = "U+1F6B9", .width = 2 },
3579
+ .{ .codepoint = "U+1F6BA", .width = 2 },
3580
+ .{ .codepoint = "U+1F6BB", .width = 2 },
3581
+ .{ .codepoint = "U+1F6BC", .width = 2 },
3582
+ .{ .codepoint = "U+1F6BD", .width = 2 },
3583
+ .{ .codepoint = "U+1F6BE", .width = 2 },
3584
+ .{ .codepoint = "U+1F6BF", .width = 2 },
3585
+ .{ .codepoint = "U+1F6C0", .width = 2 },
3586
+ .{ .codepoint = "U+1F6C1", .width = 2 },
3587
+ .{ .codepoint = "U+1F6C2", .width = 2 },
3588
+ .{ .codepoint = "U+1F6C3", .width = 2 },
3589
+ .{ .codepoint = "U+1F6C4", .width = 2 },
3590
+ .{ .codepoint = "U+1F6C5", .width = 2 },
3591
+ .{ .codepoint = "U+1F6C6", .width = 1 },
3592
+ .{ .codepoint = "U+1F6C7", .width = 1 },
3593
+ .{ .codepoint = "U+1F6C8", .width = 1 },
3594
+ .{ .codepoint = "U+1F6C9", .width = 1 },
3595
+ .{ .codepoint = "U+1F6CA", .width = 1 },
3596
+ .{ .codepoint = "U+1F6CB", .width = 1 },
3597
+ .{ .codepoint = "U+1F6CC", .width = 2 },
3598
+ .{ .codepoint = "U+1F6CD", .width = 1 },
3599
+ .{ .codepoint = "U+1F6CE", .width = 1 },
3600
+ .{ .codepoint = "U+1F6CF", .width = 1 },
3601
+ .{ .codepoint = "U+1F6D0", .width = 2 },
3602
+ .{ .codepoint = "U+1F6D1", .width = 2 },
3603
+ .{ .codepoint = "U+1F6D2", .width = 2 },
3604
+ .{ .codepoint = "U+1F6D3", .width = 1 },
3605
+ .{ .codepoint = "U+1F6D4", .width = 1 },
3606
+ .{ .codepoint = "U+1F6D5", .width = 2 },
3607
+ .{ .codepoint = "U+1F6D6", .width = 2 },
3608
+ .{ .codepoint = "U+1F6D7", .width = 2 },
3609
+ .{ .codepoint = "U+1F6D8", .width = 1 },
3610
+ .{ .codepoint = "U+1F6D9", .width = 1 },
3611
+ .{ .codepoint = "U+1F6DA", .width = 1 },
3612
+ .{ .codepoint = "U+1F6DB", .width = 1 },
3613
+ .{ .codepoint = "U+1F6DC", .width = 2 },
3614
+ .{ .codepoint = "U+1F6DD", .width = 2 },
3615
+ .{ .codepoint = "U+1F6DE", .width = 2 },
3616
+ .{ .codepoint = "U+1F6DF", .width = 2 },
3617
+ .{ .codepoint = "U+1F6E0", .width = 1 },
3618
+ .{ .codepoint = "U+1F6E1", .width = 1 },
3619
+ .{ .codepoint = "U+1F6E2", .width = 1 },
3620
+ .{ .codepoint = "U+1F6E3", .width = 1 },
3621
+ .{ .codepoint = "U+1F6E4", .width = 1 },
3622
+ .{ .codepoint = "U+1F6E5", .width = 1 },
3623
+ .{ .codepoint = "U+1F6E6", .width = 1 },
3624
+ .{ .codepoint = "U+1F6E7", .width = 1 },
3625
+ .{ .codepoint = "U+1F6E8", .width = 1 },
3626
+ .{ .codepoint = "U+1F6E9", .width = 1 },
3627
+ .{ .codepoint = "U+1F6EA", .width = 1 },
3628
+ .{ .codepoint = "U+1F6EB", .width = 2 },
3629
+ .{ .codepoint = "U+1F6EC", .width = 2 },
3630
+ .{ .codepoint = "U+1F6ED", .width = 1 },
3631
+ .{ .codepoint = "U+1F6EE", .width = 1 },
3632
+ .{ .codepoint = "U+1F6EF", .width = 1 },
3633
+ .{ .codepoint = "U+1F6F0", .width = 1 },
3634
+ .{ .codepoint = "U+1F6F1", .width = 1 },
3635
+ .{ .codepoint = "U+1F6F2", .width = 1 },
3636
+ .{ .codepoint = "U+1F6F3", .width = 1 },
3637
+ .{ .codepoint = "U+1F6F4", .width = 2 },
3638
+ .{ .codepoint = "U+1F6F5", .width = 2 },
3639
+ .{ .codepoint = "U+1F6F6", .width = 2 },
3640
+ .{ .codepoint = "U+1F6F7", .width = 2 },
3641
+ .{ .codepoint = "U+1F6F8", .width = 2 },
3642
+ .{ .codepoint = "U+1F6F9", .width = 2 },
3643
+ .{ .codepoint = "U+1F6FA", .width = 2 },
3644
+ .{ .codepoint = "U+1F6FB", .width = 2 },
3645
+ .{ .codepoint = "U+1F6FC", .width = 2 },
3646
+ .{ .codepoint = "U+1F6FD", .width = 1 },
3647
+ .{ .codepoint = "U+1F6FE", .width = 1 },
3648
+ .{ .codepoint = "U+1F6FF", .width = 1 },
3649
+ .{ .codepoint = "U+1F900", .width = 1 },
3650
+ .{ .codepoint = "U+1F901", .width = 1 },
3651
+ .{ .codepoint = "U+1F902", .width = 1 },
3652
+ .{ .codepoint = "U+1F903", .width = 1 },
3653
+ .{ .codepoint = "U+1F904", .width = 1 },
3654
+ .{ .codepoint = "U+1F905", .width = 1 },
3655
+ .{ .codepoint = "U+1F906", .width = 1 },
3656
+ .{ .codepoint = "U+1F907", .width = 1 },
3657
+ .{ .codepoint = "U+1F908", .width = 1 },
3658
+ .{ .codepoint = "U+1F909", .width = 1 },
3659
+ .{ .codepoint = "U+1F90A", .width = 1 },
3660
+ .{ .codepoint = "U+1F90B", .width = 1 },
3661
+ .{ .codepoint = "U+1F90C", .width = 2 },
3662
+ .{ .codepoint = "U+1F90D", .width = 2 },
3663
+ .{ .codepoint = "U+1F90E", .width = 2 },
3664
+ .{ .codepoint = "U+1F90F", .width = 2 },
3665
+ .{ .codepoint = "U+1F910", .width = 2 },
3666
+ .{ .codepoint = "U+1F911", .width = 2 },
3667
+ .{ .codepoint = "U+1F912", .width = 2 },
3668
+ .{ .codepoint = "U+1F913", .width = 2 },
3669
+ .{ .codepoint = "U+1F914", .width = 2 },
3670
+ .{ .codepoint = "U+1F915", .width = 2 },
3671
+ .{ .codepoint = "U+1F916", .width = 2 },
3672
+ .{ .codepoint = "U+1F917", .width = 2 },
3673
+ .{ .codepoint = "U+1F918", .width = 2 },
3674
+ .{ .codepoint = "U+1F919", .width = 2 },
3675
+ .{ .codepoint = "U+1F91A", .width = 2 },
3676
+ .{ .codepoint = "U+1F91B", .width = 2 },
3677
+ .{ .codepoint = "U+1F91C", .width = 2 },
3678
+ .{ .codepoint = "U+1F91D", .width = 2 },
3679
+ .{ .codepoint = "U+1F91E", .width = 2 },
3680
+ .{ .codepoint = "U+1F91F", .width = 2 },
3681
+ .{ .codepoint = "U+1F920", .width = 2 },
3682
+ .{ .codepoint = "U+1F921", .width = 2 },
3683
+ .{ .codepoint = "U+1F922", .width = 2 },
3684
+ .{ .codepoint = "U+1F923", .width = 2 },
3685
+ .{ .codepoint = "U+1F924", .width = 2 },
3686
+ .{ .codepoint = "U+1F925", .width = 2 },
3687
+ .{ .codepoint = "U+1F926", .width = 2 },
3688
+ .{ .codepoint = "U+1F927", .width = 2 },
3689
+ .{ .codepoint = "U+1F928", .width = 2 },
3690
+ .{ .codepoint = "U+1F929", .width = 2 },
3691
+ .{ .codepoint = "U+1F92A", .width = 2 },
3692
+ .{ .codepoint = "U+1F92B", .width = 2 },
3693
+ .{ .codepoint = "U+1F92C", .width = 2 },
3694
+ .{ .codepoint = "U+1F92D", .width = 2 },
3695
+ .{ .codepoint = "U+1F92E", .width = 2 },
3696
+ .{ .codepoint = "U+1F92F", .width = 2 },
3697
+ .{ .codepoint = "U+1F930", .width = 2 },
3698
+ .{ .codepoint = "U+1F931", .width = 2 },
3699
+ .{ .codepoint = "U+1F932", .width = 2 },
3700
+ .{ .codepoint = "U+1F933", .width = 2 },
3701
+ .{ .codepoint = "U+1F934", .width = 2 },
3702
+ .{ .codepoint = "U+1F935", .width = 2 },
3703
+ .{ .codepoint = "U+1F936", .width = 2 },
3704
+ .{ .codepoint = "U+1F937", .width = 2 },
3705
+ .{ .codepoint = "U+1F938", .width = 2 },
3706
+ .{ .codepoint = "U+1F939", .width = 2 },
3707
+ .{ .codepoint = "U+1F93A", .width = 2 },
3708
+ .{ .codepoint = "U+1F93B", .width = 1 },
3709
+ .{ .codepoint = "U+1F93C", .width = 2 },
3710
+ .{ .codepoint = "U+1F93D", .width = 2 },
3711
+ .{ .codepoint = "U+1F93E", .width = 2 },
3712
+ .{ .codepoint = "U+1F93F", .width = 2 },
3713
+ .{ .codepoint = "U+1F940", .width = 2 },
3714
+ .{ .codepoint = "U+1F941", .width = 2 },
3715
+ .{ .codepoint = "U+1F942", .width = 2 },
3716
+ .{ .codepoint = "U+1F943", .width = 2 },
3717
+ .{ .codepoint = "U+1F944", .width = 2 },
3718
+ .{ .codepoint = "U+1F945", .width = 2 },
3719
+ .{ .codepoint = "U+1F946", .width = 1 },
3720
+ .{ .codepoint = "U+1F947", .width = 2 },
3721
+ .{ .codepoint = "U+1F948", .width = 2 },
3722
+ .{ .codepoint = "U+1F949", .width = 2 },
3723
+ .{ .codepoint = "U+1F94A", .width = 2 },
3724
+ .{ .codepoint = "U+1F94B", .width = 2 },
3725
+ .{ .codepoint = "U+1F94C", .width = 2 },
3726
+ .{ .codepoint = "U+1F94D", .width = 2 },
3727
+ .{ .codepoint = "U+1F94E", .width = 2 },
3728
+ .{ .codepoint = "U+1F94F", .width = 2 },
3729
+ .{ .codepoint = "U+1F950", .width = 2 },
3730
+ .{ .codepoint = "U+1F951", .width = 2 },
3731
+ .{ .codepoint = "U+1F952", .width = 2 },
3732
+ .{ .codepoint = "U+1F953", .width = 2 },
3733
+ .{ .codepoint = "U+1F954", .width = 2 },
3734
+ .{ .codepoint = "U+1F955", .width = 2 },
3735
+ .{ .codepoint = "U+1F956", .width = 2 },
3736
+ .{ .codepoint = "U+1F957", .width = 2 },
3737
+ .{ .codepoint = "U+1F958", .width = 2 },
3738
+ .{ .codepoint = "U+1F959", .width = 2 },
3739
+ .{ .codepoint = "U+1F95A", .width = 2 },
3740
+ .{ .codepoint = "U+1F95B", .width = 2 },
3741
+ .{ .codepoint = "U+1F95C", .width = 2 },
3742
+ .{ .codepoint = "U+1F95D", .width = 2 },
3743
+ .{ .codepoint = "U+1F95E", .width = 2 },
3744
+ .{ .codepoint = "U+1F95F", .width = 2 },
3745
+ .{ .codepoint = "U+1F960", .width = 2 },
3746
+ .{ .codepoint = "U+1F961", .width = 2 },
3747
+ .{ .codepoint = "U+1F962", .width = 2 },
3748
+ .{ .codepoint = "U+1F963", .width = 2 },
3749
+ .{ .codepoint = "U+1F964", .width = 2 },
3750
+ .{ .codepoint = "U+1F965", .width = 2 },
3751
+ .{ .codepoint = "U+1F966", .width = 2 },
3752
+ .{ .codepoint = "U+1F967", .width = 2 },
3753
+ .{ .codepoint = "U+1F968", .width = 2 },
3754
+ .{ .codepoint = "U+1F969", .width = 2 },
3755
+ .{ .codepoint = "U+1F96A", .width = 2 },
3756
+ .{ .codepoint = "U+1F96B", .width = 2 },
3757
+ .{ .codepoint = "U+1F96C", .width = 2 },
3758
+ .{ .codepoint = "U+1F96D", .width = 2 },
3759
+ .{ .codepoint = "U+1F96E", .width = 2 },
3760
+ .{ .codepoint = "U+1F96F", .width = 2 },
3761
+ .{ .codepoint = "U+1F970", .width = 2 },
3762
+ .{ .codepoint = "U+1F971", .width = 2 },
3763
+ .{ .codepoint = "U+1F972", .width = 2 },
3764
+ .{ .codepoint = "U+1F973", .width = 2 },
3765
+ .{ .codepoint = "U+1F974", .width = 2 },
3766
+ .{ .codepoint = "U+1F975", .width = 2 },
3767
+ .{ .codepoint = "U+1F976", .width = 2 },
3768
+ .{ .codepoint = "U+1F977", .width = 2 },
3769
+ .{ .codepoint = "U+1F978", .width = 2 },
3770
+ .{ .codepoint = "U+1F979", .width = 2 },
3771
+ .{ .codepoint = "U+1F97A", .width = 2 },
3772
+ .{ .codepoint = "U+1F97B", .width = 2 },
3773
+ .{ .codepoint = "U+1F97C", .width = 2 },
3774
+ .{ .codepoint = "U+1F97D", .width = 2 },
3775
+ .{ .codepoint = "U+1F97E", .width = 2 },
3776
+ .{ .codepoint = "U+1F97F", .width = 2 },
3777
+ .{ .codepoint = "U+1F980", .width = 2 },
3778
+ .{ .codepoint = "U+1F981", .width = 2 },
3779
+ .{ .codepoint = "U+1F982", .width = 2 },
3780
+ .{ .codepoint = "U+1F983", .width = 2 },
3781
+ .{ .codepoint = "U+1F984", .width = 2 },
3782
+ .{ .codepoint = "U+1F985", .width = 2 },
3783
+ .{ .codepoint = "U+1F986", .width = 2 },
3784
+ .{ .codepoint = "U+1F987", .width = 2 },
3785
+ .{ .codepoint = "U+1F988", .width = 2 },
3786
+ .{ .codepoint = "U+1F989", .width = 2 },
3787
+ .{ .codepoint = "U+1F98A", .width = 2 },
3788
+ .{ .codepoint = "U+1F98B", .width = 2 },
3789
+ .{ .codepoint = "U+1F98C", .width = 2 },
3790
+ .{ .codepoint = "U+1F98D", .width = 2 },
3791
+ .{ .codepoint = "U+1F98E", .width = 2 },
3792
+ .{ .codepoint = "U+1F98F", .width = 2 },
3793
+ .{ .codepoint = "U+1F990", .width = 2 },
3794
+ .{ .codepoint = "U+1F991", .width = 2 },
3795
+ .{ .codepoint = "U+1F992", .width = 2 },
3796
+ .{ .codepoint = "U+1F993", .width = 2 },
3797
+ .{ .codepoint = "U+1F994", .width = 2 },
3798
+ .{ .codepoint = "U+1F995", .width = 2 },
3799
+ .{ .codepoint = "U+1F996", .width = 2 },
3800
+ .{ .codepoint = "U+1F997", .width = 2 },
3801
+ .{ .codepoint = "U+1F998", .width = 2 },
3802
+ .{ .codepoint = "U+1F999", .width = 2 },
3803
+ .{ .codepoint = "U+1F99A", .width = 2 },
3804
+ .{ .codepoint = "U+1F99B", .width = 2 },
3805
+ .{ .codepoint = "U+1F99C", .width = 2 },
3806
+ .{ .codepoint = "U+1F99D", .width = 2 },
3807
+ .{ .codepoint = "U+1F99E", .width = 2 },
3808
+ .{ .codepoint = "U+1F99F", .width = 2 },
3809
+ .{ .codepoint = "U+1F9A0", .width = 2 },
3810
+ .{ .codepoint = "U+1F9A1", .width = 2 },
3811
+ .{ .codepoint = "U+1F9A2", .width = 2 },
3812
+ .{ .codepoint = "U+1F9A3", .width = 2 },
3813
+ .{ .codepoint = "U+1F9A4", .width = 2 },
3814
+ .{ .codepoint = "U+1F9A5", .width = 2 },
3815
+ .{ .codepoint = "U+1F9A6", .width = 2 },
3816
+ .{ .codepoint = "U+1F9A7", .width = 2 },
3817
+ .{ .codepoint = "U+1F9A8", .width = 2 },
3818
+ .{ .codepoint = "U+1F9A9", .width = 2 },
3819
+ .{ .codepoint = "U+1F9AA", .width = 2 },
3820
+ .{ .codepoint = "U+1F9AB", .width = 2 },
3821
+ .{ .codepoint = "U+1F9AC", .width = 2 },
3822
+ .{ .codepoint = "U+1F9AD", .width = 2 },
3823
+ .{ .codepoint = "U+1F9AE", .width = 2 },
3824
+ .{ .codepoint = "U+1F9AF", .width = 2 },
3825
+ .{ .codepoint = "U+1F9B0", .width = 2 },
3826
+ .{ .codepoint = "U+1F9B1", .width = 2 },
3827
+ .{ .codepoint = "U+1F9B2", .width = 2 },
3828
+ .{ .codepoint = "U+1F9B3", .width = 2 },
3829
+ .{ .codepoint = "U+1F9B4", .width = 2 },
3830
+ .{ .codepoint = "U+1F9B5", .width = 2 },
3831
+ .{ .codepoint = "U+1F9B6", .width = 2 },
3832
+ .{ .codepoint = "U+1F9B7", .width = 2 },
3833
+ .{ .codepoint = "U+1F9B8", .width = 2 },
3834
+ .{ .codepoint = "U+1F9B9", .width = 2 },
3835
+ .{ .codepoint = "U+1F9BA", .width = 2 },
3836
+ .{ .codepoint = "U+1F9BB", .width = 2 },
3837
+ .{ .codepoint = "U+1F9BC", .width = 2 },
3838
+ .{ .codepoint = "U+1F9BD", .width = 2 },
3839
+ .{ .codepoint = "U+1F9BE", .width = 2 },
3840
+ .{ .codepoint = "U+1F9BF", .width = 2 },
3841
+ .{ .codepoint = "U+1F9C0", .width = 2 },
3842
+ .{ .codepoint = "U+1F9C1", .width = 2 },
3843
+ .{ .codepoint = "U+1F9C2", .width = 2 },
3844
+ .{ .codepoint = "U+1F9C3", .width = 2 },
3845
+ .{ .codepoint = "U+1F9C4", .width = 2 },
3846
+ .{ .codepoint = "U+1F9C5", .width = 2 },
3847
+ .{ .codepoint = "U+1F9C6", .width = 2 },
3848
+ .{ .codepoint = "U+1F9C7", .width = 2 },
3849
+ .{ .codepoint = "U+1F9C8", .width = 2 },
3850
+ .{ .codepoint = "U+1F9C9", .width = 2 },
3851
+ .{ .codepoint = "U+1F9CA", .width = 2 },
3852
+ .{ .codepoint = "U+1F9CB", .width = 2 },
3853
+ .{ .codepoint = "U+1F9CC", .width = 2 },
3854
+ .{ .codepoint = "U+1F9CD", .width = 2 },
3855
+ .{ .codepoint = "U+1F9CE", .width = 2 },
3856
+ .{ .codepoint = "U+1F9CF", .width = 2 },
3857
+ .{ .codepoint = "U+1F9D0", .width = 2 },
3858
+ .{ .codepoint = "U+1F9D1", .width = 2 },
3859
+ .{ .codepoint = "U+1F9D2", .width = 2 },
3860
+ .{ .codepoint = "U+1F9D3", .width = 2 },
3861
+ .{ .codepoint = "U+1F9D4", .width = 2 },
3862
+ .{ .codepoint = "U+1F9D5", .width = 2 },
3863
+ .{ .codepoint = "U+1F9D6", .width = 2 },
3864
+ .{ .codepoint = "U+1F9D7", .width = 2 },
3865
+ .{ .codepoint = "U+1F9D8", .width = 2 },
3866
+ .{ .codepoint = "U+1F9D9", .width = 2 },
3867
+ .{ .codepoint = "U+1F9DA", .width = 2 },
3868
+ .{ .codepoint = "U+1F9DB", .width = 2 },
3869
+ .{ .codepoint = "U+1F9DC", .width = 2 },
3870
+ .{ .codepoint = "U+1F9DD", .width = 2 },
3871
+ .{ .codepoint = "U+1F9DE", .width = 2 },
3872
+ .{ .codepoint = "U+1F9DF", .width = 2 },
3873
+ .{ .codepoint = "U+1F9E0", .width = 2 },
3874
+ .{ .codepoint = "U+1F9E1", .width = 2 },
3875
+ .{ .codepoint = "U+1F9E2", .width = 2 },
3876
+ .{ .codepoint = "U+1F9E3", .width = 2 },
3877
+ .{ .codepoint = "U+1F9E4", .width = 2 },
3878
+ .{ .codepoint = "U+1F9E5", .width = 2 },
3879
+ .{ .codepoint = "U+1F9E6", .width = 2 },
3880
+ .{ .codepoint = "U+1F9E7", .width = 2 },
3881
+ .{ .codepoint = "U+1F9E8", .width = 2 },
3882
+ .{ .codepoint = "U+1F9E9", .width = 2 },
3883
+ .{ .codepoint = "U+1F9EA", .width = 2 },
3884
+ .{ .codepoint = "U+1F9EB", .width = 2 },
3885
+ .{ .codepoint = "U+1F9EC", .width = 2 },
3886
+ .{ .codepoint = "U+1F9ED", .width = 2 },
3887
+ .{ .codepoint = "U+1F9EE", .width = 2 },
3888
+ .{ .codepoint = "U+1F9EF", .width = 2 },
3889
+ .{ .codepoint = "U+1F9F0", .width = 2 },
3890
+ .{ .codepoint = "U+1F9F1", .width = 2 },
3891
+ .{ .codepoint = "U+1F9F2", .width = 2 },
3892
+ .{ .codepoint = "U+1F9F3", .width = 2 },
3893
+ .{ .codepoint = "U+1F9F4", .width = 2 },
3894
+ .{ .codepoint = "U+1F9F5", .width = 2 },
3895
+ .{ .codepoint = "U+1F9F6", .width = 2 },
3896
+ .{ .codepoint = "U+1F9F7", .width = 2 },
3897
+ .{ .codepoint = "U+1F9F8", .width = 2 },
3898
+ .{ .codepoint = "U+1F9F9", .width = 2 },
3899
+ .{ .codepoint = "U+1F9FA", .width = 2 },
3900
+ .{ .codepoint = "U+1F9FB", .width = 2 },
3901
+ .{ .codepoint = "U+1F9FC", .width = 2 },
3902
+ .{ .codepoint = "U+1F9FD", .width = 2 },
3903
+ .{ .codepoint = "U+1F9FE", .width = 2 },
3904
+ .{ .codepoint = "U+1F9FF", .width = 2 },
3905
+ .{ .codepoint = "U+000A", .width = 0 },
3906
+ .{ .codepoint = "U+200B", .width = 0 },
3907
+ .{ .codepoint = "U+200D", .width = 0 },
3908
+ .{ .codepoint = "U+FEFF", .width = 0 },
3909
+ }